@charset "UTF-8";
/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.9.0
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2019 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2019-10-13T13:09:56.297Z
 */
@-webkit-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
            transform: translateY(-50%) rotate(359deg);
  }
}
@-o-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
         -o-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
         -o-transform: translateY(-50%) rotate(359deg);
            transform: translateY(-50%) rotate(359deg);
  }
}
@keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
         -o-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
         -o-transform: translateY(-50%) rotate(359deg);
            transform: translateY(-50%) rotate(359deg);
  }
}

@font-face {
  font-family: "context-menu-icons";
  font-style: normal; 
  font-weight: normal;

  src: url("font/context-menu-icons.eot?4f0ru");
  src: url("font/context-menu-icons.eot?4f0ru#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?4f0ru") format("woff2"), url("font/context-menu-icons.woff?4f0ru") format("woff"), url("font/context-menu-icons.ttf?4f0ru") format("truetype");
}

.context-menu-icon-add:before {
  content: "\EA01";
}

.context-menu-icon-copy:before {
  content: "\EA02";
}

.context-menu-icon-cut:before {
  content: "\EA03";
}

.context-menu-icon-delete:before {
  content: "\EA04";
}

.context-menu-icon-edit:before {
  content: "\EA05";
}

.context-menu-icon-loading:before {
  content: "\EA06";
}

.context-menu-icon-paste:before {
  content: "\EA07";
}

.context-menu-icon-quit:before {
  content: "\EA08";
}

.context-menu-icon::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em; 
  font-family: "context-menu-icons";
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.context-menu-icon.context-menu-hover:before {
  color: #fff;
}

.context-menu-icon.context-menu-disabled::before {
  color: #bbb;
}

.context-menu-icon.context-menu-icon-loading:before {
  -webkit-animation: cm-spin 2s infinite;
       -o-animation: cm-spin 2s infinite;
          animation: cm-spin 2s infinite;
}

.context-menu-icon.context-menu-icon--fa {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}
.context-menu-icon.context-menu-icon--fa::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em; 
  font-family: FontAwesome;
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
  color: #fff;
}
.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
  color: #bbb;
}

.context-menu-icon.context-menu-icon--fa5 {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}
.context-menu-icon.context-menu-icon--fa5 i, .context-menu-icon.context-menu-icon--fa5 svg {
  position: absolute;
  top: .3em; 
  left: .5em;
  color: #2980b9;
}
.context-menu-icon.context-menu-icon--fa5.context-menu-hover > i, .context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
  color: #fff;
}
.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i, .context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg {
  color: #bbb;
}

.context-menu-list {
  position: absolute; 
  display: inline-block;
  min-width: 13em;
  max-width: 26em;
  padding: .25em 0;
  margin: .3em;
  font-family: inherit;
  font-size: inherit;
  list-style-type: none;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: .2em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
          box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}

.context-menu-item {
  position: relative;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  padding: .2em 2em;
  color: #2f2f2f;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; 
  background-color: #fff;
}

.context-menu-separator {
  padding: 0; 
  margin: .35em 0;
  border-bottom: 1px solid #e6e6e6;
}

.context-menu-item > label > input,
.context-menu-item > label > textarea {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.context-menu-item.context-menu-hover {
  color: #fff;
  cursor: pointer; 
  background-color: #2980b9;
}

.context-menu-item.context-menu-disabled {
  color: #bbb;
  cursor: default; 
  background-color: #fff;
}

.context-menu-input.context-menu-hover {
  color: #2f2f2f; 
  cursor: default;
}

.context-menu-submenu:after {
  position: absolute;
  top: 50%;
  right: .5em;
  z-index: 1; 
  width: 0;
  height: 0;
  content: '';
  border-color: transparent transparent transparent #2f2f2f;
  border-style: solid;
  border-width: .25em 0 .25em .25em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**
 * Inputs
 */
.context-menu-item.context-menu-input {
  padding: .3em .6em;
}

/* vertically align inside labels */
.context-menu-input > label > * {
  vertical-align: top;
}

/* position checkboxes and radios as icons */
.context-menu-input > label > input[type="checkbox"],
.context-menu-input > label > input[type="radio"] {
  position: relative;
  top: .12em; 
  margin-right: .4em;
}

.context-menu-input > label {
  margin: 0;
}

.context-menu-input > label,
.context-menu-input > label > input[type="text"],
.context-menu-input > label > textarea,
.context-menu-input > label > select {
  display: block;
  width: 100%; 
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.context-menu-input > label > textarea {
  height: 7em;
}

.context-menu-item > .context-menu-list {
  top: .3em; 
  /* re-positioned by js */
  right: -.3em;
  display: none;
}

.context-menu-item.context-menu-visible > .context-menu-list {
  display: block;
}

.context-menu-accesskey {
  text-decoration: underline;
}

/*! UIkit 2.27.5 | 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\00a0";
  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("../fonts/fontawesome-webfont.woff2") format('woff2'), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../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;
  }
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `uk-accordion-title`
 ========================================================================== */
.uk-accordion-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #f5f5f5;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
}
/* Sub-object: `uk-accordion-content`
 ========================================================================== */
.uk-accordion-content {
  padding: 0 15px 15px 15px;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#f5f5f5;font-size:18px;line-height:24px;cursor:pointer;border:1px solid #ddd;border-radius:4px}.uk-accordion-content{padding:0 15px 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `uk-accordion-title`
 ========================================================================== */
.uk-accordion-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #eee;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
/* Sub-object: `uk-accordion-content`
 ========================================================================== */
.uk-accordion-content {
  padding: 0 15px 15px 15px;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `uk-accordion-title`
 ========================================================================== */
.uk-accordion-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #f7f7f7;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
}
/* Sub-object: `uk-accordion-content`
 ========================================================================== */
.uk-accordion-content {
  padding: 0 15px 15px 15px;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#f7f7f7;font-size:18px;line-height:24px;cursor:pointer;border:1px solid #ddd;border-radius:4px}.uk-accordion-content{padding:0 15px 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#eee;font-size:18px;line-height:24px;cursor:pointer}.uk-accordion-content{padding:0 15px 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Autocomplete
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 */
.uk-autocomplete {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/* Legacy dropdown modifier */
.uk-dropdown-flip {
  left: auto;
  right: 0;
}
/* Nav modifier `uk-nav-autocomplete`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-autocomplete > li > a {
  color: #444;
}
/*
 * Active
 * 1. Remove default focus style
 */
.uk-nav-autocomplete > li.uk-active > a {
  background: #00a8e6;
  color: #fff;
  /* 1 */
  outline: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-autocomplete .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-autocomplete .uk-nav-divider {
  border-top: 1px solid #ddd;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-autocomplete{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-dropdown-flip{left:auto;right:0}.uk-nav-autocomplete>li>a{color:#444}.uk-nav-autocomplete>li.uk-active>a{background:#00a8e6;color:#fff;outline:0;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-nav-autocomplete .uk-nav-header{color:#999}.uk-nav-autocomplete .uk-nav-divider{border-top:1px solid #ddd}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Autocomplete
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 */
.uk-autocomplete {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/* Legacy dropdown modifier */
.uk-dropdown-flip {
  left: auto;
  right: 0;
}
/* Nav modifier `uk-nav-autocomplete`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-autocomplete > li > a {
  color: #444;
}
/*
 * Active
 * 1. Remove default focus style
 */
.uk-nav-autocomplete > li.uk-active > a {
  background: #00a8e6;
  color: #fff;
  /* 1 */
  outline: none;
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-autocomplete .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-autocomplete .uk-nav-divider {
  border-top: 1px solid #ddd;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Autocomplete
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 */
.uk-autocomplete {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/* Legacy dropdown modifier */
.uk-dropdown-flip {
  left: auto;
  right: 0;
}
/* Nav modifier `uk-nav-autocomplete`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-autocomplete > li > a {
  color: #444;
}
/*
 * Active
 * 1. Remove default focus style
 */
.uk-nav-autocomplete > li.uk-active > a {
  background: #009dd8;
  color: #fff;
  /* 1 */
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-autocomplete .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-autocomplete .uk-nav-divider {
  border-top: 1px solid #ddd;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-autocomplete{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-dropdown-flip{left:auto;right:0}.uk-nav-autocomplete>li>a{color:#444}.uk-nav-autocomplete>li.uk-active>a{background:#009dd8;color:#fff;outline:0;box-shadow:inset 0 2px 4px rgba(0,0,0,.2);text-shadow:0 -1px 0 rgba(0,0,0,.2)}.uk-nav-autocomplete .uk-nav-header{color:#999}.uk-nav-autocomplete .uk-nav-divider{border-top:1px solid #ddd}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-autocomplete{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-dropdown-flip{left:auto;right:0}.uk-nav-autocomplete>li>a{color:#444}.uk-nav-autocomplete>li.uk-active>a{background:#00a8e6;color:#fff;outline:0}.uk-nav-autocomplete .uk-nav-header{color:#999}.uk-nav-autocomplete .uk-nav-divider{border-top:1px solid #ddd}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Datepicker
 ========================================================================== */
/*
 * 1. Highest z-index
 * 2. Reset dropdown width
 * 3. Set animation
 * 4. Needed for scale animation
 */
.uk-datepicker {
  /* 1 */
  z-index: 1050;
  /* 2 */
  width: auto;
  /* 3 */
  -webkit-animation: uk-fade 0.2s ease-in-out;
  animation: uk-fade 0.2s ease-in-out;
  /* 4 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Sub-object: `uk-datepicker-nav`
========================================================================== */
.uk-datepicker-nav {
  margin-bottom: 15px;
  text-align: center;
  line-height: 20px;
}
/*
 * Micro clearfix
 */
.uk-datepicker-nav:before,
.uk-datepicker-nav:after {
  content: "";
  display: table;
}
.uk-datepicker-nav:after {
  clear: both;
}
/*
 * Previous and next navigation
 */
.uk-datepicker-nav a {
  color: #444;
  text-decoration: none;
}
.uk-datepicker-nav a:hover {
  color: #444;
}
.uk-datepicker-previous {
  float: left;
}
.uk-datepicker-next {
  float: right;
}
.uk-datepicker-previous:after,
.uk-datepicker-next:after {
  width: 20px;
  font-family: FontAwesome;
}
.uk-datepicker-previous:after {
  content: "\f053";
}
.uk-datepicker-next:after {
  content: "\f054";
}
/* Sub-object: `uk-datepicker-heading`
========================================================================== */
/* Sub-object: `uk-datepicker-table`
========================================================================== */
/* Block element behavior */
.uk-datepicker-table {
  width: 100%;
}
.uk-datepicker-table th,
.uk-datepicker-table td {
  padding: 2px;
}
.uk-datepicker-table th {
  font-size: 12px;
}
/*
 * Item
 */
.uk-datepicker-table a {
  display: block;
  width: 26px;
  line-height: 24px;
  text-align: center;
  color: #444;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
/*
 * Sub-object: `uk-datepicker-table-muted`
 */
a.uk-datepicker-table-muted {
  color: #999;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-datepicker-table a:hover,
.uk-datepicker-table a:focus {
  background-color: #fafafa;
  color: #444;
  /* 2 */
  outline: none;
  border-color: rgba(0, 0, 0, 0.16);
  text-shadow: 0 1px 0 #fff;
}
/* OnClick */
.uk-datepicker-table a:active {
  background-color: #eee;
  color: #444;
}
/*
 * Active
 */
.uk-datepicker-table a.uk-active {
  background: #00a8e6;
  color: #fff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-datepicker{z-index:1050;width:auto;-webkit-animation:uk-fade .2s ease-in-out;animation:uk-fade .2s ease-in-out;-webkit-transform-origin:0 0;transform-origin:0 0}.uk-datepicker-nav{margin-bottom:15px;text-align:center;line-height:20px}.uk-datepicker-nav:after,.uk-datepicker-nav:before{content:"";display:table}.uk-datepicker-nav:after{clear:both}.uk-datepicker-nav a{color:#444;text-decoration:none}.uk-datepicker-nav a:hover{color:#444}.uk-datepicker-previous{float:left}.uk-datepicker-next{float:right}.uk-datepicker-next:after,.uk-datepicker-previous:after{width:20px;font-family:FontAwesome}.uk-datepicker-previous:after{content:"\f053"}.uk-datepicker-next:after{content:"\f054"}.uk-datepicker-table{width:100%}.uk-datepicker-table td,.uk-datepicker-table th{padding:2px}.uk-datepicker-table th{font-size:12px}.uk-datepicker-table a{display:block;width:26px;line-height:24px;text-align:center;color:#444;text-decoration:none;border:1px solid transparent;border-radius:4px}a.uk-datepicker-table-muted{color:#999}.uk-datepicker-table a:focus,.uk-datepicker-table a:hover{background-color:#fafafa;color:#444;outline:0;border-color:rgba(0,0,0,.16);text-shadow:0 1px 0 #fff}.uk-datepicker-table a:active{background-color:#eee;color:#444}.uk-datepicker-table a.uk-active{background:#00a8e6;color:#fff;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Datepicker
 ========================================================================== */
/*
 * 1. Highest z-index
 * 2. Reset dropdown width
 * 3. Set animation
 * 4. Needed for scale animation
 */
.uk-datepicker {
  /* 1 */
  z-index: 1050;
  /* 2 */
  width: auto;
  /* 3 */
  -webkit-animation: uk-fade 0.2s ease-in-out;
  animation: uk-fade 0.2s ease-in-out;
  /* 4 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Sub-object: `uk-datepicker-nav`
========================================================================== */
.uk-datepicker-nav {
  margin-bottom: 15px;
  text-align: center;
  line-height: 20px;
}
/*
 * Micro clearfix
 */
.uk-datepicker-nav:before,
.uk-datepicker-nav:after {
  content: "";
  display: table;
}
.uk-datepicker-nav:after {
  clear: both;
}
/*
 * Previous and next navigation
 */
.uk-datepicker-nav a {
  color: #444;
  text-decoration: none;
}
.uk-datepicker-nav a:hover {
  color: #444;
}
.uk-datepicker-previous {
  float: left;
}
.uk-datepicker-next {
  float: right;
}
.uk-datepicker-previous:after,
.uk-datepicker-next:after {
  width: 20px;
  font-family: FontAwesome;
}
.uk-datepicker-previous:after {
  content: "\f053";
}
.uk-datepicker-next:after {
  content: "\f054";
}
/* Sub-object: `uk-datepicker-heading`
========================================================================== */
/* Sub-object: `uk-datepicker-table`
========================================================================== */
/* Block element behavior */
.uk-datepicker-table {
  width: 100%;
}
.uk-datepicker-table th,
.uk-datepicker-table td {
  padding: 2px;
}
.uk-datepicker-table th {
  font-size: 12px;
}
/*
 * Item
 */
.uk-datepicker-table a {
  display: block;
  width: 26px;
  line-height: 24px;
  text-align: center;
  color: #444;
  text-decoration: none;
}
/*
 * Sub-object: `uk-datepicker-table-muted`
 */
a.uk-datepicker-table-muted {
  color: #999;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-datepicker-table a:hover,
.uk-datepicker-table a:focus {
  background-color: #ddd;
  color: #444;
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-datepicker-table a:active {
  background-color: #ccc;
  color: #444;
}
/*
 * Active
 */
.uk-datepicker-table a.uk-active {
  background: #00a8e6;
  color: #fff;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Datepicker
 ========================================================================== */
/*
 * 1. Highest z-index
 * 2. Reset dropdown width
 * 3. Set animation
 * 4. Needed for scale animation
 */
.uk-datepicker {
  /* 1 */
  z-index: 1050;
  /* 2 */
  width: auto;
  /* 3 */
  -webkit-animation: uk-fade 0.2s ease-in-out;
  animation: uk-fade 0.2s ease-in-out;
  /* 4 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Sub-object: `uk-datepicker-nav`
========================================================================== */
.uk-datepicker-nav {
  margin-bottom: 15px;
  text-align: center;
  line-height: 20px;
}
/*
 * Micro clearfix
 */
.uk-datepicker-nav:before,
.uk-datepicker-nav:after {
  content: "";
  display: table;
}
.uk-datepicker-nav:after {
  clear: both;
}
/*
 * Previous and next navigation
 */
.uk-datepicker-nav a {
  color: #444;
  text-decoration: none;
}
.uk-datepicker-nav a:hover {
  color: #444;
}
.uk-datepicker-previous {
  float: left;
}
.uk-datepicker-next {
  float: right;
}
.uk-datepicker-previous:after,
.uk-datepicker-next:after {
  width: 20px;
  font-family: FontAwesome;
}
.uk-datepicker-previous:after {
  content: "\f053";
}
.uk-datepicker-next:after {
  content: "\f054";
}
/* Sub-object: `uk-datepicker-heading`
========================================================================== */
/* Sub-object: `uk-datepicker-table`
========================================================================== */
/* Block element behavior */
.uk-datepicker-table {
  width: 100%;
}
.uk-datepicker-table th,
.uk-datepicker-table td {
  padding: 2px;
}
.uk-datepicker-table th {
  font-size: 12px;
}
/*
 * Item
 */
.uk-datepicker-table a {
  display: block;
  width: 26px;
  line-height: 24px;
  text-align: center;
  color: #444;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background-origin: border-box;
}
/*
 * Sub-object: `uk-datepicker-table-muted`
 */
a.uk-datepicker-table-muted {
  color: #999;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-datepicker-table a:hover,
.uk-datepicker-table a:focus {
  background-color: #fafafa;
  color: #444;
  /* 2 */
  outline: none;
  border-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 0 #fff;
}
/* OnClick */
.uk-datepicker-table a:active {
  background-color: #f5f5f5;
  color: #444;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.3);
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/*
 * Active
 */
.uk-datepicker-table a.uk-active {
  background: #009dd8;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.4);
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #00b4f5, #008dc5);
  background-image: linear-gradient(to bottom, #00b4f5, #008dc5);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-datepicker{z-index:1050;width:auto;-webkit-animation:uk-fade .2s ease-in-out;animation:uk-fade .2s ease-in-out;-webkit-transform-origin:0 0;transform-origin:0 0}.uk-datepicker-nav{margin-bottom:15px;text-align:center;line-height:20px}.uk-datepicker-nav:after,.uk-datepicker-nav:before{content:"";display:table}.uk-datepicker-nav:after{clear:both}.uk-datepicker-nav a{color:#444;text-decoration:none}.uk-datepicker-nav a:hover{color:#444}.uk-datepicker-previous{float:left}.uk-datepicker-next{float:right}.uk-datepicker-next:after,.uk-datepicker-previous:after{width:20px;font-family:FontAwesome}.uk-datepicker-previous:after{content:"\f053"}.uk-datepicker-next:after{content:"\f054"}.uk-datepicker-table{width:100%}.uk-datepicker-table td,.uk-datepicker-table th{padding:2px}.uk-datepicker-table th{font-size:12px}.uk-datepicker-table a{display:block;width:26px;line-height:24px;text-align:center;color:#444;text-decoration:none;border:1px solid transparent;border-radius:4px;background-origin:border-box}a.uk-datepicker-table-muted{color:#999}.uk-datepicker-table a:focus,.uk-datepicker-table a:hover{background-color:#fafafa;color:#444;outline:0;border-color:rgba(0,0,0,.2);border-bottom-color:rgba(0,0,0,.3);text-shadow:0 1px 0 #fff}.uk-datepicker-table a:active{background-color:#f5f5f5;color:#444;border-color:rgba(0,0,0,.2);border-top-color:rgba(0,0,0,.3);background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.1)}.uk-datepicker-table a.uk-active{background:#009dd8;color:#fff;border:1px solid rgba(0,0,0,.2);border-bottom-color:rgba(0,0,0,.4);background-origin:border-box;background-image:-webkit-linear-gradient(top,#00b4f5,#008dc5);background-image:linear-gradient(to bottom,#00b4f5,#008dc5);text-shadow:0 -1px 0 rgba(0,0,0,.2)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-datepicker{z-index:1050;width:auto;-webkit-animation:uk-fade .2s ease-in-out;animation:uk-fade .2s ease-in-out;-webkit-transform-origin:0 0;transform-origin:0 0}.uk-datepicker-nav{margin-bottom:15px;text-align:center;line-height:20px}.uk-datepicker-nav:after,.uk-datepicker-nav:before{content:"";display:table}.uk-datepicker-nav:after{clear:both}.uk-datepicker-nav a{color:#444;text-decoration:none}.uk-datepicker-nav a:hover{color:#444}.uk-datepicker-previous{float:left}.uk-datepicker-next{float:right}.uk-datepicker-next:after,.uk-datepicker-previous:after{width:20px;font-family:FontAwesome}.uk-datepicker-previous:after{content:"\f053"}.uk-datepicker-next:after{content:"\f054"}.uk-datepicker-table{width:100%}.uk-datepicker-table td,.uk-datepicker-table th{padding:2px}.uk-datepicker-table th{font-size:12px}.uk-datepicker-table a{display:block;width:26px;line-height:24px;text-align:center;color:#444;text-decoration:none}a.uk-datepicker-table-muted{color:#999}.uk-datepicker-table a:focus,.uk-datepicker-table a:hover{background-color:#ddd;color:#444;outline:0}.uk-datepicker-table a:active{background-color:#ccc;color:#444}.uk-datepicker-table a.uk-active{background:#00a8e6;color:#fff}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-dotnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 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-dotnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav:before,
.uk-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-dotnav:after {
  clear: both;
}
.uk-dotnav > * {
  float: left;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background: rgba(50, 50, 50, 0.4);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* Modifier: `uk-dotnav-contrast`
 ========================================================================== */
.uk-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-dotnav-contrast > * > :hover,
.uk-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > .uk-active > * {
  background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.uk-dotnav-vertical {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav-vertical > * {
  float: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-dotnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-top:-15px;padding:0;list-style:none}.uk-dotnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:15px;margin-top:15px}.uk-dotnav:after,.uk-dotnav:before{content:"";display:block;overflow:hidden}.uk-dotnav:after{clear:both}.uk-dotnav>*{float:left}.uk-dotnav>*>*{display:block;box-sizing:content-box;width:20px;height:20px;border-radius:50%;background:rgba(50,50,50,.1);text-indent:100%;overflow:hidden;white-space:nowrap;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uk-dotnav>*>:focus,.uk-dotnav>*>:hover{background:rgba(50,50,50,.4);outline:0}.uk-dotnav>*>:active{background:rgba(50,50,50,.6)}.uk-dotnav>.uk-active>*{background:rgba(50,50,50,.4);-webkit-transform:scale(1.3);transform:scale(1.3)}.uk-dotnav-contrast>*>*{background:rgba(255,255,255,.4)}.uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover{background:rgba(255,255,255,.7)}.uk-dotnav-contrast>*>:active{background:rgba(255,255,255,.9)}.uk-dotnav-contrast>.uk-active>*{background:rgba(255,255,255,.9)}.uk-dotnav-vertical{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-dotnav-vertical>*{float:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-dotnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 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-dotnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav:before,
.uk-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-dotnav:after {
  clear: both;
}
.uk-dotnav > * {
  float: left;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background: rgba(50, 50, 50, 0.4);
}
/* Modifier: `uk-dotnav-contrast`
 ========================================================================== */
.uk-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-dotnav-contrast > * > :hover,
.uk-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > .uk-active > * {
  background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.uk-dotnav-vertical {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav-vertical > * {
  float: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-dotnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 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-dotnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav:before,
.uk-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-dotnav:after {
  clear: both;
}
.uk-dotnav > * {
  float: left;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background: rgba(50, 50, 50, 0.4);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* Modifier: `uk-dotnav-contrast`
 ========================================================================== */
.uk-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-dotnav-contrast > * > :hover,
.uk-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > .uk-active > * {
  background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.uk-dotnav-vertical {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav-vertical > * {
  float: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-dotnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-top:-15px;padding:0;list-style:none}.uk-dotnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:15px;margin-top:15px}.uk-dotnav:after,.uk-dotnav:before{content:"";display:block;overflow:hidden}.uk-dotnav:after{clear:both}.uk-dotnav>*{float:left}.uk-dotnav>*>*{display:block;box-sizing:content-box;width:20px;height:20px;border-radius:50%;background:rgba(50,50,50,.1);text-indent:100%;overflow:hidden;white-space:nowrap;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uk-dotnav>*>:focus,.uk-dotnav>*>:hover{background:rgba(50,50,50,.4);outline:0}.uk-dotnav>*>:active{background:rgba(50,50,50,.6)}.uk-dotnav>.uk-active>*{background:rgba(50,50,50,.4);-webkit-transform:scale(1.3);transform:scale(1.3)}.uk-dotnav-contrast>*>*{background:rgba(255,255,255,.4)}.uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover{background:rgba(255,255,255,.7)}.uk-dotnav-contrast>*>:active{background:rgba(255,255,255,.9)}.uk-dotnav-contrast>.uk-active>*{background:rgba(255,255,255,.9)}.uk-dotnav-vertical{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-dotnav-vertical>*{float:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-dotnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-top:-15px;padding:0;list-style:none}.uk-dotnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:15px;margin-top:15px}.uk-dotnav:after,.uk-dotnav:before{content:"";display:block;overflow:hidden}.uk-dotnav:after{clear:both}.uk-dotnav>*{float:left}.uk-dotnav>*>*{display:block;box-sizing:content-box;width:20px;height:20px;border-radius:50%;background:rgba(50,50,50,.1);text-indent:100%;overflow:hidden;white-space:nowrap}.uk-dotnav>*>:focus,.uk-dotnav>*>:hover{background:rgba(50,50,50,.4);outline:0}.uk-dotnav>*>:active{background:rgba(50,50,50,.6)}.uk-dotnav>.uk-active>*{background:rgba(50,50,50,.4)}.uk-dotnav-contrast>*>*{background:rgba(255,255,255,.4)}.uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover{background:rgba(255,255,255,.7)}.uk-dotnav-contrast>*>:active{background:rgba(255,255,255,.9)}.uk-dotnav-contrast>.uk-active>*{background:rgba(255,255,255,.9)}.uk-dotnav-vertical{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-dotnav-vertical>*{float:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form advanced
   Note: Only works in Webkit at the moment
 ========================================================================== */
/*
 * 1. Style
 * 2. Makes box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 */
.uk-form input[type="radio"],
.uk-form input[type="checkbox"] {
  /* 1 */
  display: inline-block;
  height: 14px;
  width: 14px;
  border: 1px solid #aaa;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  outline: 0;
  /* 5 */
  background: transparent;
}
/* Radio */
.uk-form input[type="radio"] {
  border-radius: 50%;
}
/*
 * Checked
 */
.uk-form input[type=radio]:before,
.uk-form input[type=checkbox]:before {
  display: block;
}
/* Radio */
.uk-form input[type=radio]:checked:before {
  content: '';
  width: 8px;
  height: 8px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: #00a8e6;
}
/* Checkbox */
.uk-form input[type=checkbox]:checked:before,
.uk-form input[type=checkbox]:indeterminate:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 12px;
  color: #00a8e6;
}
.uk-form input[type=checkbox]:indeterminate:before {
  content: "\f068";
}
/*
 * Disabled
 */
.uk-form input[type=radio]:disabled,
.uk-form input[type=checkbox]:disabled {
  border-color: #ddd;
}
.uk-form input[type=radio]:disabled:checked:before {
  background-color: #aaa;
}
.uk-form input[type=checkbox]:disabled:checked:before,
.uk-form input[type=checkbox]:disabled:indeterminate:before {
  color: #aaa;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form input[type=radio],.uk-form input[type=checkbox]{display:inline-block;height:14px;width:14px;border:1px solid #aaa;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;outline:0;background:0 0}.uk-form input[type=radio]{border-radius:50%}.uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before{display:block}.uk-form input[type=radio]:checked:before{content:'';width:8px;height:8px;margin:2px auto 0;border-radius:50%;background:#00a8e6}.uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before{content:"\f00c";font-family:FontAwesome;font-size:12px;-webkit-font-smoothing:antialiased;text-align:center;line-height:12px;color:#00a8e6}.uk-form input[type=checkbox]:indeterminate:before{content:"\f068"}.uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled{border-color:#ddd}.uk-form input[type=radio]:disabled:checked:before{background-color:#aaa}.uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before{color:#aaa}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form advanced
   Note: Only works in Webkit at the moment
 ========================================================================== */
/*
 * 1. Style
 * 2. Makes box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 */
.uk-form input[type="radio"],
.uk-form input[type="checkbox"] {
  /* 1 */
  display: inline-block;
  height: 14px;
  width: 14px;
  border: 1px solid #aaa;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  outline: 0;
  /* 5 */
  background: transparent;
}
/* Radio */
.uk-form input[type="radio"] {
  border-radius: 50%;
}
/*
 * Checked
 */
.uk-form input[type=radio]:before,
.uk-form input[type=checkbox]:before {
  display: block;
}
/* Radio */
.uk-form input[type=radio]:checked:before {
  content: '';
  width: 8px;
  height: 8px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: #00a8e6;
}
/* Checkbox */
.uk-form input[type=checkbox]:checked:before,
.uk-form input[type=checkbox]:indeterminate:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 12px;
  color: #00a8e6;
}
.uk-form input[type=checkbox]:indeterminate:before {
  content: "\f068";
}
/*
 * Disabled
 */
.uk-form input[type=radio]:disabled,
.uk-form input[type=checkbox]:disabled {
  border-color: #ddd;
}
.uk-form input[type=radio]:disabled:checked:before {
  background-color: #aaa;
}
.uk-form input[type=checkbox]:disabled:checked:before,
.uk-form input[type=checkbox]:disabled:indeterminate:before {
  color: #aaa;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form advanced
   Note: Only works in Webkit at the moment
 ========================================================================== */
/*
 * 1. Style
 * 2. Makes box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 */
.uk-form input[type="radio"],
.uk-form input[type="checkbox"] {
  /* 1 */
  display: inline-block;
  height: 14px;
  width: 14px;
  border: 1px solid #aaa;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  outline: 0;
  /* 5 */
  background: transparent;
}
/* Radio */
.uk-form input[type="radio"] {
  border-radius: 50%;
}
/*
 * Checked
 */
.uk-form input[type=radio]:before,
.uk-form input[type=checkbox]:before {
  display: block;
}
/* Radio */
.uk-form input[type=radio]:checked:before {
  content: '';
  width: 8px;
  height: 8px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: #00a8e6;
}
/* Checkbox */
.uk-form input[type=checkbox]:checked:before,
.uk-form input[type=checkbox]:indeterminate:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 12px;
  color: #00a8e6;
}
.uk-form input[type=checkbox]:indeterminate:before {
  content: "\f068";
}
/*
 * Disabled
 */
.uk-form input[type=radio]:disabled,
.uk-form input[type=checkbox]:disabled {
  border-color: #ddd;
}
.uk-form input[type=radio]:disabled:checked:before {
  background-color: #aaa;
}
.uk-form input[type=checkbox]:disabled:checked:before,
.uk-form input[type=checkbox]:disabled:indeterminate:before {
  color: #aaa;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form input[type=radio],.uk-form input[type=checkbox]{display:inline-block;height:14px;width:14px;border:1px solid #aaa;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;outline:0;background:0 0}.uk-form input[type=radio]{border-radius:50%}.uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before{display:block}.uk-form input[type=radio]:checked:before{content:'';width:8px;height:8px;margin:2px auto 0;border-radius:50%;background:#00a8e6}.uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before{content:"\f00c";font-family:FontAwesome;font-size:12px;-webkit-font-smoothing:antialiased;text-align:center;line-height:12px;color:#00a8e6}.uk-form input[type=checkbox]:indeterminate:before{content:"\f068"}.uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled{border-color:#ddd}.uk-form input[type=radio]:disabled:checked:before{background-color:#aaa}.uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before{color:#aaa}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form input[type=radio],.uk-form input[type=checkbox]{display:inline-block;height:14px;width:14px;border:1px solid #aaa;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;outline:0;background:0 0}.uk-form input[type=radio]{border-radius:50%}.uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before{display:block}.uk-form input[type=radio]:checked:before{content:'';width:8px;height:8px;margin:2px auto 0;border-radius:50%;background:#00a8e6}.uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before{content:"\f00c";font-family:FontAwesome;font-size:12px;-webkit-font-smoothing:antialiased;text-align:center;line-height:12px;color:#00a8e6}.uk-form input[type=checkbox]:indeterminate:before{content:"\f068"}.uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled{border-color:#ddd}.uk-form input[type=radio]:disabled:checked:before{background-color:#aaa}.uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before{color:#aaa}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form file
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-file {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 2. Expand height and required for the cursor
 */
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  font-size: 500px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-file{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-file input[type=file]{position:absolute;top:0;z-index:1;width:100%;opacity:0;cursor:pointer;left:0;font-size:500px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form file
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-file {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 2. Expand height and required for the cursor
 */
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  font-size: 500px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form file
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-file {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 2. Expand height and required for the cursor
 */
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  font-size: 500px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-file{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-file input[type=file]{position:absolute;top:0;z-index:1;width:100%;opacity:0;cursor:pointer;left:0;font-size:500px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-file{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-file input[type=file]{position:absolute;top:0;z-index:1;width:100%;opacity:0;cursor:pointer;left:0;font-size:500px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form password
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.uk-form-password {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
.uk-form-password-toggle {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  font-size: 13px;
  line-height: 13px;
  color: #999;
}
.uk-form-password-toggle:hover {
  color: #999;
  text-decoration: none;
}
.uk-form-password > input {
  padding-right: 50px !important;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-password{display:inline-block;position:relative;max-width:100%}.uk-form-password-toggle{display:block;position:absolute;top:50%;right:10px;margin-top:-6px;font-size:13px;line-height:13px;color:#999}.uk-form-password-toggle:hover{color:#999;text-decoration:none}.uk-form-password>input{padding-right:50px!important}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form password
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.uk-form-password {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
.uk-form-password-toggle {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  font-size: 13px;
  line-height: 13px;
  color: #999;
}
.uk-form-password-toggle:hover {
  color: #999;
  text-decoration: none;
}
.uk-form-password > input {
  padding-right: 50px !important;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form password
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.uk-form-password {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
.uk-form-password-toggle {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  font-size: 13px;
  line-height: 13px;
  color: #999;
}
.uk-form-password-toggle:hover {
  color: #999;
  text-decoration: none;
}
.uk-form-password > input {
  padding-right: 50px !important;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-password{display:inline-block;position:relative;max-width:100%}.uk-form-password-toggle{display:block;position:absolute;top:50%;right:10px;margin-top:-6px;font-size:13px;line-height:13px;color:#999}.uk-form-password-toggle:hover{color:#999;text-decoration:none}.uk-form-password>input{padding-right:50px!important}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-password{display:inline-block;position:relative;max-width:100%}.uk-form-password-toggle{display:block;position:absolute;top:50%;right:10px;margin-top:-6px;font-size:13px;line-height:13px;color:#999}.uk-form-password-toggle:hover{color:#999;text-decoration:none}.uk-form-password>input{padding-right:50px!important}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.uk-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-select{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-select select{position:absolute;top:0;z-index:1;width:100%;height:100%;opacity:0;cursor:pointer;left:0;-webkit-appearance:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.uk-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.uk-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-select{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-select select{position:absolute;top:0;z-index:1;width:100%;height:100%;opacity:0;cursor:pointer;left:0;-webkit-appearance:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-select{display:inline-block;vertical-align:middle;position:relative;overflow:hidden}.uk-form-select select{position:absolute;top:0;z-index:1;width:100%;height:100%;opacity:0;cursor:pointer;left:0;-webkit-appearance:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: HTML editor
 ========================================================================== */
/* Sub-object `uk-htmleditor-navbar`
 ========================================================================== */
.uk-htmleditor-navbar {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
/*
 * 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: 41px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444;
  font-size: 11px;
  cursor: pointer;
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  text-shadow: 0 1px 0 #fff;
}
/*
 * 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: #fafafa;
  color: #444;
  outline: none;
  /* 2 */
  position: relative;
  z-index: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* OnClick */
.uk-htmleditor-navbar-nav > li > a:active {
  background-color: #eee;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
}
/* Active */
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background-color: #fafafa;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* 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;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
/*
 * 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: 41px;
  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;
}
/*
     * Apply same `border-radius` as `uk-htmleditor-navbar`
     */
.uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-navbar-flip`
     */
/* Collapse border */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav > li > a {
  margin-left: 0;
  margin-right: -1px;
}
/* Apply same `border-radius` as `uk-htmleditor-navbar` */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 0;
}
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:last-child > li:last-child > a {
  border-top-right-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-fullscreen`
     */
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  border: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar-nav > li > a {
  border-radius: 0 !important;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-htmleditor-navbar{background:#f5f5f5;border:1px solid rgba(0,0,0,.06);border-top-left-radius:4px;border-top-right-radius:4px}.uk-htmleditor-navbar:after,.uk-htmleditor-navbar:before{content:"";display:table}.uk-htmleditor-navbar:after{clear:both}.uk-htmleditor-navbar-nav{margin:0;padding:0;list-style:none;float:left}.uk-htmleditor-navbar-nav>li{float:left}.uk-htmleditor-navbar-nav>li>a{display:block;box-sizing:border-box;text-decoration:none;height:41px;padding:0 15px;line-height:40px;color:#444;font-size:11px;cursor:pointer;margin-top:-1px;margin-left:-1px;border:1px solid transparent;border-bottom-width:0;text-shadow:0 1px 0 #fff}.uk-htmleditor-navbar-nav>li:hover>a,.uk-htmleditor-navbar-nav>li>a:focus{background-color:#fafafa;color:#444;outline:0;position:relative;z-index:1;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-top-color:rgba(0,0,0,.1)}.uk-htmleditor-navbar-nav>li>a:active{background-color:#eee;color:#444;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-top-color:rgba(0,0,0,.2)}.uk-htmleditor-navbar-nav>li.uk-active>a{background-color:#fafafa;color:#444;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-top-color:rgba(0,0,0,.1)}.uk-htmleditor-navbar-flip{float:right}[data-mode=split] .uk-htmleditor-button-code,[data-mode=split] .uk-htmleditor-button-preview{display:none}.uk-htmleditor-content{border-left:1px solid #ddd;border-right:1px solid #ddd;border-bottom:1px solid #ddd;background:#fff;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.uk-htmleditor-content:after,.uk-htmleditor-content:before{content:"";display:table}.uk-htmleditor-content:after{clear:both}.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:41px;left:0;right:0;bottom:0}.uk-htmleditor-fullscreen .uk-icon-expand:before{content:"\f066"}.uk-htmleditor-code,.uk-htmleditor-preview{box-sizing:border-box}.uk-htmleditor-preview{padding:20px;overflow-y:scroll;position:relative}[data-mode=tab][data-active-tab=code] .uk-htmleditor-preview,[data-mode=tab][data-active-tab=preview] .uk-htmleditor-code{display:none}[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}.uk-htmleditor-iframe{position:absolute;top:0;left:0;width:100%;height:100%}.uk-htmleditor .CodeMirror{padding:10px;box-sizing:border-box}.uk-htmleditor-navbar-nav:first-child>li:first-child>a{border-top-left-radius:4px}.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav>li>a{margin-left:0;margin-right:-1px}.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:first-child>li:first-child>a{border-top-left-radius:0}.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:last-child>li:last-child>a{border-top-right-radius:4px}.uk-htmleditor-fullscreen .uk-htmleditor-navbar{border-top:none;border-left:none;border-right:none;border-radius:0}.uk-htmleditor-fullscreen .uk-htmleditor-content{border:none;border-radius:0}.uk-htmleditor-fullscreen .uk-htmleditor-navbar-nav>li>a{border-radius:0!important}
/*! UIkit 2.27.5 | 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.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: HTML editor
 ========================================================================== */
/* Sub-object `uk-htmleditor-navbar`
 ========================================================================== */
.uk-htmleditor-navbar {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #fff, #eee);
  background-image: linear-gradient(to bottom, #fff, #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: 41px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444;
  font-size: 11px;
  cursor: pointer;
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  text-shadow: 0 1px 0 #fff;
}
/*
 * 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: transparent;
  color: #444;
  outline: none;
  /* 2 */
  position: relative;
  z-index: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* OnClick */
.uk-htmleditor-navbar-nav > li > a:active {
  background-color: #f5f5f5;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Active */
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background-color: #fafafa;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* 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;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
/*
 * 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: 41px;
  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;
}
/*
     * Apply same `border-radius` as `uk-htmleditor-navbar`
     */
.uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-navbar-flip`
     */
/* Collapse border */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav > li > a {
  margin-left: 0;
  margin-right: -1px;
}
/* Apply same `border-radius` as `uk-htmleditor-navbar` */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 0;
}
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:last-child > li:last-child > a {
  border-top-right-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-fullscreen`
     */
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  border: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar-nav > li > a {
  border-radius: 0 !important;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-htmleditor-navbar{background:#f7f7f7;border:1px solid rgba(0,0,0,.1);border-bottom-color:rgba(0,0,0,.2);border-top-left-radius:4px;border-top-right-radius:4px;background-origin:border-box;background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:linear-gradient(to bottom,#fff,#eee)}.uk-htmleditor-navbar:after,.uk-htmleditor-navbar:before{content:"";display:table}.uk-htmleditor-navbar:after{clear:both}.uk-htmleditor-navbar-nav{margin:0;padding:0;list-style:none;float:left}.uk-htmleditor-navbar-nav>li{float:left}.uk-htmleditor-navbar-nav>li>a{display:block;box-sizing:border-box;text-decoration:none;height:41px;padding:0 15px;line-height:40px;color:#444;font-size:11px;cursor:pointer;margin-top:-1px;margin-left:-1px;border:1px solid transparent;border-bottom-width:0;text-shadow:0 1px 0 #fff}.uk-htmleditor-navbar-nav>li:hover>a,.uk-htmleditor-navbar-nav>li>a:focus{background-color:transparent;color:#444;outline:0;position:relative;z-index:1;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-top-color:rgba(0,0,0,.1);box-shadow:inset 0 2px 4px rgba(0,0,0,.1)}.uk-htmleditor-navbar-nav>li>a:active{background-color:#f5f5f5;color:#444;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-top-color:rgba(0,0,0,.2);box-shadow:inset 0 2px 4px rgba(0,0,0,.1)}.uk-htmleditor-navbar-nav>li.uk-active>a{background-color:#fafafa;color:#444;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-top-color:rgba(0,0,0,.2);box-shadow:inset 0 2px 4px rgba(0,0,0,.1)}.uk-htmleditor-navbar-flip{float:right}[data-mode=split] .uk-htmleditor-button-code,[data-mode=split] .uk-htmleditor-button-preview{display:none}.uk-htmleditor-content{border-left:1px solid #ddd;border-right:1px solid #ddd;border-bottom:1px solid #ddd;background:#fff;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.uk-htmleditor-content:after,.uk-htmleditor-content:before{content:"";display:table}.uk-htmleditor-content:after{clear:both}.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:41px;left:0;right:0;bottom:0}.uk-htmleditor-fullscreen .uk-icon-expand:before{content:"\f066"}.uk-htmleditor-code,.uk-htmleditor-preview{box-sizing:border-box}.uk-htmleditor-preview{padding:20px;overflow-y:scroll;position:relative}[data-mode=tab][data-active-tab=code] .uk-htmleditor-preview,[data-mode=tab][data-active-tab=preview] .uk-htmleditor-code{display:none}[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}.uk-htmleditor-iframe{position:absolute;top:0;left:0;width:100%;height:100%}.uk-htmleditor .CodeMirror{padding:10px;box-sizing:border-box}.uk-htmleditor-navbar-nav:first-child>li:first-child>a{border-top-left-radius:4px}.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav>li>a{margin-left:0;margin-right:-1px}.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:first-child>li:first-child>a{border-top-left-radius:0}.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:last-child>li:last-child>a{border-top-right-radius:4px}.uk-htmleditor-fullscreen .uk-htmleditor-navbar{border-top:none;border-left:none;border-right:none;border-radius:0}.uk-htmleditor-fullscreen .uk-htmleditor-content{border:none;border-radius:0}.uk-htmleditor-fullscreen .uk-htmleditor-navbar-nav>li>a{border-radius:0!important}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-htmleditor-navbar{background:#eee}.uk-htmleditor-navbar:after,.uk-htmleditor-navbar:before{content:"";display:table}.uk-htmleditor-navbar:after{clear:both}.uk-htmleditor-navbar-nav{margin:0;padding:0;list-style:none;float:left}.uk-htmleditor-navbar-nav>li{float:left}.uk-htmleditor-navbar-nav>li>a{display:block;box-sizing:border-box;text-decoration:none;height:40px;padding:0 15px;line-height:40px;color:#444;font-size:11px;cursor:pointer}.uk-htmleditor-navbar-nav>li:hover>a,.uk-htmleditor-navbar-nav>li>a:focus{background-color:#f5f5f5;color:#444;outline:0}.uk-htmleditor-navbar-nav>li>a:active{background-color:#ddd;color:#444}.uk-htmleditor-navbar-nav>li.uk-active>a{background-color:#f5f5f5;color:#444}.uk-htmleditor-navbar-flip{float:right}[data-mode=split] .uk-htmleditor-button-code,[data-mode=split] .uk-htmleditor-button-preview{display:none}.uk-htmleditor-content{border-left:1px solid #ddd;border-right:1px solid #ddd;border-bottom:1px solid #ddd;background:#fff}.uk-htmleditor-content:after,.uk-htmleditor-content:before{content:"";display:table}.uk-htmleditor-content:after{clear:both}.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"}.uk-htmleditor-code,.uk-htmleditor-preview{box-sizing:border-box}.uk-htmleditor-preview{padding:20px;overflow-y:scroll;position:relative}[data-mode=tab][data-active-tab=code] .uk-htmleditor-preview,[data-mode=tab][data-active-tab=preview] .uk-htmleditor-code{display:none}[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}.uk-htmleditor-iframe{position:absolute;top:0;left:0;width:100%;height:100%}.uk-htmleditor .CodeMirror{padding:10px;box-sizing:border-box}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Nestable
 ========================================================================== */
.uk-nestable {
  padding: 0;
  list-style: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-nestable a,
.uk-nestable img {
  -webkit-touch-callout: none;
}
/* Sub-object `uk-nestable-list`
 ========================================================================== */
.uk-nestable-list {
  margin: 0;
  padding-left: 40px;
  list-style: none;
}
/* Sub-modifier `uk-nestable-item`
 ========================================================================== */
/*
 * 1. Deactivate browser touch actions in IE11
 */
.uk-nestable-item {
  /* 1 */
  touch-action: none;
}
.uk-nestable-item + .uk-nestable-item {
  margin-top: 10px;
}
.uk-nestable-list:not(.uk-nestable-dragged) > .uk-nestable-item:first-child {
  margin-top: 10px;
}
/* Sub-modifier `uk-nestable-dragged`
 ========================================================================== */
/*
 * 1. Reset style
 */
.uk-nestable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
  /* 1 */
  padding-left: 0;
}
/* Sub-modifier `uk-nestable-placeholder`
 ========================================================================== */
.uk-nestable-placeholder {
  position: relative;
}
.uk-nestable-placeholder > * {
  opacity: 0;
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px dashed #ddd;
  opacity: 1;
}
/* Empty List
 ========================================================================== */
.uk-nestable-empty {
  min-height: 30px;
}
/* Sub-object `uk-nestable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-nestable-handle {
  touch-action: none;
}
/* Hover */
.uk-nestable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-nestable-moving`
 ========================================================================== */
.uk-nestable-moving,
.uk-nestable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-nestable-moving iframe {
  pointer-events: none;
}
/* [data-nestable-action='toggle']
 ========================================================================== */
/*
 * 1. Makes text unselectable. Happens if double clicked by mistake
 */
[data-nestable-action='toggle'] {
  cursor: pointer;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Sub-object `.uk-nestable-toggle`
 ========================================================================== */
.uk-nestable-toggle {
  display: inline-block;
  visibility: hidden;
}
.uk-nestable-toggle:after {
  content: "\f147";
  font-family: FontAwesome;
}
.uk-parent > :not(.uk-nestable-list) .uk-nestable-toggle {
  visibility: visible;
}
/*
 * Collapsed
 */
.uk-collapsed .uk-nestable-list {
  display: none;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\f196";
}
/* Sub-object `uk-nestable-panel`
 ========================================================================== */
.uk-nestable-panel {
  padding: 5px;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 0 #fff;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-nestable{padding:0;list-style:none}.uk-nestable a,.uk-nestable img{-webkit-touch-callout:none}.uk-nestable-list{margin:0;padding-left:40px;list-style:none}.uk-nestable-item{touch-action:none}.uk-nestable-item+.uk-nestable-item{margin-top:10px}.uk-nestable-list:not(.uk-nestable-dragged)>.uk-nestable-item:first-child{margin-top:10px}.uk-nestable-dragged{position:absolute;z-index:1050;pointer-events:none;padding-left:0}.uk-nestable-placeholder{position:relative}.uk-nestable-placeholder>*{opacity:0}.uk-nestable-placeholder:after{content:'';position:absolute;top:0;bottom:0;left:0;right:0;border:1px dashed #ddd;opacity:1}.uk-nestable-empty{min-height:30px}.uk-nestable-handle{touch-action:none}.uk-nestable-handle:hover{cursor:move}.uk-nestable-moving,.uk-nestable-moving *{cursor:move}.uk-nestable-moving iframe{pointer-events:none}[data-nestable-action=toggle]{cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-nestable-toggle{display:inline-block;visibility:hidden}.uk-nestable-toggle:after{content:"\f147";font-family:FontAwesome}.uk-parent>:not(.uk-nestable-list) .uk-nestable-toggle{visibility:visible}.uk-collapsed .uk-nestable-list{display:none}.uk-collapsed .uk-nestable-toggle:after{content:"\f196"}.uk-nestable-panel{padding:5px;background:#f5f5f5;border-radius:4px;border:1px solid rgba(0,0,0,.06);text-shadow:0 1px 0 #fff}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Nestable
 ========================================================================== */
.uk-nestable {
  padding: 0;
  list-style: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-nestable a,
.uk-nestable img {
  -webkit-touch-callout: none;
}
/* Sub-object `uk-nestable-list`
 ========================================================================== */
.uk-nestable-list {
  margin: 0;
  padding-left: 40px;
  list-style: none;
}
/* Sub-modifier `uk-nestable-item`
 ========================================================================== */
/*
 * 1. Deactivate browser touch actions in IE11
 */
.uk-nestable-item {
  /* 1 */
  touch-action: none;
}
.uk-nestable-item + .uk-nestable-item {
  margin-top: 10px;
}
.uk-nestable-list:not(.uk-nestable-dragged) > .uk-nestable-item:first-child {
  margin-top: 10px;
}
/* Sub-modifier `uk-nestable-dragged`
 ========================================================================== */
/*
 * 1. Reset style
 */
.uk-nestable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
  /* 1 */
  padding-left: 0;
}
/* Sub-modifier `uk-nestable-placeholder`
 ========================================================================== */
.uk-nestable-placeholder {
  position: relative;
}
.uk-nestable-placeholder > * {
  opacity: 0;
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px dashed #ddd;
  opacity: 1;
}
/* Empty List
 ========================================================================== */
.uk-nestable-empty {
  min-height: 30px;
}
/* Sub-object `uk-nestable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-nestable-handle {
  touch-action: none;
}
/* Hover */
.uk-nestable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-nestable-moving`
 ========================================================================== */
.uk-nestable-moving,
.uk-nestable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-nestable-moving iframe {
  pointer-events: none;
}
/* [data-nestable-action='toggle']
 ========================================================================== */
/*
 * 1. Makes text unselectable. Happens if double clicked by mistake
 */
[data-nestable-action='toggle'] {
  cursor: pointer;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Sub-object `.uk-nestable-toggle`
 ========================================================================== */
.uk-nestable-toggle {
  display: inline-block;
  visibility: hidden;
}
.uk-nestable-toggle:after {
  content: "\f147";
  font-family: FontAwesome;
}
.uk-parent > :not(.uk-nestable-list) .uk-nestable-toggle {
  visibility: visible;
}
/*
 * Collapsed
 */
.uk-collapsed .uk-nestable-list {
  display: none;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\f196";
}
/* Sub-object `uk-nestable-panel`
 ========================================================================== */
.uk-nestable-panel {
  padding: 5px;
  background: #f5f5f5;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Nestable
 ========================================================================== */
.uk-nestable {
  padding: 0;
  list-style: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-nestable a,
.uk-nestable img {
  -webkit-touch-callout: none;
}
/* Sub-object `uk-nestable-list`
 ========================================================================== */
.uk-nestable-list {
  margin: 0;
  padding-left: 40px;
  list-style: none;
}
/* Sub-modifier `uk-nestable-item`
 ========================================================================== */
/*
 * 1. Deactivate browser touch actions in IE11
 */
.uk-nestable-item {
  /* 1 */
  touch-action: none;
}
.uk-nestable-item + .uk-nestable-item {
  margin-top: 10px;
}
.uk-nestable-list:not(.uk-nestable-dragged) > .uk-nestable-item:first-child {
  margin-top: 10px;
}
/* Sub-modifier `uk-nestable-dragged`
 ========================================================================== */
/*
 * 1. Reset style
 */
.uk-nestable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
  /* 1 */
  padding-left: 0;
}
/* Sub-modifier `uk-nestable-placeholder`
 ========================================================================== */
.uk-nestable-placeholder {
  position: relative;
}
.uk-nestable-placeholder > * {
  opacity: 0;
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px dashed #ddd;
  opacity: 1;
}
/* Empty List
 ========================================================================== */
.uk-nestable-empty {
  min-height: 30px;
}
/* Sub-object `uk-nestable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-nestable-handle {
  touch-action: none;
}
/* Hover */
.uk-nestable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-nestable-moving`
 ========================================================================== */
.uk-nestable-moving,
.uk-nestable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-nestable-moving iframe {
  pointer-events: none;
}
/* [data-nestable-action='toggle']
 ========================================================================== */
/*
 * 1. Makes text unselectable. Happens if double clicked by mistake
 */
[data-nestable-action='toggle'] {
  cursor: pointer;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Sub-object `.uk-nestable-toggle`
 ========================================================================== */
.uk-nestable-toggle {
  display: inline-block;
  visibility: hidden;
}
.uk-nestable-toggle:after {
  content: "\f147";
  font-family: FontAwesome;
}
.uk-parent > :not(.uk-nestable-list) .uk-nestable-toggle {
  visibility: visible;
}
/*
 * Collapsed
 */
.uk-collapsed .uk-nestable-list {
  display: none;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\f196";
}
/* Sub-object `uk-nestable-panel`
 ========================================================================== */
.uk-nestable-panel {
  padding: 5px;
  background: #f7f7f7;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.3);
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #fff, #eee);
  background-image: linear-gradient(to bottom, #fff, #eee);
  text-shadow: 0 1px 0 #fff;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-nestable{padding:0;list-style:none}.uk-nestable a,.uk-nestable img{-webkit-touch-callout:none}.uk-nestable-list{margin:0;padding-left:40px;list-style:none}.uk-nestable-item{touch-action:none}.uk-nestable-item+.uk-nestable-item{margin-top:10px}.uk-nestable-list:not(.uk-nestable-dragged)>.uk-nestable-item:first-child{margin-top:10px}.uk-nestable-dragged{position:absolute;z-index:1050;pointer-events:none;padding-left:0}.uk-nestable-placeholder{position:relative}.uk-nestable-placeholder>*{opacity:0}.uk-nestable-placeholder:after{content:'';position:absolute;top:0;bottom:0;left:0;right:0;border:1px dashed #ddd;opacity:1}.uk-nestable-empty{min-height:30px}.uk-nestable-handle{touch-action:none}.uk-nestable-handle:hover{cursor:move}.uk-nestable-moving,.uk-nestable-moving *{cursor:move}.uk-nestable-moving iframe{pointer-events:none}[data-nestable-action=toggle]{cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-nestable-toggle{display:inline-block;visibility:hidden}.uk-nestable-toggle:after{content:"\f147";font-family:FontAwesome}.uk-parent>:not(.uk-nestable-list) .uk-nestable-toggle{visibility:visible}.uk-collapsed .uk-nestable-list{display:none}.uk-collapsed .uk-nestable-toggle:after{content:"\f196"}.uk-nestable-panel{padding:5px;background:#f7f7f7;border-radius:4px;border:1px solid rgba(0,0,0,.2);border-bottom-color:rgba(0,0,0,.3);background-origin:border-box;background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:linear-gradient(to bottom,#fff,#eee);text-shadow:0 1px 0 #fff}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-nestable{padding:0;list-style:none}.uk-nestable a,.uk-nestable img{-webkit-touch-callout:none}.uk-nestable-list{margin:0;padding-left:40px;list-style:none}.uk-nestable-item{touch-action:none}.uk-nestable-item+.uk-nestable-item{margin-top:10px}.uk-nestable-list:not(.uk-nestable-dragged)>.uk-nestable-item:first-child{margin-top:10px}.uk-nestable-dragged{position:absolute;z-index:1050;pointer-events:none;padding-left:0}.uk-nestable-placeholder{position:relative}.uk-nestable-placeholder>*{opacity:0}.uk-nestable-placeholder:after{content:'';position:absolute;top:0;bottom:0;left:0;right:0;border:1px dashed #ddd;opacity:1}.uk-nestable-empty{min-height:30px}.uk-nestable-handle{touch-action:none}.uk-nestable-handle:hover{cursor:move}.uk-nestable-moving,.uk-nestable-moving *{cursor:move}.uk-nestable-moving iframe{pointer-events:none}[data-nestable-action=toggle]{cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-nestable-toggle{display:inline-block;visibility:hidden}.uk-nestable-toggle:after{content:"\f147";font-family:FontAwesome}.uk-parent>:not(.uk-nestable-list) .uk-nestable-toggle{visibility:visible}.uk-collapsed .uk-nestable-list{display:none}.uk-collapsed .uk-nestable-toggle:after{content:"\f196"}.uk-nestable-panel{padding:5px;background:#f5f5f5}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Notify
 ========================================================================== */
/*
 * Message container for positioning
 */
.uk-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `uk-notify-message`
========================================================================== */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  border: 1px solid #444;
  border-radius: 4px;
}
/* Close in notify
 ========================================================================== */
.uk-notify-message > .uk-close {
  visibility: hidden;
  float: right;
}
.uk-notify-message:hover > .uk-close {
  visibility: visible;
}
/* Modifier: `uk-notify-message-primary`
 ========================================================================== */
.uk-notify-message-primary {
  background: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
/* Modifier: `uk-notify-message-success`
 ========================================================================== */
.uk-notify-message-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `uk-notify-message-warning`
 ========================================================================== */
.uk-notify-message-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `uk-notify-message-danger`
 ========================================================================== */
.uk-notify-message-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-notify{position:fixed;top:10px;left:10px;z-index:1040;box-sizing:border-box;width:350px}.uk-notify-bottom-right,.uk-notify-top-right{left:auto;right:10px}.uk-notify-bottom-center,.uk-notify-top-center{left:50%;margin-left:-175px}.uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right{top:auto;bottom:10px}@media (max-width:479px){.uk-notify{left:10px;right:10px;width:auto;margin:0}}.uk-notify-message{position:relative;margin-bottom:10px;padding:15px;background:#444;color:#fff;font-size:16px;line-height:22px;cursor:pointer;border:1px solid #444;border-radius:4px}.uk-notify-message>.uk-close{visibility:hidden;float:right}.uk-notify-message:hover>.uk-close{visibility:visible}.uk-notify-message-primary{background:#ebf7fd;color:#2d7091;border-color:rgba(45,112,145,.3)}.uk-notify-message-success{background:#f2fae3;color:#659f13;border-color:rgba(101,159,19,.3)}.uk-notify-message-warning{background:#fffceb;color:#e28327;border-color:rgba(226,131,39,.3)}.uk-notify-message-danger{background:#fff1f0;color:#d85030;border-color:rgba(216,80,48,.3)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Notify
 ========================================================================== */
/*
 * Message container for positioning
 */
.uk-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `uk-notify-message`
========================================================================== */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
}
/* Close in notify
 ========================================================================== */
.uk-notify-message > .uk-close {
  visibility: hidden;
  float: right;
}
.uk-notify-message:hover > .uk-close {
  visibility: visible;
}
/* Modifier: `uk-notify-message-primary`
 ========================================================================== */
.uk-notify-message-primary {
  background: #ebf7fd;
  color: #2d7091;
}
/* Modifier: `uk-notify-message-success`
 ========================================================================== */
.uk-notify-message-success {
  background: #f2fae3;
  color: #659f13;
}
/* Modifier: `uk-notify-message-warning`
 ========================================================================== */
.uk-notify-message-warning {
  background: #fffceb;
  color: #e28327;
}
/* Modifier: `uk-notify-message-danger`
 ========================================================================== */
.uk-notify-message-danger {
  background: #fff1f0;
  color: #d85030;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Notify
 ========================================================================== */
/*
 * Message container for positioning
 */
.uk-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `uk-notify-message`
========================================================================== */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  border: 1px solid #444;
  border-radius: 4px;
}
/* Close in notify
 ========================================================================== */
.uk-notify-message > .uk-close {
  visibility: hidden;
  float: right;
}
.uk-notify-message:hover > .uk-close {
  visibility: visible;
}
/* Modifier: `uk-notify-message-primary`
 ========================================================================== */
.uk-notify-message-primary {
  background: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
/* Modifier: `uk-notify-message-success`
 ========================================================================== */
.uk-notify-message-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `uk-notify-message-warning`
 ========================================================================== */
.uk-notify-message-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `uk-notify-message-danger`
 ========================================================================== */
.uk-notify-message-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-notify{position:fixed;top:10px;left:10px;z-index:1040;box-sizing:border-box;width:350px}.uk-notify-bottom-right,.uk-notify-top-right{left:auto;right:10px}.uk-notify-bottom-center,.uk-notify-top-center{left:50%;margin-left:-175px}.uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right{top:auto;bottom:10px}@media (max-width:479px){.uk-notify{left:10px;right:10px;width:auto;margin:0}}.uk-notify-message{position:relative;margin-bottom:10px;padding:15px;background:#444;color:#fff;font-size:16px;line-height:22px;cursor:pointer;border:1px solid #444;border-radius:4px}.uk-notify-message>.uk-close{visibility:hidden;float:right}.uk-notify-message:hover>.uk-close{visibility:visible}.uk-notify-message-primary{background:#ebf7fd;color:#2d7091;border-color:rgba(45,112,145,.3)}.uk-notify-message-success{background:#f2fae3;color:#659f13;border-color:rgba(101,159,19,.3)}.uk-notify-message-warning{background:#fffceb;color:#e28327;border-color:rgba(226,131,39,.3)}.uk-notify-message-danger{background:#fff1f0;color:#d85030;border-color:rgba(216,80,48,.3)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-notify{position:fixed;top:10px;left:10px;z-index:1040;box-sizing:border-box;width:350px}.uk-notify-bottom-right,.uk-notify-top-right{left:auto;right:10px}.uk-notify-bottom-center,.uk-notify-top-center{left:50%;margin-left:-175px}.uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right{top:auto;bottom:10px}@media (max-width:479px){.uk-notify{left:10px;right:10px;width:auto;margin:0}}.uk-notify-message{position:relative;margin-bottom:10px;padding:15px;background:#444;color:#fff;font-size:16px;line-height:22px;cursor:pointer}.uk-notify-message>.uk-close{visibility:hidden;float:right}.uk-notify-message:hover>.uk-close{visibility:visible}.uk-notify-message-primary{background:#ebf7fd;color:#2d7091}.uk-notify-message-success{background:#f2fae3;color:#659f13}.uk-notify-message-warning{background:#fffceb;color:#e28327}.uk-notify-message-danger{background:#fff1f0;color:#d85030}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.uk-placeholder {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px dashed #ddd;
  background: #fafafa;
  color: #444;
}
/*
 * Add margin if adjacent element
 */
* + .uk-placeholder {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.uk-placeholder > :last-child {
  margin-bottom: 0;
}
/* Modifier: `uk-placeholder-large`
 ========================================================================== */
.uk-placeholder-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-placeholder{margin-bottom:15px;padding:15px;border:1px dashed #ddd;background:#fafafa;color:#444}*+.uk-placeholder{margin-top:15px}.uk-placeholder>:last-child{margin-bottom:0}.uk-placeholder-large{padding-top:80px;padding-bottom:80px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.uk-placeholder {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px dashed #ddd;
  background: #fafafa;
  color: #444;
}
/*
 * Add margin if adjacent element
 */
* + .uk-placeholder {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.uk-placeholder > :last-child {
  margin-bottom: 0;
}
/* Modifier: `uk-placeholder-large`
 ========================================================================== */
.uk-placeholder-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.uk-placeholder {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px dashed #ddd;
  background: #fafafa;
  color: #444;
}
/*
 * Add margin if adjacent element
 */
* + .uk-placeholder {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.uk-placeholder > :last-child {
  margin-bottom: 0;
}
/* Modifier: `uk-placeholder-large`
 ========================================================================== */
.uk-placeholder-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-placeholder{margin-bottom:15px;padding:15px;border:1px dashed #ddd;background:#fafafa;color:#444}*+.uk-placeholder{margin-top:15px}.uk-placeholder>:last-child{margin-bottom:0}.uk-placeholder-large{padding-top:80px;padding-bottom:80px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-placeholder{margin-bottom:15px;padding:15px;border:1px dashed #ddd;background:#fafafa;color:#444}*+.uk-placeholder{margin-top:15px}.uk-placeholder>:last-child{margin-bottom:0}.uk-placeholder-large{padding-top:80px;padding-bottom:80px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Clearing
 * 2. Vertical alignment if text is used
 */
.uk-progress {
  box-sizing: border-box;
  height: 20px;
  margin-bottom: 15px;
  background: #f5f5f5;
  /* 1 */
  overflow: hidden;
  /* 2 */
  line-height: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-progress {
  margin-top: 15px;
}
/* Sub-object: `uk-progress-bar`
 ========================================================================== */
/*
 * 1. Transition
 * 2. Needed for text
 */
.uk-progress-bar {
  width: 0;
  height: 100%;
  background: #00a8e6;
  float: left;
  /* 1 */
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/* Size modifiers
 ========================================================================== */
/* Mini */
.uk-progress-mini {
  height: 6px;
}
/* Small */
.uk-progress-small {
  height: 12px;
}
/* Color modifiers
 ========================================================================== */
.uk-progress-success .uk-progress-bar {
  background-color: #8cc14c;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #faa732;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #da314b;
}
/* Modifier: `uk-progress-striped`
 ========================================================================== */
.uk-progress-striped .uk-progress-bar {
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}
/*
 * Animation
 */
.uk-progress-striped.uk-active .uk-progress-bar {
  -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  animation: uk-progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
/* Size modifiers
     ========================================================================== */
.uk-progress-mini,
.uk-progress-small {
  border-radius: 500px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-progress{box-sizing:border-box;height:20px;margin-bottom:15px;background:#f5f5f5;overflow:hidden;line-height:20px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);border-radius:4px}*+.uk-progress{margin-top:15px}.uk-progress-bar{width:0;height:100%;background:#00a8e6;float:left;-webkit-transition:width .6s ease;transition:width .6s ease;font-size:12px;color:#fff;text-align:center;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-progress-mini{height:6px}.uk-progress-small{height:12px}.uk-progress-success .uk-progress-bar{background-color:#8cc14c}.uk-progress-warning .uk-progress-bar{background-color:#faa732}.uk-progress-danger .uk-progress-bar{background-color:#da314b}.uk-progress-striped .uk-progress-bar{background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:30px 30px}.uk-progress-striped.uk-active .uk-progress-bar{-webkit-animation:uk-progress-bar-stripes 2s linear infinite;animation:uk-progress-bar-stripes 2s linear infinite}@-webkit-keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}@keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}.uk-progress-mini,.uk-progress-small{border-radius:500px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Clearing
 * 2. Vertical alignment if text is used
 */
.uk-progress {
  box-sizing: border-box;
  height: 20px;
  margin-bottom: 15px;
  background: #eee;
  /* 1 */
  overflow: hidden;
  /* 2 */
  line-height: 20px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-progress {
  margin-top: 15px;
}
/* Sub-object: `uk-progress-bar`
 ========================================================================== */
/*
 * 1. Transition
 * 2. Needed for text
 */
.uk-progress-bar {
  width: 0;
  height: 100%;
  background: #00a8e6;
  float: left;
  /* 1 */
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #fff;
  text-align: center;
}
/* Size modifiers
 ========================================================================== */
/* Mini */
.uk-progress-mini {
  height: 6px;
}
/* Small */
.uk-progress-small {
  height: 12px;
}
/* Color modifiers
 ========================================================================== */
.uk-progress-success .uk-progress-bar {
  background-color: #8cc14c;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #faa732;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #da314b;
}
/* Modifier: `uk-progress-striped`
 ========================================================================== */
.uk-progress-striped .uk-progress-bar {
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}
/*
 * Animation
 */
.uk-progress-striped.uk-active .uk-progress-bar {
  -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  animation: uk-progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Clearing
 * 2. Vertical alignment if text is used
 */
.uk-progress {
  box-sizing: border-box;
  height: 20px;
  margin-bottom: 15px;
  background: #f7f7f7;
  /* 1 */
  overflow: hidden;
  /* 2 */
  line-height: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 2px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-progress {
  margin-top: 15px;
}
/* Sub-object: `uk-progress-bar`
 ========================================================================== */
/*
 * 1. Transition
 * 2. Needed for text
 */
.uk-progress-bar {
  width: 0;
  height: 100%;
  background: #009dd8;
  float: left;
  /* 1 */
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-image: -webkit-linear-gradient(top, #00b4f5, #008dc5);
  background-image: linear-gradient(to bottom, #00b4f5, #008dc5);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* Size modifiers
 ========================================================================== */
/* Mini */
.uk-progress-mini {
  height: 6px;
}
/* Small */
.uk-progress-small {
  height: 12px;
}
/* Color modifiers
 ========================================================================== */
.uk-progress-success .uk-progress-bar {
  background-color: #82bb42;
  background-image: -webkit-linear-gradient(top, #9fd256, #6fac34);
  background-image: linear-gradient(to bottom, #9fd256, #6fac34);
}
.uk-progress-warning .uk-progress-bar {
  background-color: #f9a124;
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
}
.uk-progress-danger .uk-progress-bar {
  background-color: #d32c46;
  background-image: -webkit-linear-gradient(top, #ee465a, #c11a39);
  background-image: linear-gradient(to bottom, #ee465a, #c11a39);
}
/* Modifier: `uk-progress-striped`
 ========================================================================== */
.uk-progress-striped .uk-progress-bar {
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}
/*
 * Animation
 */
.uk-progress-striped.uk-active .uk-progress-bar {
  -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  animation: uk-progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
/* Size modifiers
     ========================================================================== */
.uk-progress-mini,
.uk-progress-small {
  border-radius: 500px;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-progress{box-sizing:border-box;height:20px;margin-bottom:15px;background:#f7f7f7;overflow:hidden;line-height:20px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.07),inset 0 2px 2px rgba(0,0,0,.07);border-radius:4px}*+.uk-progress{margin-top:15px}.uk-progress-bar{width:0;height:100%;background:#009dd8;float:left;-webkit-transition:width .6s ease;transition:width .6s ease;font-size:12px;color:#fff;text-align:center;background-image:-webkit-linear-gradient(top,#00b4f5,#008dc5);background-image:linear-gradient(to bottom,#00b4f5,#008dc5);box-shadow:inset 0 -1px 0 rgba(0,0,0,.2),inset 0 0 0 1px rgba(0,0,0,.1);text-shadow:0 -1px 0 rgba(0,0,0,.2)}.uk-progress-mini{height:6px}.uk-progress-small{height:12px}.uk-progress-success .uk-progress-bar{background-color:#82bb42;background-image:-webkit-linear-gradient(top,#9fd256,#6fac34);background-image:linear-gradient(to bottom,#9fd256,#6fac34)}.uk-progress-warning .uk-progress-bar{background-color:#f9a124;background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406)}.uk-progress-danger .uk-progress-bar{background-color:#d32c46;background-image:-webkit-linear-gradient(top,#ee465a,#c11a39);background-image:linear-gradient(to bottom,#ee465a,#c11a39)}.uk-progress-striped .uk-progress-bar{background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:30px 30px}.uk-progress-striped.uk-active .uk-progress-bar{-webkit-animation:uk-progress-bar-stripes 2s linear infinite;animation:uk-progress-bar-stripes 2s linear infinite}@-webkit-keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}@keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}.uk-progress-mini,.uk-progress-small{border-radius:500px}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-progress{box-sizing:border-box;height:20px;margin-bottom:15px;background:#eee;overflow:hidden;line-height:20px}*+.uk-progress{margin-top:15px}.uk-progress-bar{width:0;height:100%;background:#00a8e6;float:left;-webkit-transition:width .6s ease;transition:width .6s ease;font-size:12px;color:#fff;text-align:center}.uk-progress-mini{height:6px}.uk-progress-small{height:12px}.uk-progress-success .uk-progress-bar{background-color:#8cc14c}.uk-progress-warning .uk-progress-bar{background-color:#faa732}.uk-progress-danger .uk-progress-bar{background-color:#da314b}.uk-progress-striped .uk-progress-bar{background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:30px 30px}.uk-progress-striped.uk-active .uk-progress-bar{-webkit-animation:uk-progress-bar-stripes 2s linear infinite;animation:uk-progress-bar-stripes 2s linear infinite}@-webkit-keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}@keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Create position context for dropdowns
 * 2. Needed for `form` element
 */
.uk-search {
  display: inline-block;
  /* 1 */
  position: relative;
  /* 2 */
  margin: 0;
}
/*
 * Icon
 */
.uk-search:before {
  content: "\f002";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  line-height: 30px;
  text-align: center;
  font-family: FontAwesome;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.2);
}
/* Sub-object `uk-search-field`
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-search-field::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.uk-search-field::-webkit-search-cancel-button,
.uk-search-field::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes cancel button in IE10
 */
.uk-search-field::-ms-clear {
  display: none;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-search-field::-moz-placeholder {
  opacity: 1;
}
/*
 * 1. Define consistent box sizing.
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 * 5. Remove default style in iOS.
 * 6. Style
 */
.uk-search-field {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: #444;
  /* 5 */
  -webkit-appearance: none;
  /* 6 */
  width: 120px;
  height: 30px;
  padding: 0 0 0 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  vertical-align: middle;
}
/* Placeholder */
.uk-search-field:-ms-input-placeholder {
  color: #999 !important;
}
.uk-search-field::-moz-placeholder {
  color: #999;
}
.uk-search-field::-webkit-input-placeholder {
  color: #999;
}
/* Focus */
.uk-search-field:focus {
  outline: 0;
}
/* Focus + Active */
.uk-search-field:focus,
.uk-search.uk-active .uk-search-field {
  width: 180px;
}
/* Dropdown modifier: `uk-dropdown-search`
 ========================================================================== */
.uk-dropdown-search {
  width: 300px;
  margin-top: 0;
  background: #fff;
  color: #444;
}
.uk-open > .uk-dropdown-search {
  -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  animation: uk-slide-top-fixed 0.2s ease-in-out;
}
/*
 * Dependency `uk-navbar-flip`
 */
.uk-navbar-flip .uk-dropdown-search {
  margin-top: 12px;
  margin-right: -16px;
}
/* Nav modifier `uk-nav-search`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-search > li > a {
  color: #444;
}
/*
 * Active
 * 1. Remove default focus style
 */
.uk-nav-search > li.uk-active > a {
  background: #00a8e6;
  color: #fff;
  /* 1 */
  outline: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-search .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-search .uk-nav-divider {
  border-top: 1px solid #ddd;
}
/*
 * Nested items
 */
.uk-nav-search ul a {
  color: #07D;
}
.uk-nav-search ul a:hover {
  color: #059;
}
/* Search in offcanvas
 ========================================================================== */
.uk-offcanvas .uk-search {
  display: block;
  margin: 20px 15px;
}
.uk-offcanvas .uk-search:before {
  color: #777;
}
.uk-offcanvas .uk-search-field {
  width: 100%;
  border-color: rgba(0, 0, 0, 0);
  background: #1a1a1a;
  color: #ccc;
}
.uk-offcanvas .uk-search-field:-ms-input-placeholder {
  color: #777 !important;
}
.uk-offcanvas .uk-search-field::-moz-placeholder {
  color: #777;
}
.uk-offcanvas .uk-search-field::-webkit-input-placeholder {
  color: #777;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-search{display:inline-block;position:relative;margin:0}.uk-search:before{content:"\f002";position:absolute;top:0;left:0;width:30px;line-height:30px;text-align:center;font-family:FontAwesome;font-size:14px;color:rgba(0,0,0,.2)}.uk-search-field::-moz-focus-inner{border:0;padding:0}.uk-search-field::-webkit-search-cancel-button,.uk-search-field::-webkit-search-decoration{-webkit-appearance:none}.uk-search-field::-ms-clear{display:none}.uk-search-field::-moz-placeholder{opacity:1}.uk-search-field{box-sizing:border-box;margin:0;border-radius:0;font:inherit;color:#444;-webkit-appearance:none;width:120px;height:30px;padding:0 0 0 30px;border:1px solid transparent;background:rgba(0,0,0,0);-webkit-transition:all .2s linear;transition:all .2s linear;vertical-align:middle}.uk-search-field:-ms-input-placeholder{color:#999!important}.uk-search-field::-moz-placeholder{color:#999}.uk-search-field::-webkit-input-placeholder{color:#999}.uk-search-field:focus{outline:0}.uk-search-field:focus,.uk-search.uk-active .uk-search-field{width:180px}.uk-dropdown-search{width:300px;margin-top:0;background:#fff;color:#444}.uk-open>.uk-dropdown-search{-webkit-animation:uk-slide-top-fixed .2s ease-in-out;animation:uk-slide-top-fixed .2s ease-in-out}.uk-navbar-flip .uk-dropdown-search{margin-top:12px;margin-right:-16px}.uk-nav-search>li>a{color:#444}.uk-nav-search>li.uk-active>a{background:#00a8e6;color:#fff;outline:0;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-nav-search .uk-nav-header{color:#999}.uk-nav-search .uk-nav-divider{border-top:1px solid #ddd}.uk-nav-search ul a{color:#07D}.uk-nav-search ul a:hover{color:#059}.uk-offcanvas .uk-search{display:block;margin:20px 15px}.uk-offcanvas .uk-search:before{color:#777}.uk-offcanvas .uk-search-field{width:100%;border-color:transparent;background:#1a1a1a;color:#ccc}.uk-offcanvas .uk-search-field:-ms-input-placeholder{color:#777!important}.uk-offcanvas .uk-search-field::-moz-placeholder{color:#777}.uk-offcanvas .uk-search-field::-webkit-input-placeholder{color:#777}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Create position context for dropdowns
 * 2. Needed for `form` element
 */
.uk-search {
  display: inline-block;
  /* 1 */
  position: relative;
  /* 2 */
  margin: 0;
}
/*
 * Icon
 */
.uk-search:before {
  content: "\f002";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  line-height: 30px;
  text-align: center;
  font-family: FontAwesome;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.2);
}
/* Sub-object `uk-search-field`
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-search-field::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.uk-search-field::-webkit-search-cancel-button,
.uk-search-field::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes cancel button in IE10
 */
.uk-search-field::-ms-clear {
  display: none;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-search-field::-moz-placeholder {
  opacity: 1;
}
/*
 * 1. Define consistent box sizing.
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 * 5. Remove default style in iOS.
 * 6. Style
 */
.uk-search-field {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: #444;
  /* 5 */
  -webkit-appearance: none;
  /* 6 */
  width: 120px;
  height: 30px;
  padding: 0 0 0 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  vertical-align: middle;
}
/* Placeholder */
.uk-search-field:-ms-input-placeholder {
  color: #999 !important;
}
.uk-search-field::-moz-placeholder {
  color: #999;
}
.uk-search-field::-webkit-input-placeholder {
  color: #999;
}
/* Focus */
.uk-search-field:focus {
  outline: 0;
}
/* Focus + Active */
.uk-search-field:focus,
.uk-search.uk-active .uk-search-field {
  width: 180px;
}
/* Dropdown modifier: `uk-dropdown-search`
 ========================================================================== */
.uk-dropdown-search {
  width: 300px;
  margin-top: 0;
  background: #f5f5f5;
  color: #444;
}
.uk-open > .uk-dropdown-search {
  -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  animation: uk-slide-top-fixed 0.2s ease-in-out;
}
/*
 * Dependency `uk-navbar-flip`
 */
.uk-navbar-flip .uk-dropdown-search {
  margin-top: 5px;
  margin-right: -15px;
}
/* Nav modifier `uk-nav-search`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-search > li > a {
  color: #444;
}
/*
 * Active
 * 1. Remove default focus style
 */
.uk-nav-search > li.uk-active > a {
  background: #00a8e6;
  color: #fff;
  /* 1 */
  outline: none;
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-search .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-search .uk-nav-divider {
  border-top: 1px solid #ddd;
}
/*
 * Nested items
 */
.uk-nav-search ul a {
  color: #07D;
}
.uk-nav-search ul a:hover {
  color: #059;
}
/* Search in offcanvas
 ========================================================================== */
.uk-offcanvas .uk-search {
  display: block;
  margin: 20px 15px;
}
.uk-offcanvas .uk-search:before {
  color: #777;
}
.uk-offcanvas .uk-search-field {
  width: 100%;
  border-color: rgba(0, 0, 0, 0);
  background: #1a1a1a;
  color: #ccc;
}
.uk-offcanvas .uk-search-field:-ms-input-placeholder {
  color: #777 !important;
}
.uk-offcanvas .uk-search-field::-moz-placeholder {
  color: #777;
}
.uk-offcanvas .uk-search-field::-webkit-input-placeholder {
  color: #777;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Create position context for dropdowns
 * 2. Needed for `form` element
 */
.uk-search {
  display: inline-block;
  /* 1 */
  position: relative;
  /* 2 */
  margin: 0;
}
/*
 * Icon
 */
.uk-search:before {
  content: "\f002";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  line-height: 30px;
  text-align: center;
  font-family: FontAwesome;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.2);
}
/* Sub-object `uk-search-field`
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-search-field::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.uk-search-field::-webkit-search-cancel-button,
.uk-search-field::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes cancel button in IE10
 */
.uk-search-field::-ms-clear {
  display: none;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-search-field::-moz-placeholder {
  opacity: 1;
}
/*
 * 1. Define consistent box sizing.
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 * 5. Remove default style in iOS.
 * 6. Style
 */
.uk-search-field {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: #444;
  /* 5 */
  -webkit-appearance: none;
  /* 6 */
  width: 120px;
  height: 30px;
  padding: 0 0 0 30px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  vertical-align: middle;
}
/* Placeholder */
.uk-search-field:-ms-input-placeholder {
  color: #999 !important;
}
.uk-search-field::-moz-placeholder {
  color: #999;
}
.uk-search-field::-webkit-input-placeholder {
  color: #999;
}
/* Focus */
.uk-search-field:focus {
  outline: 0;
}
/* Focus + Active */
.uk-search-field:focus,
.uk-search.uk-active .uk-search-field {
  width: 180px;
}
/* Dropdown modifier: `uk-dropdown-search`
 ========================================================================== */
.uk-dropdown-search {
  width: 300px;
  margin-top: 0;
  background: #fff;
  color: #444;
}
.uk-open > .uk-dropdown-search {
  -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  animation: uk-slide-top-fixed 0.2s ease-in-out;
}
/*
 * Dependency `uk-navbar-flip`
 */
.uk-navbar-flip .uk-dropdown-search {
  margin-top: 12px;
  margin-right: -16px;
}
/* Nav modifier `uk-nav-search`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-search > li > a {
  color: #444;
}
/*
 * Active
 * 1. Remove default focus style
 */
.uk-nav-search > li.uk-active > a {
  background: #009dd8;
  color: #fff;
  /* 1 */
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-search .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-search .uk-nav-divider {
  border-top: 1px solid #ddd;
}
/*
 * Nested items
 */
.uk-nav-search ul a {
  color: #07D;
}
.uk-nav-search ul a:hover {
  color: #059;
}
/* Search in offcanvas
 ========================================================================== */
.uk-offcanvas .uk-search {
  display: block;
  margin: 20px 15px;
}
.uk-offcanvas .uk-search:before {
  color: #777;
}
.uk-offcanvas .uk-search-field {
  width: 100%;
  border-color: rgba(0, 0, 0, 0);
  background: #1a1a1a;
  color: #ccc;
}
.uk-offcanvas .uk-search-field:-ms-input-placeholder {
  color: #777 !important;
}
.uk-offcanvas .uk-search-field::-moz-placeholder {
  color: #777;
}
.uk-offcanvas .uk-search-field::-webkit-input-placeholder {
  color: #777;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-search{display:inline-block;position:relative;margin:0}.uk-search:before{content:"\f002";position:absolute;top:0;left:0;width:30px;line-height:30px;text-align:center;font-family:FontAwesome;font-size:14px;color:rgba(0,0,0,.2)}.uk-search-field::-moz-focus-inner{border:0;padding:0}.uk-search-field::-webkit-search-cancel-button,.uk-search-field::-webkit-search-decoration{-webkit-appearance:none}.uk-search-field::-ms-clear{display:none}.uk-search-field::-moz-placeholder{opacity:1}.uk-search-field{box-sizing:border-box;margin:0;border-radius:0;font:inherit;color:#444;-webkit-appearance:none;width:120px;height:30px;padding:0 0 0 30px;border:1px solid transparent;background:rgba(0,0,0,0);-webkit-transition:all .2s linear;transition:all .2s linear;vertical-align:middle}.uk-search-field:-ms-input-placeholder{color:#999!important}.uk-search-field::-moz-placeholder{color:#999}.uk-search-field::-webkit-input-placeholder{color:#999}.uk-search-field:focus{outline:0}.uk-search-field:focus,.uk-search.uk-active .uk-search-field{width:180px}.uk-dropdown-search{width:300px;margin-top:0;background:#fff;color:#444}.uk-open>.uk-dropdown-search{-webkit-animation:uk-slide-top-fixed .2s ease-in-out;animation:uk-slide-top-fixed .2s ease-in-out}.uk-navbar-flip .uk-dropdown-search{margin-top:12px;margin-right:-16px}.uk-nav-search>li>a{color:#444}.uk-nav-search>li.uk-active>a{background:#009dd8;color:#fff;outline:0;box-shadow:inset 0 2px 4px rgba(0,0,0,.2);text-shadow:0 -1px 0 rgba(0,0,0,.2)}.uk-nav-search .uk-nav-header{color:#999}.uk-nav-search .uk-nav-divider{border-top:1px solid #ddd}.uk-nav-search ul a{color:#07D}.uk-nav-search ul a:hover{color:#059}.uk-offcanvas .uk-search{display:block;margin:20px 15px}.uk-offcanvas .uk-search:before{color:#777}.uk-offcanvas .uk-search-field{width:100%;border-color:transparent;background:#1a1a1a;color:#ccc}.uk-offcanvas .uk-search-field:-ms-input-placeholder{color:#777!important}.uk-offcanvas .uk-search-field::-moz-placeholder{color:#777}.uk-offcanvas .uk-search-field::-webkit-input-placeholder{color:#777}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-search{display:inline-block;position:relative;margin:0}.uk-search:before{content:"\f002";position:absolute;top:0;left:0;width:30px;line-height:30px;text-align:center;font-family:FontAwesome;font-size:14px;color:rgba(0,0,0,.2)}.uk-search-field::-moz-focus-inner{border:0;padding:0}.uk-search-field::-webkit-search-cancel-button,.uk-search-field::-webkit-search-decoration{-webkit-appearance:none}.uk-search-field::-ms-clear{display:none}.uk-search-field::-moz-placeholder{opacity:1}.uk-search-field{box-sizing:border-box;margin:0;border-radius:0;font:inherit;color:#444;-webkit-appearance:none;width:120px;height:30px;padding:0 0 0 30px;border:1px solid transparent;background:rgba(0,0,0,0);-webkit-transition:all .2s linear;transition:all .2s linear;vertical-align:middle}.uk-search-field:-ms-input-placeholder{color:#999!important}.uk-search-field::-moz-placeholder{color:#999}.uk-search-field::-webkit-input-placeholder{color:#999}.uk-search-field:focus{outline:0}.uk-search-field:focus,.uk-search.uk-active .uk-search-field{width:180px}.uk-dropdown-search{width:300px;margin-top:0;background:#f5f5f5;color:#444}.uk-open>.uk-dropdown-search{-webkit-animation:uk-slide-top-fixed .2s ease-in-out;animation:uk-slide-top-fixed .2s ease-in-out}.uk-navbar-flip .uk-dropdown-search{margin-top:5px;margin-right:-15px}.uk-nav-search>li>a{color:#444}.uk-nav-search>li.uk-active>a{background:#00a8e6;color:#fff;outline:0}.uk-nav-search .uk-nav-header{color:#999}.uk-nav-search .uk-nav-divider{border-top:1px solid #ddd}.uk-nav-search ul a{color:#07D}.uk-nav-search ul a:hover{color:#059}.uk-offcanvas .uk-search{display:block;margin:20px 15px}.uk-offcanvas .uk-search:before{color:#777}.uk-offcanvas .uk-search-field{width:100%;border-color:transparent;background:#1a1a1a;color:#ccc}.uk-offcanvas .uk-search-field:-ms-input-placeholder{color:#777!important}.uk-offcanvas .uk-search-field::-moz-placeholder{color:#777}.uk-offcanvas .uk-search-field::-webkit-input-placeholder{color:#777}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.uk-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  /* 3 */
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.uk-slidenav:hover,
.uk-slidenav:focus {
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  /* 4 */
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}
/* Active */
.uk-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}
/*
 * Icons
 */
.uk-slidenav-previous:before {
  content: "\f104";
  font-family: FontAwesome;
}
.uk-slidenav-next:before {
  content: "\f105";
  font-family: FontAwesome;
}
/* Sub-object: `uk-slidenav-position`
 ========================================================================== */
/*
 * Create position context
 */
.uk-slidenav-position {
  position: relative;
}
/*
 * Center vertically
 */
.uk-slidenav-position .uk-slidenav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}
.uk-slidenav-position:hover .uk-slidenav {
  display: block;
}
.uk-slidenav-position .uk-slidenav-previous {
  left: 20px;
}
.uk-slidenav-position .uk-slidenav-next {
  right: 20px;
}
/* Modifier: `uk-slidenav-contrast`
 ========================================================================== */
.uk-slidenav-contrast {
  color: rgba(255, 255, 255, 0.5);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-slidenav-contrast:hover,
.uk-slidenav-contrast:focus {
  color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-slidenav-contrast:active {
  color: rgba(255, 255, 255, 0.9);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-slidenav{display:inline-block;box-sizing:border-box;width:60px;height:60px;line-height:60px;color:rgba(50,50,50,.4);font-size:60px;text-align:center}.uk-slidenav:focus,.uk-slidenav:hover{outline:0;text-decoration:none;color:rgba(50,50,50,.7);cursor:pointer}.uk-slidenav:active{color:rgba(50,50,50,.9)}.uk-slidenav-previous:before{content:"\f104";font-family:FontAwesome}.uk-slidenav-next:before{content:"\f105";font-family:FontAwesome}.uk-slidenav-position{position:relative}.uk-slidenav-position .uk-slidenav{display:none;position:absolute;top:50%;z-index:1;margin-top:-30px}.uk-slidenav-position:hover .uk-slidenav{display:block}.uk-slidenav-position .uk-slidenav-previous{left:20px}.uk-slidenav-position .uk-slidenav-next{right:20px}.uk-slidenav-contrast{color:rgba(255,255,255,.5)}.uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover{color:rgba(255,255,255,.7)}.uk-slidenav-contrast:active{color:rgba(255,255,255,.9)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.uk-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  /* 3 */
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.uk-slidenav:hover,
.uk-slidenav:focus {
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  /* 4 */
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}
/* Active */
.uk-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}
/*
 * Icons
 */
.uk-slidenav-previous:before {
  content: "\f104";
  font-family: FontAwesome;
}
.uk-slidenav-next:before {
  content: "\f105";
  font-family: FontAwesome;
}
/* Sub-object: `uk-slidenav-position`
 ========================================================================== */
/*
 * Create position context
 */
.uk-slidenav-position {
  position: relative;
}
/*
 * Center vertically
 */
.uk-slidenav-position .uk-slidenav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}
.uk-slidenav-position:hover .uk-slidenav {
  display: block;
}
.uk-slidenav-position .uk-slidenav-previous {
  left: 20px;
}
.uk-slidenav-position .uk-slidenav-next {
  right: 20px;
}
/* Modifier: `uk-slidenav-contrast`
 ========================================================================== */
.uk-slidenav-contrast {
  color: rgba(255, 255, 255, 0.5);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-slidenav-contrast:hover,
.uk-slidenav-contrast:focus {
  color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-slidenav-contrast:active {
  color: rgba(255, 255, 255, 0.9);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.uk-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  /* 3 */
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.uk-slidenav:hover,
.uk-slidenav:focus {
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  /* 4 */
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}
/* Active */
.uk-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}
/*
 * Icons
 */
.uk-slidenav-previous:before {
  content: "\f104";
  font-family: FontAwesome;
}
.uk-slidenav-next:before {
  content: "\f105";
  font-family: FontAwesome;
}
/* Sub-object: `uk-slidenav-position`
 ========================================================================== */
/*
 * Create position context
 */
.uk-slidenav-position {
  position: relative;
}
/*
 * Center vertically
 */
.uk-slidenav-position .uk-slidenav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}
.uk-slidenav-position:hover .uk-slidenav {
  display: block;
}
.uk-slidenav-position .uk-slidenav-previous {
  left: 20px;
}
.uk-slidenav-position .uk-slidenav-next {
  right: 20px;
}
/* Modifier: `uk-slidenav-contrast`
 ========================================================================== */
.uk-slidenav-contrast {
  color: rgba(255, 255, 255, 0.5);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-slidenav-contrast:hover,
.uk-slidenav-contrast:focus {
  color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-slidenav-contrast:active {
  color: rgba(255, 255, 255, 0.9);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-slidenav{display:inline-block;box-sizing:border-box;width:60px;height:60px;line-height:60px;color:rgba(50,50,50,.4);font-size:60px;text-align:center}.uk-slidenav:focus,.uk-slidenav:hover{outline:0;text-decoration:none;color:rgba(50,50,50,.7);cursor:pointer}.uk-slidenav:active{color:rgba(50,50,50,.9)}.uk-slidenav-previous:before{content:"\f104";font-family:FontAwesome}.uk-slidenav-next:before{content:"\f105";font-family:FontAwesome}.uk-slidenav-position{position:relative}.uk-slidenav-position .uk-slidenav{display:none;position:absolute;top:50%;z-index:1;margin-top:-30px}.uk-slidenav-position:hover .uk-slidenav{display:block}.uk-slidenav-position .uk-slidenav-previous{left:20px}.uk-slidenav-position .uk-slidenav-next{right:20px}.uk-slidenav-contrast{color:rgba(255,255,255,.5)}.uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover{color:rgba(255,255,255,.7)}.uk-slidenav-contrast:active{color:rgba(255,255,255,.9)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-slidenav{display:inline-block;box-sizing:border-box;width:60px;height:60px;line-height:60px;color:rgba(50,50,50,.4);font-size:60px;text-align:center}.uk-slidenav:focus,.uk-slidenav:hover{outline:0;text-decoration:none;color:rgba(50,50,50,.7);cursor:pointer}.uk-slidenav:active{color:rgba(50,50,50,.9)}.uk-slidenav-previous:before{content:"\f104";font-family:FontAwesome}.uk-slidenav-next:before{content:"\f105";font-family:FontAwesome}.uk-slidenav-position{position:relative}.uk-slidenav-position .uk-slidenav{display:none;position:absolute;top:50%;z-index:1;margin-top:-30px}.uk-slidenav-position:hover .uk-slidenav{display:block}.uk-slidenav-position .uk-slidenav-previous{left:20px}.uk-slidenav-position .uk-slidenav-next{right:20px}.uk-slidenav-contrast{color:rgba(255,255,255,.5)}.uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover{color:rgba(255,255,255,.7)}.uk-slidenav-contrast:active{color:rgba(255,255,255,.9)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * RTL Compatibility
 */
[data-uk-slider] {
  direction: ltr;
}
html[dir="rtl"] .uk-slider > * {
  direction: rtl;
}
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.uk-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 */
.uk-slider:not(.uk-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Sub-object item
 * 1. Position items above each other
 */
.uk-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}
/*
 * Dragged
 */
.uk-slider:not(.uk-drag) {
  -webkit-transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
}
/*
 * 1. Makes text unselectable
 */
.uk-slider.uk-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-slider a,
.uk-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.uk-slider img {
  pointer-events: none;
}
/* Modifier: `uk-slider-fullscreen`
 ========================================================================== */
.uk-slider-fullscreen,
.uk-slider-fullscreen > li {
  height: 100vh;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
[data-uk-slider]{direction:ltr}html[dir=rtl] .uk-slider>*{direction:rtl}.uk-slider{position:relative;z-index:0;touch-action:pan-y}.uk-slider:not(.uk-grid){margin:0;padding:0;list-style:none}.uk-slider>*{position:absolute;top:0;left:0}.uk-slider-container{overflow:hidden}.uk-slider:not(.uk-drag){-webkit-transition:-webkit-transform .2s linear;transition:transform .2s linear}.uk-slider.uk-drag{cursor:col-resize;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-slider a,.uk-slider img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}.uk-slider img{pointer-events:none}.uk-slider-fullscreen,.uk-slider-fullscreen>li{height:100vh}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * RTL Compatibility
 */
[data-uk-slider] {
  direction: ltr;
}
html[dir="rtl"] .uk-slider > * {
  direction: rtl;
}
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.uk-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 */
.uk-slider:not(.uk-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Sub-object item
 * 1. Position items above each other
 */
.uk-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}
/*
 * Dragged
 */
.uk-slider:not(.uk-drag) {
  -webkit-transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
}
/*
 * 1. Makes text unselectable
 */
.uk-slider.uk-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-slider a,
.uk-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.uk-slider img {
  pointer-events: none;
}
/* Modifier: `uk-slider-fullscreen`
 ========================================================================== */
.uk-slider-fullscreen,
.uk-slider-fullscreen > li {
  height: 100vh;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * RTL Compatibility
 */
[data-uk-slider] {
  direction: ltr;
}
html[dir="rtl"] .uk-slider > * {
  direction: rtl;
}
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.uk-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 */
.uk-slider:not(.uk-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Sub-object item
 * 1. Position items above each other
 */
.uk-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}
/*
 * Dragged
 */
.uk-slider:not(.uk-drag) {
  -webkit-transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
}
/*
 * 1. Makes text unselectable
 */
.uk-slider.uk-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-slider a,
.uk-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.uk-slider img {
  pointer-events: none;
}
/* Modifier: `uk-slider-fullscreen`
 ========================================================================== */
.uk-slider-fullscreen,
.uk-slider-fullscreen > li {
  height: 100vh;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
[data-uk-slider]{direction:ltr}html[dir=rtl] .uk-slider>*{direction:rtl}.uk-slider{position:relative;z-index:0;touch-action:pan-y}.uk-slider:not(.uk-grid){margin:0;padding:0;list-style:none}.uk-slider>*{position:absolute;top:0;left:0}.uk-slider-container{overflow:hidden}.uk-slider:not(.uk-drag){-webkit-transition:-webkit-transform .2s linear;transition:transform .2s linear}.uk-slider.uk-drag{cursor:col-resize;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-slider a,.uk-slider img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}.uk-slider img{pointer-events:none}.uk-slider-fullscreen,.uk-slider-fullscreen>li{height:100vh}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
[data-uk-slider]{direction:ltr}html[dir=rtl] .uk-slider>*{direction:rtl}.uk-slider{position:relative;z-index:0;touch-action:pan-y}.uk-slider:not(.uk-grid){margin:0;padding:0;list-style:none}.uk-slider>*{position:absolute;top:0;left:0}.uk-slider-container{overflow:hidden}.uk-slider:not(.uk-drag){-webkit-transition:-webkit-transform .2s linear;transition:transform .2s linear}.uk-slider.uk-drag{cursor:col-resize;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-slider a,.uk-slider img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}.uk-slider img{pointer-events:none}.uk-slider-fullscreen,.uk-slider-fullscreen>li{height:100vh}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.uk-slideshow {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  touch-action: pan-y;
}
/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.uk-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}
/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.uk-slideshow > .uk-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}
/*
 * Hide default images which is only relevant to keep existing proportions
 */
.uk-slideshow > li > img {
  visibility: hidden;
}
/*
 * Pointer for controls
 */
[data-uk-slideshow-slide] {
  cursor: pointer;
}
/* Modifier: `uk-slideshow-fullscreen`
 ========================================================================== */
.uk-slideshow-fullscreen,
.uk-slideshow-fullscreen > li {
  height: 100vh;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-slideshow-fade-in {
  -webkit-animation: uk-fade 0.5s linear;
  animation: uk-fade 0.5s linear;
}
.uk-slideshow-fade-out {
  -webkit-animation: uk-fade 0.5s linear reverse;
  animation: uk-fade 0.5s linear reverse;
}
/*
 * Scroll
 */
.uk-slideshow-scroll-forward-in {
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
  animation: uk-slide-right 0.5s ease-in-out;
}
.uk-slideshow-scroll-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-scroll-backward-in {
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
  animation: uk-slide-left 0.5s ease-in-out;
}
.uk-slideshow-scroll-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
/*
 * Scale
 */
.uk-slideshow-scale-out {
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
}
/*
 * Swipe
 */
.uk-slideshow-swipe-forward-in {
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  animation: uk-slide-left-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-backward-in {
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  animation: uk-slide-right-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-forward-in:before,
.uk-slideshow-swipe-backward-in:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  animation: uk-fade 0.5s ease-in-out reverse;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-slideshow{position:relative;z-index:0;width:100%;margin:0;padding:0;list-style:none;overflow:hidden;touch-action:pan-y}.uk-slideshow>li{position:absolute;top:0;left:0;width:100%;opacity:0}.uk-slideshow>.uk-active{z-index:10;opacity:1}.uk-slideshow>li>img{visibility:hidden}[data-uk-slideshow-slide]{cursor:pointer}.uk-slideshow-fullscreen,.uk-slideshow-fullscreen>li{height:100vh}.uk-slideshow-fade-in{-webkit-animation:uk-fade .5s linear;animation:uk-fade .5s linear}.uk-slideshow-fade-out{-webkit-animation:uk-fade .5s linear reverse;animation:uk-fade .5s linear reverse}.uk-slideshow-scroll-forward-in{-webkit-animation:uk-slide-right .5s ease-in-out;animation:uk-slide-right .5s ease-in-out}.uk-slideshow-scroll-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-scroll-backward-in{-webkit-animation:uk-slide-left .5s ease-in-out;animation:uk-slide-left .5s ease-in-out}.uk-slideshow-scroll-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-scale-out{-webkit-animation:uk-fade-scale-15 .5s ease-in-out reverse;animation:uk-fade-scale-15 .5s ease-in-out reverse}.uk-slideshow-swipe-forward-in{-webkit-animation:uk-slide-left-33 .5s ease-in-out;animation:uk-slide-left-33 .5s ease-in-out}.uk-slideshow-swipe-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in{-webkit-animation:uk-slide-right-33 .5s ease-in-out;animation:uk-slide-right-33 .5s ease-in-out}.uk-slideshow-swipe-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in:before,.uk-slideshow-swipe-forward-in:before{content:'';position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:rgba(0,0,0,.6);-webkit-animation:uk-fade .5s ease-in-out reverse;animation:uk-fade .5s ease-in-out reverse}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.uk-slideshow {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  touch-action: pan-y;
}
/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.uk-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}
/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.uk-slideshow > .uk-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}
/*
 * Hide default images which is only relevant to keep existing proportions
 */
.uk-slideshow > li > img {
  visibility: hidden;
}
/*
 * Pointer for controls
 */
[data-uk-slideshow-slide] {
  cursor: pointer;
}
/* Modifier: `uk-slideshow-fullscreen`
 ========================================================================== */
.uk-slideshow-fullscreen,
.uk-slideshow-fullscreen > li {
  height: 100vh;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-slideshow-fade-in {
  -webkit-animation: uk-fade 0.5s linear;
  animation: uk-fade 0.5s linear;
}
.uk-slideshow-fade-out {
  -webkit-animation: uk-fade 0.5s linear reverse;
  animation: uk-fade 0.5s linear reverse;
}
/*
 * Scroll
 */
.uk-slideshow-scroll-forward-in {
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
  animation: uk-slide-right 0.5s ease-in-out;
}
.uk-slideshow-scroll-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-scroll-backward-in {
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
  animation: uk-slide-left 0.5s ease-in-out;
}
.uk-slideshow-scroll-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
/*
 * Scale
 */
.uk-slideshow-scale-out {
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
}
/*
 * Swipe
 */
.uk-slideshow-swipe-forward-in {
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  animation: uk-slide-left-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-backward-in {
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  animation: uk-slide-right-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-forward-in:before,
.uk-slideshow-swipe-backward-in:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  animation: uk-fade 0.5s ease-in-out reverse;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.uk-slideshow {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  touch-action: pan-y;
}
/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.uk-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}
/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.uk-slideshow > .uk-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}
/*
 * Hide default images which is only relevant to keep existing proportions
 */
.uk-slideshow > li > img {
  visibility: hidden;
}
/*
 * Pointer for controls
 */
[data-uk-slideshow-slide] {
  cursor: pointer;
}
/* Modifier: `uk-slideshow-fullscreen`
 ========================================================================== */
.uk-slideshow-fullscreen,
.uk-slideshow-fullscreen > li {
  height: 100vh;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-slideshow-fade-in {
  -webkit-animation: uk-fade 0.5s linear;
  animation: uk-fade 0.5s linear;
}
.uk-slideshow-fade-out {
  -webkit-animation: uk-fade 0.5s linear reverse;
  animation: uk-fade 0.5s linear reverse;
}
/*
 * Scroll
 */
.uk-slideshow-scroll-forward-in {
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
  animation: uk-slide-right 0.5s ease-in-out;
}
.uk-slideshow-scroll-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-scroll-backward-in {
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
  animation: uk-slide-left 0.5s ease-in-out;
}
.uk-slideshow-scroll-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
/*
 * Scale
 */
.uk-slideshow-scale-out {
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
}
/*
 * Swipe
 */
.uk-slideshow-swipe-forward-in {
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  animation: uk-slide-left-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-backward-in {
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  animation: uk-slide-right-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-forward-in:before,
.uk-slideshow-swipe-backward-in:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  animation: uk-fade 0.5s ease-in-out reverse;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-slideshow{position:relative;z-index:0;width:100%;margin:0;padding:0;list-style:none;overflow:hidden;touch-action:pan-y}.uk-slideshow>li{position:absolute;top:0;left:0;width:100%;opacity:0}.uk-slideshow>.uk-active{z-index:10;opacity:1}.uk-slideshow>li>img{visibility:hidden}[data-uk-slideshow-slide]{cursor:pointer}.uk-slideshow-fullscreen,.uk-slideshow-fullscreen>li{height:100vh}.uk-slideshow-fade-in{-webkit-animation:uk-fade .5s linear;animation:uk-fade .5s linear}.uk-slideshow-fade-out{-webkit-animation:uk-fade .5s linear reverse;animation:uk-fade .5s linear reverse}.uk-slideshow-scroll-forward-in{-webkit-animation:uk-slide-right .5s ease-in-out;animation:uk-slide-right .5s ease-in-out}.uk-slideshow-scroll-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-scroll-backward-in{-webkit-animation:uk-slide-left .5s ease-in-out;animation:uk-slide-left .5s ease-in-out}.uk-slideshow-scroll-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-scale-out{-webkit-animation:uk-fade-scale-15 .5s ease-in-out reverse;animation:uk-fade-scale-15 .5s ease-in-out reverse}.uk-slideshow-swipe-forward-in{-webkit-animation:uk-slide-left-33 .5s ease-in-out;animation:uk-slide-left-33 .5s ease-in-out}.uk-slideshow-swipe-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in{-webkit-animation:uk-slide-right-33 .5s ease-in-out;animation:uk-slide-right-33 .5s ease-in-out}.uk-slideshow-swipe-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in:before,.uk-slideshow-swipe-forward-in:before{content:'';position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:rgba(0,0,0,.6);-webkit-animation:uk-fade .5s ease-in-out reverse;animation:uk-fade .5s ease-in-out reverse}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-slideshow{position:relative;z-index:0;width:100%;margin:0;padding:0;list-style:none;overflow:hidden;touch-action:pan-y}.uk-slideshow>li{position:absolute;top:0;left:0;width:100%;opacity:0}.uk-slideshow>.uk-active{z-index:10;opacity:1}.uk-slideshow>li>img{visibility:hidden}[data-uk-slideshow-slide]{cursor:pointer}.uk-slideshow-fullscreen,.uk-slideshow-fullscreen>li{height:100vh}.uk-slideshow-fade-in{-webkit-animation:uk-fade .5s linear;animation:uk-fade .5s linear}.uk-slideshow-fade-out{-webkit-animation:uk-fade .5s linear reverse;animation:uk-fade .5s linear reverse}.uk-slideshow-scroll-forward-in{-webkit-animation:uk-slide-right .5s ease-in-out;animation:uk-slide-right .5s ease-in-out}.uk-slideshow-scroll-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-scroll-backward-in{-webkit-animation:uk-slide-left .5s ease-in-out;animation:uk-slide-left .5s ease-in-out}.uk-slideshow-scroll-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-scale-out{-webkit-animation:uk-fade-scale-15 .5s ease-in-out reverse;animation:uk-fade-scale-15 .5s ease-in-out reverse}.uk-slideshow-swipe-forward-in{-webkit-animation:uk-slide-left-33 .5s ease-in-out;animation:uk-slide-left-33 .5s ease-in-out}.uk-slideshow-swipe-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in{-webkit-animation:uk-slide-right-33 .5s ease-in-out;animation:uk-slide-right-33 .5s ease-in-out}.uk-slideshow-swipe-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in:before,.uk-slideshow-swipe-forward-in:before{content:'';position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:rgba(0,0,0,.6);-webkit-animation:uk-fade .5s ease-in-out reverse;animation:uk-fade .5s ease-in-out reverse}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable > * {
  touch-action: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-sortable a,
.uk-sortable img {
  -webkit-touch-callout: none;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Sub-modifier `uk-sortable-dragged`
 ========================================================================== */
.uk-sortable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
}
/* Sub-modifier `uk-sortable-placeholder`
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
}
/* Empty List
 ========================================================================== */
.uk-sortable-empty {
  min-height: 30px;
}
/* Sub-object `uk-sortable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable-handle {
  touch-action: none;
}
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-sortable-moving`
 ========================================================================== */
.uk-sortable-moving,
.uk-sortable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
  pointer-events: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-sortable{position:relative}.uk-sortable>*{touch-action:none}.uk-sortable a,.uk-sortable img{-webkit-touch-callout:none}.uk-sortable>:last-child{margin-bottom:0}.uk-sortable-dragged{position:absolute;z-index:1050;pointer-events:none}.uk-sortable-placeholder{opacity:0}.uk-sortable-empty{min-height:30px}.uk-sortable-handle{touch-action:none}.uk-sortable-handle:hover{cursor:move}.uk-sortable-moving,.uk-sortable-moving *{cursor:move}.uk-sortable-moving iframe{pointer-events:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable > * {
  touch-action: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-sortable a,
.uk-sortable img {
  -webkit-touch-callout: none;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Sub-modifier `uk-sortable-dragged`
 ========================================================================== */
.uk-sortable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
}
/* Sub-modifier `uk-sortable-placeholder`
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
}
/* Empty List
 ========================================================================== */
.uk-sortable-empty {
  min-height: 30px;
}
/* Sub-object `uk-sortable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable-handle {
  touch-action: none;
}
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-sortable-moving`
 ========================================================================== */
.uk-sortable-moving,
.uk-sortable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
  pointer-events: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable > * {
  touch-action: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-sortable a,
.uk-sortable img {
  -webkit-touch-callout: none;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Sub-modifier `uk-sortable-dragged`
 ========================================================================== */
.uk-sortable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
}
/* Sub-modifier `uk-sortable-placeholder`
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
}
/* Empty List
 ========================================================================== */
.uk-sortable-empty {
  min-height: 30px;
}
/* Sub-object `uk-sortable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable-handle {
  touch-action: none;
}
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-sortable-moving`
 ========================================================================== */
.uk-sortable-moving,
.uk-sortable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
  pointer-events: none;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-sortable{position:relative}.uk-sortable>*{touch-action:none}.uk-sortable a,.uk-sortable img{-webkit-touch-callout:none}.uk-sortable>:last-child{margin-bottom:0}.uk-sortable-dragged{position:absolute;z-index:1050;pointer-events:none}.uk-sortable-placeholder{opacity:0}.uk-sortable-empty{min-height:30px}.uk-sortable-handle{touch-action:none}.uk-sortable-handle:hover{cursor:move}.uk-sortable-moving,.uk-sortable-moving *{cursor:move}.uk-sortable-moving iframe{pointer-events:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-sortable{position:relative}.uk-sortable>*{touch-action:none}.uk-sortable a,.uk-sortable img{-webkit-touch-callout:none}.uk-sortable>:last-child{margin-bottom:0}.uk-sortable-dragged{position:absolute;z-index:1050;pointer-events:none}.uk-sortable-placeholder{opacity:0}.uk-sortable-empty{min-height:30px}.uk-sortable-handle{touch-action:none}.uk-sortable-handle:hover{cursor:move}.uk-sortable-moving,.uk-sortable-moving *{cursor:move}.uk-sortable-moving iframe{pointer-events:none}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. More robust if padding and border are used
 * 2. Enable hardware acceleration for iOS browsers, resolves scrolling issue
 */
[data-uk-sticky].uk-active {
  z-index: 980;
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  -webkit-backface-visibility: hidden;
}
/*
 * Faster animations
 */
[data-uk-sticky][class*='uk-animation-'] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
[data-uk-sticky].uk-animation-reverse {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
[data-uk-sticky].uk-active{z-index:980;box-sizing:border-box;-webkit-backface-visibility:hidden}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.2s;animation-duration:.2s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.2s;animation-duration:.2s}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. More robust if padding and border are used
 * 2. Enable hardware acceleration for iOS browsers, resolves scrolling issue
 */
[data-uk-sticky].uk-active {
  z-index: 980;
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  -webkit-backface-visibility: hidden;
}
/*
 * Faster animations
 */
[data-uk-sticky][class*='uk-animation-'] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
[data-uk-sticky].uk-animation-reverse {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. More robust if padding and border are used
 * 2. Enable hardware acceleration for iOS browsers, resolves scrolling issue
 */
[data-uk-sticky].uk-active {
  z-index: 980;
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  -webkit-backface-visibility: hidden;
}
/*
 * Faster animations
 */
[data-uk-sticky][class*='uk-animation-'] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
[data-uk-sticky].uk-animation-reverse {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
[data-uk-sticky].uk-active{z-index:980;box-sizing:border-box;-webkit-backface-visibility:hidden}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.2s;animation-duration:.2s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.2s;animation-duration:.2s}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
[data-uk-sticky].uk-active{z-index:980;box-sizing:border-box;-webkit-backface-visibility:hidden}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.2s;animation-duration:.2s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.2s;animation-duration:.2s}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 5px 8px;
  /* 4 */
  background: #333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.uk-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333;
}
/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.uk-tooltip-top:after,
.uk-tooltip-top-left:after,
.uk-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333;
}
/*
 * Bottom
 */
.uk-tooltip-bottom:after,
.uk-tooltip-bottom-left:after,
.uk-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333;
}
/*
 * Top/Bottom center
 */
.uk-tooltip-top:after,
.uk-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}
/*
 * Top/Bottom left
 */
.uk-tooltip-top-left:after,
.uk-tooltip-bottom-left:after {
  left: 10px;
}
/*
 * Top/Bottom right
 */
.uk-tooltip-top-right:after,
.uk-tooltip-bottom-right:after {
  right: 10px;
}
/*
 * Left
 */
.uk-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
/*
 * Right
 */
.uk-tooltip-right:after {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: #333;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-tooltip{display:none;position:absolute;z-index:1030;box-sizing:border-box;max-width:200px;padding:5px 8px;background:#333;color:rgba(255,255,255,.7);font-size:12px;line-height:18px;border-radius:3px;text-shadow:0 1px 0 rgba(0,0,0,.5)}.uk-tooltip:after{content:"";display:block;position:absolute;width:0;height:0;border:5px dashed #333}.uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after{bottom:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-color:#333}.uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after{top:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent;border-bottom-color:#333}.uk-tooltip-bottom:after,.uk-tooltip-top:after{left:50%;margin-left:-5px}.uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after{left:10px}.uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after{right:10px}.uk-tooltip-left:after{right:-5px;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent;border-left-color:#333}.uk-tooltip-right:after{left:-5px;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent;border-right-color:#333}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 5px 8px;
  /* 4 */
  background: #333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
}
/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.uk-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333;
}
/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.uk-tooltip-top:after,
.uk-tooltip-top-left:after,
.uk-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333;
}
/*
 * Bottom
 */
.uk-tooltip-bottom:after,
.uk-tooltip-bottom-left:after,
.uk-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333;
}
/*
 * Top/Bottom center
 */
.uk-tooltip-top:after,
.uk-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}
/*
 * Top/Bottom left
 */
.uk-tooltip-top-left:after,
.uk-tooltip-bottom-left:after {
  left: 10px;
}
/*
 * Top/Bottom right
 */
.uk-tooltip-top-right:after,
.uk-tooltip-bottom-right:after {
  right: 10px;
}
/*
 * Left
 */
.uk-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
/*
 * Right
 */
.uk-tooltip-right:after {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: #333;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 5px 8px;
  /* 4 */
  background: #333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.uk-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333;
}
/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.uk-tooltip-top:after,
.uk-tooltip-top-left:after,
.uk-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333;
}
/*
 * Bottom
 */
.uk-tooltip-bottom:after,
.uk-tooltip-bottom-left:after,
.uk-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333;
}
/*
 * Top/Bottom center
 */
.uk-tooltip-top:after,
.uk-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}
/*
 * Top/Bottom left
 */
.uk-tooltip-top-left:after,
.uk-tooltip-bottom-left:after {
  left: 10px;
}
/*
 * Top/Bottom right
 */
.uk-tooltip-top-right:after,
.uk-tooltip-bottom-right:after {
  right: 10px;
}
/*
 * Left
 */
.uk-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
/*
 * Right
 */
.uk-tooltip-right:after {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: #333;
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-tooltip{display:none;position:absolute;z-index:1030;box-sizing:border-box;max-width:200px;padding:5px 8px;background:#333;color:rgba(255,255,255,.7);font-size:12px;line-height:18px;border-radius:3px;text-shadow:0 1px 0 rgba(0,0,0,.5)}.uk-tooltip:after{content:"";display:block;position:absolute;width:0;height:0;border:5px dashed #333}.uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after{bottom:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-color:#333}.uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after{top:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent;border-bottom-color:#333}.uk-tooltip-bottom:after,.uk-tooltip-top:after{left:50%;margin-left:-5px}.uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after{left:10px}.uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after{right:10px}.uk-tooltip-left:after{right:-5px;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent;border-left-color:#333}.uk-tooltip-right:after{left:-5px;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent;border-right-color:#333}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-tooltip{display:none;position:absolute;z-index:1030;box-sizing:border-box;max-width:200px;padding:5px 8px;background:#333;color:rgba(255,255,255,.7);font-size:12px;line-height:18px}.uk-tooltip:after{content:"";display:block;position:absolute;width:0;height:0;border:5px dashed #333}.uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after{bottom:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-color:#333}.uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after{top:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent;border-bottom-color:#333}.uk-tooltip-bottom:after,.uk-tooltip-top:after{left:50%;margin-left:-5px}.uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after{left:10px}.uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after{right:10px}.uk-tooltip-left:after{right:-5px;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent;border-left-color:#333}.uk-tooltip-right:after{left:-5px;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent;border-right-color:#333}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Upload
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Upload
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Upload
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 !important;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 140px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }

  .daterangepicker {
    direction: ltr;
    text-align: left;
  }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }

  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}

@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }

  .daterangepicker .ranges {
    float: left;
  }

  .daterangepicker.rtl .ranges {
    float: right;
  }

  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}

/**
 * FileUploader
 * Copyright (c) 2017 Innostudio.de
 * Website: http://innostudio.de/fileuploader/
 * Version: 1.0.0.5 (15-Jun-2017)
 * Requires: jQuery v1.7.1 or later
 * License: http://innostudio.de/fileuploader/documentation/#license
 */

/* 
    Configuration
*/
.fileuploader,
.fileuploader *,
.fileuploader :before,
.fileuploader :after {
    box-sizing: border-box;
}

/* 
    Parent
*/
.fileuploader {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    background: #f5f6fA;
    border-radius: 4px;
    line-height: normal;
    text-align: left;
    overflow: hidden;
}

/* 
    Input
*/
.fileuploader-input {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

/* input caption */
.fileuploader-input-caption {
    position: relative;
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 10px 15px;
    margin-right: 15px;
    background: #fff;
    border: 1px solid #dde4f6;
    border-radius: 4px;
    color: #94a2e8;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

/* input button */
.fileuploader-input-button {
    display: inline-block;
    background: #687ddb;
    padding: 11px 20px;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    vertical-align: top;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.fileuploader-input-button:hover {
    background: #7b90ef;
}
.fileuploader-input-button:active {
    background: #687ddb;
    box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* input focused state */
.fileuploader-focused .fileuploader-input-caption {
    border-color: #b8c2ef;
}
.fileuploader-focused .fileuploader-input-button {
    background: #7b90ef;
    border-color: #7b90ef;
}

/* input disabled state */
.fileuploader-disabled .fileuploader-input {
    opacity: 0.7;
    cursor: default;
    pointer-events: none !important;
}

/* input dragging state */
.fileuploader-theme-default .fileuploader-dragging {
    background: #fff;
    border: 1px dashed #dde4f6;
}
.fileuploader-theme-default .fileuploader-dragging .fileuploader-input-caption {
    border-color: transparent;
}
.fileuploader-theme-default .fileuploader-dragging .fileuploader-input-button {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
}

/* input uploading state */
.fileuploader.fileuploader-is-uploading .fileuploader-input-caption:after {
    width: 14px;
    height: 14px;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    opacity: 0.8;
}

/* global loader */
.fileuploader.fileuploader-is-uploading .fileuploader-input-caption:after,
.fileuploader-item .fileuploader-item-image.fileuploader-loading:after,
.fileuploader-item.upload-pending .fileuploader-action-remove:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-top: 3px solid #dde4f6;
    border-right: 3px solid #dde4f6;
    border-bottom: 3px solid #dde4f6;
    border-left: 3px solid #979fb8;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: fileuploaderSpin 1s infinite linear;
    animation: fileuploaderSpin 1s infinite linear;
}
/*
    Thumbnails
    default theme
*/

/* list */
.fileuploader-items-list {
    display: block;
    margin: 0 -15px;
    padding: 0;
    list-style: none;
}

/* item */
.fileuploader-item {
    position: relative;
    margin: 0;
    padding: 20px 15px;
    border-bottom: 1px solid #e8e8e8;
    -webkit-animation: fileuploaderSlideIn 0.4s ease;
    animation: fileuploaderSlideIn 0.4s ease;
}
.fileuploader-item:last-child {
    border-bottom: 0;
    margin-bottom: -15px;
}

/* item uploading state */
.fileuploader-item.upload-failed {
    background: rgba(219, 104, 104, 0.08);
}
.fileuploader-item.upload-pending .fileuploader-action-remove:after {
    width: 26px;
    height: 26px;
    right: -5px;
    top: 50%;
    margin-top: -13px;
    opacity: 0.2;
}

/* item columns */
.fileuploader-item .columns {
    position: relative;
    z-index: 2;
}

/* item column-thumbnail */
.fileuploader-item .column-thumbnail {
    position: absolute;
    width: 36px;
    height: 36px;
	line-height: 36px;
    left: 0;
    top: 0;
}
.fileuploader-item .column-thumbnail .fileuploader-item-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.fileuploader-item .fileuploader-item-image img,
.fileuploader-item .fileuploader-item-image canvas {
    border-radius: 4px;
    -webkit-animation: fileuploaderFadeIn .2s ease;
            animation: fileuploaderFadeIn .2s ease;
}

/* thumbnail loading state */
.fileuploader-item .column-thumbnail .fileuploader-item-image.fileuploader-loading:after {
    width: 24px;
    height: 24px;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -12px;
    border-radius: 50%;
    opacity: 0.12;
}

/* item icon */
.fileuploader-item .fileuploader-item-icon {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-size: 11px;
    background: #ddd;
    border-radius: 4px;
    -webkit-animation: fileuploaderFadeIn .2s ease;
    animation: fileuploaderFadeIn .2s ease;
}
.fileuploader-item .fileuploader-item-icon.is-bright-color {
    color: #888;
}
.fileuploader-item .fileuploader-item-icon i {
    display: block;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: bold;
}

/* item icon like file */
/*
.fileuploader-item .fileuploader-item-icon {
    width: 30px;
    margin: 0 auto;
    border-radius: 3px;
}
.fileuploader-item .fileuploader-item-icon i {
    padding-top: 3px;
}
.fileuploader-item .fileuploader-item-icon:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom-left-radius: 2px;
    border-width: 4px;
    border-style: solid;
    border-color: #f5f6fa #f5f6fa rgba(255, 255, 255, .35) rgba(255, 255, 255, .35);
}
.fileuploader-item .fileuploader-item-icon {
    -webkit-animation: fileuploaderFadeIn 0.4s ease;
    animation: fileuploaderFadeIn 0.4s ease;
}
*/

/* item column-title */
.fileuploader-item .column-title {
    display: block;
    padding-left: 51px;
    padding-right: 81px;
    color: #74809D;
}
.fileuploader-item a {
    color: #74809D;
    text-decoration: none;
}
.fileuploader-item .column-title div {
    width: 100%;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.fileuploader-item .column-title span {
    font-size: 12px;
    color: #979fb8;
}

/* item actions */
.fileuploader-item .column-actions {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -9px;
}
.fileuploader-action {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: top;
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.fileuploader-item .column-actions .fileuploader-action + .fileuploader-action {
    margin-left: 10px;
}
.fileuploader-item .column-actions .fileuploader-action-success {
    position: absolute;
    right: 0;
    top: 0;
}
.fileuploader-item .column-actions .fileuploader-action-success:hover,
.fileuploader-item .column-actions .fileuploader-action-success:active {
    opacity: 0;
}

/* icon.remove */
.fileuploader-action-remove {
    background: #fae1e1;
    border: 1px solid #ffcfcf;
}
.fileuploader-action-remove:hover {
    background: #ffefef;
}
.fileuploader-action-remove:active {
    background: #ffcfcf;
}
.fileuploader-action-remove i:before,
.fileuploader-action-remove i:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    height: 8px;
    width: 2px;
    background-color: #f59595;
}
.fileuploader-action-remove i:before {
    -webkit-transform: rotate(45deg);
    		transform: rotate(45deg);
}
.fileuploader-action-remove i:after {
    -webkit-transform: rotate(-45deg);
    		transform: rotate(-45deg);
}

/* icon-start */
.fileuploader-action-start {
    background: #687ddb;
    border-radius: 50%;
}
.fileuploader-action-start i {
	position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -2px;
    margin-top: -5px;
    border-radius: 2px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
}
.fileuploader-action-start:hover {
    background: #7b90ef;
}
.fileuploader-action-start:active {
    background: #687ddb;
    box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* icon.success */
.fileuploader-action-success {
    background: #687ddb;
    border: 0;
    -webkit-transform: rotate(45deg);
    		transform: rotate(45deg);
}
.fileuploader-action-success i:before,
.fileuploader-action-success i:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	-webkit-transform: rotate(0);
    		transform: rotate(0);
}
.fileuploader-action-success i:before {
    width: 4px;
    height: 2px;
    left: 6px;
    top: 11px;
    background: #fff;
}
.fileuploader-action-success i:after {
    top: 4px;
    left: 9px;
    width: 2px;
    height: 9px;
    background: #fff;
}

/* icon-download */
.fileuploader-action-download {
    background: #687ddb;
    border-radius: 50%;
}
.fileuploader-action-download i {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -1px;
    margin-top: -4px;
    width: 2px;
    height: 5px;
    border-radius: 0;
    background: #fff;
}
.fileuploader-action-download i:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: -4px;
    left: -3px;
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-top: 5px solid #fff;
    border-radius: 2px;
}
.fileuploader-action-download:hover {
    background: #7b90ef;
}
.fileuploader-action-download:active {
    background: #687ddb;
    box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* icon-retry */
.fileuploader-action-retry {
    background: #687ddb;
    border-radius: 50%;
}
.fileuploader-action-retry i:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.fileuploader-action-retry i:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 3px;
    left: 3px;
    top: 9px;
    background: #687ddb;
}
.fileuploader-action-retry:hover,
.fileuploader-action-retry:hover i:after {
    background: #7b90ef;
}
.fileuploader-action-retry:active,
.fileuploader-action-retry:active i:after {
    background: #687ddb;
    box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* item progress bar */
.fileuploader-item .fileuploader-progressbar {
    position: absolute;
    left: 0;
    bottom: 0;
	width: 100%;
    height: 4px;
	border-radius: 4px;
    overflow: hidden;
}
.fileuploader-item .fileuploader-progressbar .bar {
	position: absolute;
	left: 0;
	top: 0;
    width: 0%;
	height: 100%;
    border-radius: 4px;
    background: #687ddb;
    -webkit-transition: width 0.3s ease;
    		transition: width 0.3s ease;
}
.fileuploader-item .progress-bar2 .fileuploader-progressbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
			user-select: none;
}
.fileuploader-item .progress-bar2 .fileuploader-progressbar .bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border-radius: 0;
    background: rgba(104, 125, 219, 0.08);
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.fileuploader-item .progress-bar2 span {
    position: absolute;
    top: 50%;
    margin-top: -29px;
    right: 15px;
    color: rgba(151, 159, 184, 0.16);
    font-size: 48px;
}

/* clipboard paste loading */
.fileuploader-input-caption .fileuploader-pending-loader {
    margin-right: 5px;
}
.fileuploader-pending-loader {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    vertical-align: middle;
}
.fileuploader-pending-loader:after,
.fileuploader-pending-loader .left-half {
    background: #fff;
}
.fileuploader-pending-loader .right-half,
.fileuploader-pending-loader .spinner {
    background: #94a2e8;
}
.fileuploader-pending-loader:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 4;
}
.fileuploader-pending-loader .left-half,
.fileuploader-pending-loader .right-half,
.fileuploader-pending-loader .spinner {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}
.fileuploader-pending-loader .left-half {
    left: 0;
    opacity: 1;
    border-radius: 100% 0 0 100%/ 50% 0 0 50%;
    -webkit-animation: fileuploaderOpacity 3s steps(1, end) infinite;
    animation: fileuploaderOpacity 3s steps(1, end) infinite;
    z-index: 3;
}
.fileuploader-pending-loader .right-half {
    right: 0;
    opacity: 0;
    border-radius: 0 100% 100% 0/ 0 50% 50% 0;
    -webkit-animation: fileuploaderOpacity 3s steps(1, end) reverse infinite;
    animation: fileuploaderOpacity 3s steps(1, end) reverse infinite;
    z-index: 1;
}
.fileuploader-pending-loader .spinner {
    left: 0;
    border-radius: 100% 0 0 100%/ 50% 0 0 50%;
    -webkit-animation: fileuploaderSpin 3s linear infinite;
    animation: fileuploaderSpin 3s linear infinite;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    z-index: 2;
}

/* animations */
@-webkit-keyframes fileuploaderOpacity {
    0% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
@keyframes fileuploaderOpacity {
    0% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fileuploaderFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fileuploaderFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fileuploaderScaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes fileuploaderScaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes fileuploaderSlideIn {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}
@keyframes fileuploaderSlideIn {
    from {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}
@-webkit-keyframes fileuploaderSlideOut {
    from {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
    to {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
}
@keyframes fileuploaderSlideOut {
    from {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
    to {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
}
@-webkit-keyframes fileuploaderSpin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes fileuploaderSpin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

.pushbar.opened{
display: block;
}

html.pushbar_locked{
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}


.pushbar_locked .pushbar_main_content.pushbar_blur{
	filter:blur(15px);
}
.pushbar{
	position: fixed;
	will-change: transform;
	overflow-y: auto;
	transition:transform 0.5s ease;
	will-change: transform;
	background:#fff;
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), -2px 4px 8px rgba(0, 0, 0, 0.28);
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), -2px 4px 8px rgba(0, 0, 0, 0.28);
	-webkit-transition: all 580ms cubic-bezier(0.4, 0, 0.2, 1);
	top: 48px;
	bottom: 0;
	border-left: 1px solid rgba(0, 0, 0, 0.12);
	z-index: 1104;
}
.pushbar_overlay{
	z-index: -999;
	position: fixed;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	top: 0;
	left: 0;
    will-change: opacity;
    transition:opacity 0.5s ease;
    opacity:0;
    will-change: opacity;
	background: #000000ad;
}
html.pushbar_locked .pushbar_overlay{
	opacity:0.8;
	z-index: 999;
    transition:opacity 0.5s ease;
}


.pushbar.from_left{
	left: 0;
	width: 256px;
	max-width: 100%;
	height: calc(100vh - 48px);
	transform: translateZ(0) translateX(-100%);
}

.pushbar.from_right{
	right: 0;
	width: 80%;
	max-width: 100%;
	height: calc(100vh - 48px);
	transform: translateZ(0) translateX(100%);
}

.pushbar.from_top{
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	transform: translateZ(0) translateY(-100%);
}
.pushbar.from_bottom{
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	transform: translateZ(0) translateY(100%);
}

.pushbar.opened{
   transform: translateX(0px) translateY(0px);
}

/*!
 * 
 * Super simple wysiwyg editor v0.8.18
 * https://summernote.org
 * 
 * 
 * Copyright 2013- Alan Hong. and other contributors
 * summernote may be freely distributed under the MIT license.
 * 
 * Date: 2020-05-20T18:09Z
 * 
 */
@font-face {
	font-family: "summernote";
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url(../vendor/summernote/font/summernote.eot);
	src: url(../vendor/summernote/font/summernote.eot?#iefix) format("embedded-opentype"), url(../vendor/summernote/font/summernote.woff2) format("woff2"), url(../vendor/summernote/font/summernote.woff) format("woff"), url(../vendor/summernote/font/summernote.ttf) format("truetype")
}

[class^=note-icon]:before, [class*=" note-icon"]:before {
	display: inline-block;
	font-family: summernote;
	font-style: normal;
	font-size: inherit;
	text-decoration: inherit;
	text-rendering: auto;
	text-transform: none;
	vertical-align: middle;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	speak: none
}

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

.note-icon-border {
	border: solid .08em #eee;
	border-radius: .1em;
	padding: .2em .25em .15em
}

.note-icon-pull-left {
	float: left
}

.note-icon-pull-right {
	float: right
}

.note-icon.note-icon-pull-left {
	margin-right: .3em
}

.note-icon.note-icon-pull-right {
	margin-left: .3em
}

.note-icon-align::before {
	content: ""
}

.note-icon-align-center::before {
	content: ""
}

.note-icon-align-indent::before {
	content: ""
}

.note-icon-align-justify::before {
	content: ""
}

.note-icon-align-left::before {
	content: ""
}

.note-icon-align-outdent::before {
	content: ""
}

.note-icon-align-right::before {
	content: ""
}

.note-icon-arrow-circle-down::before {
	content: ""
}

.note-icon-arrow-circle-left::before {
	content: ""
}

.note-icon-arrow-circle-right::before {
	content: ""
}

.note-icon-arrow-circle-up::before {
	content: ""
}

.note-icon-arrows-alt::before {
	content: ""
}

.note-icon-arrows-h::before {
	content: ""
}

.note-icon-arrows-v::before {
	content: ""
}

.note-icon-bold::before {
	content: ""
}

.note-icon-caret::before {
	content: ""
}

.note-icon-chain-broken::before {
	content: ""
}

.note-icon-circle::before {
	content: ""
}

.note-icon-close::before {
	content: ""
}

.note-icon-code::before {
	content: ""
}

.note-icon-col-after::before {
	content: ""
}

.note-icon-col-before::before {
	content: ""
}

.note-icon-col-remove::before {
	content: ""
}

.note-icon-eraser::before {
	content: ""
}

.note-icon-float-left::before {
	content: ""
}

.note-icon-float-none::before {
	content: ""
}

.note-icon-float-right::before {
	content: ""
}

.note-icon-font::before {
	content: ""
}

.note-icon-frame::before {
	content: ""
}

.note-icon-italic::before {
	content: ""
}

.note-icon-link::before {
	content: ""
}

.note-icon-magic::before {
	content: ""
}

.note-icon-menu-check::before {
	content: ""
}

.note-icon-minus::before {
	content: ""
}

.note-icon-orderedlist::before {
	content: ""
}

.note-icon-pencil::before {
	content: ""
}

.note-icon-picture::before {
	content: ""
}

.note-icon-question::before {
	content: ""
}

.note-icon-redo::before {
	content: ""
}

.note-icon-rollback::before {
	content: ""
}

.note-icon-row-above::before {
	content: ""
}

.note-icon-row-below::before {
	content: ""
}

.note-icon-row-remove::before {
	content: ""
}

.note-icon-special-character::before {
	content: ""
}

.note-icon-square::before {
	content: ""
}

.note-icon-strikethrough::before {
	content: ""
}

.note-icon-subscript::before {
	content: ""
}

.note-icon-summernote::before {
	content: ""
}

.note-icon-superscript::before {
	content: ""
}

.note-icon-table::before {
	content: ""
}

.note-icon-text-height::before {
	content: ""
}

.note-icon-trash::before {
	content: ""
}

.note-icon-underline::before {
	content: ""
}

.note-icon-undo::before {
	content: ""
}

.note-icon-unorderedlist::before {
	content: ""
}

.note-icon-video::before {
	content: ""
}

.note-frame {
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	color: #000;
	font-family: sans-serif;
	border-radius: 4px
}

.note-toolbar {
	padding: 10px 5px;
	border-bottom: 1px solid #e2e2e2;
	color: #333;
	background-color: #f5f5f5;
	border-color: #ddd;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.note-btn-group {
	position: relative;
	display: inline-block;
	margin-right: 8px
}

.note-btn-group > .note-btn-group {
	margin-right: 0
}

.note-btn-group > .note-btn:first-child {
	margin-left: 0
}

.note-btn-group .note-btn + .note-btn, .note-btn-group .note-btn + .note-btn-group, .note-btn-group .note-btn-group + .note-btn, .note-btn-group .note-btn-group + .note-btn-group {
	margin-left: -1px
}

.note-btn-group > .note-btn:not(:first-child), .note-btn-group > .note-btn-group:not(:first-child) > .note-btn {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.note-btn-group > .note-btn:not(:last-child):not(.dropdown-toggle), .note-btn-group > .note-btn-group:not(:last-child) > .note-btn {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.note-btn-group.open > .note-dropdown {
	display: block
}

.note-btn {
	display: inline-block;
	font-weight: 400;
	margin-bottom: 0;
	text-align: center;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	background-image: none;
	border: 1px solid #dae0e5;
	white-space: nowrap;
	outline: 0;
	color: #333;
	background-color: #fff;
	border-color: #dae0e5;
	padding: 5px 10px;
	font-size: 14px;
	line-height: 1.4;
	border-radius: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.note-btn:focus, .note-btn.focus {
	color: #333;
	background-color: #ebebeb;
	border-color: #dae0e5
}

.note-btn:hover {
	color: #333;
	background-color: #ebebeb;
	border-color: #dae0e5
}

.note-btn.disabled:focus, .note-btn.disabled.focus, .note-btn[disabled]:focus, .note-btn[disabled].focus, fieldset[disabled] .note-btn:focus, fieldset[disabled] .note-btn.focus {
	background-color: #fff;
	border-color: #dae0e5
}

.note-btn:hover, .note-btn:focus, .note-btn.focus {
	color: #333;
	text-decoration: none;
	border: 1px solid #dae0e5;
	background-color: #ebebeb;
	outline: 0;
	border-radius: 1px
}

.note-btn:active, .note-btn.active {
	outline: 0;
	background-image: none;
	color: #333;
	text-decoration: none;
	border: 1px solid #dae0e5;
	background-color: #ebebeb;
	outline: 0;
	border-radius: 1px;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.note-btn.disabled, .note-btn[disabled], fieldset[disabled] .note-btn {
	cursor: not-allowed;
	-webkit-opacity: .65;
	-khtml-opacity: .65;
	-moz-opacity: .65;
	opacity: .65;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=65);
	filter: alpha(opacity=65);
	box-shadow: none
}

.note-btn > span.note-icon-caret:first-child {
	margin-left: -1px
}

.note-btn > span.note-icon-caret:nth-child(2) {
	padding-left: 3px;
	margin-right: -5px
}

.note-btn-primary {
	background: #fa6362;
	color: #fff
}

.note-btn-primary:hover, .note-btn-primary:focus, .note-btn-primary.focus {
	color: #fff;
	text-decoration: none;
	border: 1px solid #dae0e5;
	background-color: #fa6362;
	border-radius: 1px
}

.note-btn-block {
	display: block;
	width: 100%
}

.note-btn-block + .note-btn-block {
	margin-top: 5px
}

input[type=submit].note-btn-block, input[type=reset].note-btn-block, input[type=button].note-btn-block {
	width: 100%
}

button.close {
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none
}

.close {
	float: right;
	font-size: 21px;
	line-height: 1;
	color: #000;
	opacity: .2
}

.close:hover {
	-webkit-opacity: 1;
	-khtml-opacity: 1;
	-moz-opacity: 1;
	-ms-filter: alpha(opacity=100);
	filter: alpha(opacity=100);
	opacity: 1
}

.note-dropdown {
	position: relative
}

.note-color .dropdown-toggle {
	width: 30px;
	padding-left: 5px
}

.note-dropdown-menu {
	display: none;
	min-width: 100px;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	float: left;
	text-align: left;
	background: #fff;
	border: 1px solid #e2e2e2;
	padding: 5px;
	background-clip: padding-box;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .06)
}

.note-dropdown-menu > *:last-child {
	margin-right: 0
}

.note-btn-group.open .note-dropdown-menu {
	display: block
}

.note-dropdown-item {
	display: block
}

.note-dropdown-item:hover {
	background-color: #ebebeb
}

a.note-dropdown-item, a.note-dropdown-item:hover {
	margin: 5px 0;
	color: #000;
	text-decoration: none
}

.note-modal {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1050;
	-webkit-opacity: 1;
	-khtml-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	filter: alpha(opacity=100);
	display: none
}

.note-modal.open {
	display: block
}

.note-modal-content {
	position: relative;
	width: auto;
	margin: 30px 20px;
	border: 1px solid rgba(0, 0, 0, .2);
	background: #fff;
	background-clip: border-box;
	outline: 0;
	border-radius: 5px;
	box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.note-modal-header {
	padding: 10px 20px;
	border: 1px solid #ededef
}

.note-modal-body {
	position: relative;
	padding: 20px 30px
}

.note-modal-body kbd {
	border-radius: 2px;
	background-color: #000;
	color: #fff;
	padding: 3px 5px;
	font-weight: 700;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.note-modal-footer {
	height: 40px;
	padding: 10px;
	text-align: center
}

.note-modal-footer a {
	color: #337ab7;
	text-decoration: none
}

.note-modal-footer a:hover, .note-modal-footer a:focus {
	color: #23527c;
	text-decoration: underline
}

.note-modal-footer .note-btn {
	float: right
}

.note-modal-title {
	font-size: 20px;
	color: #42515f;
	margin: 0;
	line-height: 1.4
}

.note-modal-backdrop {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 1040;
	background: #000;
	-webkit-opacity: .5;
	-khtml-opacity: .5;
	-moz-opacity: .5;
	opacity: .5;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
	filter: alpha(opacity=50);
	display: none
}

.note-modal-backdrop.open {
	display: block
}

@media (min-width: 768px) {
	.note-modal-content {
		width: 600px;
		margin: 30px auto
	}
}

@media (min-width: 992px) {
	.note-modal-content-large {
		width: 900px
	}
}

.note-modal .note-help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #737373
}

.note-modal .note-nav {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.note-modal .note-nav-link {
	display: block;
	padding: .5rem 1rem;
	color: #007bff;
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects
}

.note-modal .note-nav-link:focus, .note-modal .note-nav-link:hover {
	color: #0056b3;
	text-decoration: none
}

.note-modal .note-nav-link.disabled {
	color: #868e96
}

.note-modal .note-nav-tabs {
	border-bottom: 1px solid #ddd
}

.note-modal .note-nav-tabs .note-nav-item {
	margin-bottom: -1px
}

.note-modal .note-nav-tabs .note-nav-link {
	border: 1px solid transparent;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem
}

.note-modal .note-nav-tabs .note-nav-link:focus, .note-modal .note-nav-tabs .note-nav-link:hover {
	border-color: #e9ecef #e9ecef #ddd
}

.note-modal .note-nav-tabs .note-nav-link.disabled {
	color: #868e96;
	background-color: transparent;
	border-color: transparent
}

.note-modal .note-nav-tabs .note-nav-item.show .note-nav-link {
	color: #495057;
	background-color: #fff;
	border-color: #ddd #ddd #fff
}

.note-modal .note-tab-content {
	margin: 15px auto
}

.note-modal .note-tab-content > .note-tab-pane:target ~ .note-tab-pane:last-child, .note-modal .note-tab-content > .note-tab-pane {
	display: none
}

.note-modal .note-tab-content > :last-child, .note-modal .note-tab-content > .note-tab-pane:target {
	display: block
}

.note-form-group {
	padding-bottom: 20px
}

.note-form-group:last-child {
	padding-bottom: 0
}

.note-form-label {
	display: block;
	width: 100%;
	font-size: 16px;
	color: #42515f;
	margin-bottom: 10px;
	font-weight: 700
}

.note-input {
	width: 100%;
	display: block;
	border: 1px solid #ededef;
	background: #fff;
	outline: 0;
	padding: 6px 4px;
	font-size: 14px;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.note-input::-webkit-input-placeholder {
	color: #eee
}

.note-input:-moz-placeholder {
	color: #eee
}

.note-input::-moz-placeholder {
	color: #eee
}

.note-input:-ms-input-placeholder {
	color: #eee
}

.note-tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	font-size: 13px;
	transition: opacity .15s;
	-webkit-opacity: 0;
	-khtml-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	filter: alpha(opacity=0)
}

.note-tooltip.in {
	-webkit-opacity: .9;
	-khtml-opacity: .9;
	-moz-opacity: .9;
	opacity: .9;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
	filter: alpha(opacity=90)
}

.note-tooltip.top {
	margin-top: -3px;
	padding: 5px 0
}

.note-tooltip.right {
	margin-left: 3px;
	padding: 0 5px
}

.note-tooltip.bottom {
	margin-top: 3px;
	padding: 5px 0
}

.note-tooltip.left {
	margin-left: -3px;
	padding: 0 5px
}

.note-tooltip.bottom .note-tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000
}

.note-tooltip.top .note-tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000
}

.note-tooltip.right .note-tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000
}

.note-tooltip.left .note-tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000
}

.note-tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid
}

.note-tooltip-content {
	max-width: 200px;
	font-family: sans-serif;
	padding: 3px 8px;
	color: #fff;
	text-align: center;
	background-color: #000
}

.note-popover {
	position: absolute;
	z-index: 1060;
	display: block;
	font-size: 13px;
	font-family: sans-serif;
	display: none;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .2);
	border: 1px solid #ccc
}

.note-popover.in {
	display: block
}

.note-popover.top {
	margin-top: -10px;
	padding: 5px 0
}

.note-popover.right {
	margin-left: 10px;
	padding: 0 5px
}

.note-popover.bottom {
	margin-top: 10px;
	padding: 5px 0
}

.note-popover.left {
	margin-left: -10px;
	padding: 0 5px
}

.note-popover.bottom .note-popover-arrow {
	top: -11px;
	left: 20px;
	margin-left: -10px;
	border-top-width: 0;
	border-bottom-color: #999;
	border-bottom-color: rgba(0, 0, 0, .25)
}

.note-popover.bottom .note-popover-arrow::after {
	top: 1px;
	margin-left: -10px;
	content: " ";
	border-top-width: 0;
	border-bottom-color: #fff
}

.note-popover.top .note-popover-arrow {
	bottom: -11px;
	left: 20px;
	margin-left: -10px;
	border-bottom-width: 0;
	border-top-color: #999;
	border-top-color: rgba(0, 0, 0, .25)
}

.note-popover.top .note-popover-arrow::after {
	bottom: 1px;
	margin-left: -10px;
	content: " ";
	border-bottom-width: 0;
	border-top-color: #fff
}

.note-popover.right .note-popover-arrow {
	top: 50%;
	left: -11px;
	margin-top: -10px;
	border-left-width: 0;
	border-right-color: #999;
	border-right-color: rgba(0, 0, 0, .25)
}

.note-popover.right .note-popover-arrow::after {
	left: 1px;
	margin-top: -10px;
	content: " ";
	border-left-width: 0;
	border-right-color: #fff
}

.note-popover.left .note-popover-arrow {
	top: 50%;
	right: -11px;
	margin-top: -10px;
	border-right-width: 0;
	border-left-color: #999;
	border-left-color: rgba(0, 0, 0, .25)
}

.note-popover.left .note-popover-arrow::after {
	right: 1px;
	margin-top: -10px;
	content: " ";
	border-right-width: 0;
	border-left-color: #fff
}

.note-popover-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border: 11px solid transparent
}

.note-popover-arrow::after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	content: " ";
	border-width: 10px
}

.note-popover-content {
	padding: 3px 8px;
	color: #000;
	text-align: center;
	background-color: #fff;
	min-width: 100px;
	min-height: 30px
}

.note-editor {
	position: relative
}

.note-editor .note-dropzone {
	position: absolute;
	display: none;
	z-index: 100;
	color: #87cefa;
	background-color: #fff;
	opacity: .95
}

.note-editor .note-dropzone .note-dropzone-message {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 28px;
	font-weight: 700
}

.note-editor .note-dropzone.hover {
	color: #098ddf
}

.note-editor.dragover .note-dropzone {
	display: table
}

.note-editor .note-editing-area {
	position: relative
}

.note-editor .note-editing-area .note-editable {
	outline: none
}

.note-editor .note-editing-area .note-editable sup {
	vertical-align: super
}

.note-editor .note-editing-area .note-editable sub {
	vertical-align: sub
}

.note-editor .note-editing-area .note-editable img.note-float-left {
	margin-right: 10px
}

.note-editor .note-editing-area .note-editable img.note-float-right {
	margin-left: 10px
}

.note-editor.note-frame, .note-editor.note-airframe {
	border: 1px solid #00000032
}

.note-editor.note-frame.codeview .note-editing-area .note-editable, .note-editor.note-airframe.codeview .note-editing-area .note-editable {
	display: none
}

.note-editor.note-frame.codeview .note-editing-area .note-codable, .note-editor.note-airframe.codeview .note-editing-area .note-codable {
	display: block
}

.note-editor.note-frame .note-editing-area, .note-editor.note-airframe .note-editing-area {
	overflow: hidden
}

.note-editor.note-frame .note-editing-area .note-editable, .note-editor.note-airframe .note-editing-area .note-editable {
	padding: 10px;
	overflow: auto;
	word-wrap: break-word
}

.note-editor.note-frame .note-editing-area .note-editable[contenteditable=false], .note-editor.note-airframe .note-editing-area .note-editable[contenteditable=false] {
	background-color: #8080801d
}

.note-editor.note-frame .note-editing-area .note-codable, .note-editor.note-airframe .note-editing-area .note-codable {
	display: none;
	width: 100%;
	padding: 10px;
	border: none;
	box-shadow: none;
	font-family: Menlo, Monaco, monospace, sans-serif;
	font-size: 14px;
	color: #ccc;
	background-color: #222;
	resize: none;
	outline: none;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0;
	margin-bottom: 0
}

.note-editor.note-frame.fullscreen, .note-editor.note-airframe.fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100% !important;
	z-index: 1050
}

.note-editor.note-frame.fullscreen .note-resizebar, .note-editor.note-airframe.fullscreen .note-resizebar {
	display: none
}

.note-editor.note-frame .note-status-output, .note-editor.note-airframe .note-status-output {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 1.42857143;
	height: 20px;
	margin-bottom: 0;
	color: #000;
	border: 0;
	border-top: 1px solid #e2e2e2
}

.note-editor.note-frame .note-status-output:empty, .note-editor.note-airframe .note-status-output:empty {
	height: 0;
	border-top: 0 solid transparent
}

.note-editor.note-frame .note-status-output .pull-right, .note-editor.note-airframe .note-status-output .pull-right {
	float: right !important
}

.note-editor.note-frame .note-status-output .text-muted, .note-editor.note-airframe .note-status-output .text-muted {
	color: #777
}

.note-editor.note-frame .note-status-output .text-primary, .note-editor.note-airframe .note-status-output .text-primary {
	color: #286090
}

.note-editor.note-frame .note-status-output .text-success, .note-editor.note-airframe .note-status-output .text-success {
	color: #3c763d
}

.note-editor.note-frame .note-status-output .text-info, .note-editor.note-airframe .note-status-output .text-info {
	color: #31708f
}

.note-editor.note-frame .note-status-output .text-warning, .note-editor.note-airframe .note-status-output .text-warning {
	color: #8a6d3b
}

.note-editor.note-frame .note-status-output .text-danger, .note-editor.note-airframe .note-status-output .text-danger {
	color: #a94442
}

.note-editor.note-frame .note-status-output .alert, .note-editor.note-airframe .note-status-output .alert {
	margin: -7px 0 0 0;
	padding: 7px 10px 2px 10px;
	border-radius: 0;
	color: #000;
	background-color: #f5f5f5
}

.note-editor.note-frame .note-status-output .alert .note-icon, .note-editor.note-airframe .note-status-output .alert .note-icon {
	margin-right: 5px
}

.note-editor.note-frame .note-status-output .alert-success, .note-editor.note-airframe .note-status-output .alert-success {
	color: #3c763d !important;
	background-color: #dff0d8 !important
}

.note-editor.note-frame .note-status-output .alert-info, .note-editor.note-airframe .note-status-output .alert-info {
	color: #31708f !important;
	background-color: #d9edf7 !important
}

.note-editor.note-frame .note-status-output .alert-warning, .note-editor.note-airframe .note-status-output .alert-warning {
	color: #8a6d3b !important;
	background-color: #fcf8e3 !important
}

.note-editor.note-frame .note-status-output .alert-danger, .note-editor.note-airframe .note-status-output .alert-danger {
	color: #a94442 !important;
	background-color: #f2dede !important
}

.note-editor.note-frame .note-statusbar, .note-editor.note-airframe .note-statusbar {
	background-color: #8080801d;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-top: 1px solid #00000032
}

.note-editor.note-frame .note-statusbar .note-resizebar, .note-editor.note-airframe .note-statusbar .note-resizebar {
	padding-top: 1px;
	height: 9px;
	width: 100%;
	cursor: ns-resize
}

.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar, .note-editor.note-airframe .note-statusbar .note-resizebar .note-icon-bar {
	width: 20px;
	margin: 1px auto;
	border-top: 1px solid #00000032
}

.note-editor.note-frame .note-statusbar.locked .note-resizebar, .note-editor.note-airframe .note-statusbar.locked .note-resizebar {
	cursor: default
}

.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar, .note-editor.note-airframe .note-statusbar.locked .note-resizebar .note-icon-bar {
	display: none
}

.note-editor.note-frame .note-placeholder, .note-editor.note-airframe .note-placeholder {
	padding: 10px
}

.note-editor.note-airframe {
	border: 0
}

.note-editor.note-airframe .note-editing-area .note-editable {
	padding: 0
}

.note-popover.popover {
	display: none;
	max-width: none
}

.note-popover.popover .popover-content a {
	display: inline-block;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle
}

.note-popover.popover .arrow {
	left: 20px !important
}

.note-toolbar {
	position: relative
}

.note-popover .popover-content, .note-editor .note-toolbar {
	margin: 0;
	padding: 0 0 5px 5px
}

.note-popover .popover-content > .note-btn-group, .note-editor .note-toolbar > .note-btn-group {
	margin-top: 5px;
	margin-left: 0;
	margin-right: 5px
}

.note-popover .popover-content .note-btn-group .note-table, .note-editor .note-toolbar .note-btn-group .note-table {
	min-width: 0;
	padding: 5px
}

.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker {
	font-size: 18px
}

.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
	position: absolute !important;
	z-index: 3;
	width: 10em;
	height: 10em;
	cursor: pointer
}

.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
	position: relative !important;
	z-index: 1;
	width: 5em;
	height: 5em;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat
}

.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted, .note-editor .note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
	position: absolute !important;
	z-index: 2;
	width: 1em;
	height: 1em;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat
}

.note-popover .popover-content .note-style .dropdown-style blockquote, .note-popover .popover-content .note-style .dropdown-style pre, .note-editor .note-toolbar .note-style .dropdown-style blockquote, .note-editor .note-toolbar .note-style .dropdown-style pre {
	margin: 0;
	padding: 5px 10px
}

.note-popover .popover-content .note-style .dropdown-style h1, .note-popover .popover-content .note-style .dropdown-style h2, .note-popover .popover-content .note-style .dropdown-style h3, .note-popover .popover-content .note-style .dropdown-style h4, .note-popover .popover-content .note-style .dropdown-style h5, .note-popover .popover-content .note-style .dropdown-style h6, .note-popover .popover-content .note-style .dropdown-style p, .note-editor .note-toolbar .note-style .dropdown-style h1, .note-editor .note-toolbar .note-style .dropdown-style h2, .note-editor .note-toolbar .note-style .dropdown-style h3, .note-editor .note-toolbar .note-style .dropdown-style h4, .note-editor .note-toolbar .note-style .dropdown-style h5, .note-editor .note-toolbar .note-style .dropdown-style h6, .note-editor .note-toolbar .note-style .dropdown-style p {
	margin: 0;
	padding: 0
}

.note-popover .popover-content .note-color-all .note-dropdown-menu, .note-editor .note-toolbar .note-color-all .note-dropdown-menu {
	min-width: 337px
}

.note-popover .popover-content .note-color .dropdown-toggle, .note-editor .note-toolbar .note-color .dropdown-toggle {
	width: 20px;
	padding-left: 5px
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette {
	display: inline-block;
	margin: 0;
	width: 160px
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette:first-child, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette:first-child {
	margin: 0 5px
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-palette-title, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-palette-title {
	font-size: 12px;
	margin: 2px 7px;
	text-align: center;
	border-bottom: 1px solid #eee
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset, .note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select {
	font-size: 11px;
	margin: 3px;
	padding: 0 3px;
	cursor: pointer;
	width: 100%;
	border-radius: 5px
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset:hover, .note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select:hover, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset:hover, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select:hover {
	background: #eee
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-row, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-row {
	height: 20px
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select-btn, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select-btn {
	display: none
}

.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn, .note-editor .note-toolbar .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn {
	border: 1px solid #eee
}

.note-popover .popover-content .note-para .note-dropdown-menu, .note-editor .note-toolbar .note-para .note-dropdown-menu {
	min-width: 228px;
	padding: 5px
}

.note-popover .popover-content .note-para .note-dropdown-menu > div + div, .note-editor .note-toolbar .note-para .note-dropdown-menu > div + div {
	margin-left: 5px
}

.note-popover .popover-content .note-dropdown-menu, .note-editor .note-toolbar .note-dropdown-menu {
	min-width: 160px
}

.note-popover .popover-content .note-dropdown-menu.right, .note-editor .note-toolbar .note-dropdown-menu.right {
	right: 0;
	left: auto
}

.note-popover .popover-content .note-dropdown-menu.right::before, .note-editor .note-toolbar .note-dropdown-menu.right::before {
	right: 9px;
	left: auto !important
}

.note-popover .popover-content .note-dropdown-menu.right::after, .note-editor .note-toolbar .note-dropdown-menu.right::after {
	right: 10px;
	left: auto !important
}

.note-popover .popover-content .note-dropdown-menu.note-check a i, .note-editor .note-toolbar .note-dropdown-menu.note-check a i {
	color: #00bfff;
	visibility: hidden
}

.note-popover .popover-content .note-dropdown-menu.note-check a.checked i, .note-editor .note-toolbar .note-dropdown-menu.note-check a.checked i {
	visibility: visible
}

.note-popover .popover-content .note-fontsize-10, .note-editor .note-toolbar .note-fontsize-10 {
	font-size: 10px
}

.note-popover .popover-content .note-color-palette, .note-editor .note-toolbar .note-color-palette {
	line-height: 1
}

.note-popover .popover-content .note-color-palette div .note-color-btn, .note-editor .note-toolbar .note-color-palette div .note-color-btn {
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0
}

.note-popover .popover-content .note-color-palette div .note-color-btn:hover, .note-editor .note-toolbar .note-color-palette div .note-color-btn:hover {
	transform: scale(1.2);
	transition: all .2s
}

.note-modal .modal-dialog {
	outline: 0;
	border-radius: 5px;
	box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.note-modal .form-group {
	margin-left: 0;
	margin-right: 0
}

.note-modal .note-modal-form {
	margin: 0
}

.note-modal .note-image-dialog .note-dropzone {
	min-height: 100px;
	font-size: 30px;
	line-height: 4;
	color: #d3d3d3;
	text-align: center;
	border: 4px dashed #d3d3d3;
	margin-bottom: 10px
}

@-moz-document url-prefix() {
	.note-modal .note-image-input {
		height: auto
	}
}

.note-placeholder {
	position: absolute;
	display: none;
	color: gray
}

.note-handle .note-control-selection {
	position: absolute;
	display: none;
	border: 1px solid #000
}

.note-handle .note-control-selection > div {
	position: absolute
}

.note-handle .note-control-selection .note-control-selection-bg {
	width: 100%;
	height: 100%;
	background-color: #000;
	-webkit-opacity: .3;
	-khtml-opacity: .3;
	-moz-opacity: .3;
	opacity: .3;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
	filter: alpha(opacity=30)
}

.note-handle .note-control-selection .note-control-handle, .note-handle .note-control-selection .note-control-sizing, .note-handle .note-control-selection .note-control-holder {
	width: 7px;
	height: 7px;
	border: 1px solid #000
}

.note-handle .note-control-selection .note-control-sizing {
	background-color: #000
}

.note-handle .note-control-selection .note-control-nw {
	top: -5px;
	left: -5px;
	border-right: none;
	border-bottom: none
}

.note-handle .note-control-selection .note-control-ne {
	top: -5px;
	right: -5px;
	border-bottom: none;
	border-left: none
}

.note-handle .note-control-selection .note-control-sw {
	bottom: -5px;
	left: -5px;
	border-top: none;
	border-right: none
}

.note-handle .note-control-selection .note-control-se {
	right: -5px;
	bottom: -5px;
	cursor: se-resize
}

.note-handle .note-control-selection .note-control-se.note-control-holder {
	cursor: default;
	border-top: none;
	border-left: none
}

.note-handle .note-control-selection .note-control-selection-info {
	right: 0;
	bottom: 0;
	padding: 5px;
	margin: 5px;
	color: #fff;
	background-color: #000;
	font-size: 12px;
	border-radius: 5px;
	-webkit-opacity: .7;
	-khtml-opacity: .7;
	-moz-opacity: .7;
	opacity: .7;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
	filter: alpha(opacity=70)
}

.note-hint-popover {
	min-width: 100px;
	padding: 2px
}

.note-hint-popover .popover-content {
	padding: 3px;
	max-height: 150px;
	overflow: auto
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item {
	display: block !important;
	padding: 3px
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item.active, .note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {
	display: block;
	clear: both;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	background-color: #428bca;
	outline: 0;
	cursor: pointer
}

.note-editor .note-editing-area .note-editable table {
	width: 100%;
	border-collapse: collapse
}

.note-editor .note-editing-area .note-editable table td, .note-editor .note-editing-area .note-editable table th {
	border: 1px solid #ececec;
	padding: 5px 3px
}

.note-editor .note-editing-area .note-editable a {
	background-color: inherit;
	text-decoration: inherit;
	font-family: inherit;
	font-weight: inherit;
	color: #337ab7
}

.note-editor .note-editing-area .note-editable a:hover, .note-editor .note-editing-area .note-editable a:focus {
	color: #23527c;
	text-decoration: underline;
	outline: 0
}

.note-editor .note-editing-area .note-editable figure {
	margin: 0
}

.note-modal .note-modal-body label {
	margin-bottom: 2px;
	padding: 2px 5px;
	display: inline-block
}

.note-modal .note-modal-body .help-list-item:hover {
	background-color: #e0e0e0
}

@-moz-document url-prefix() {
	.note-modal .note-image-input {
		height: auto
	}
}

.help-list-item label {
	margin-bottom: 5px;
	display: inline-block
}

/*!
 * =============================================================
 * dropify v0.2.1 - Override your input files with style.
 * https://github.com/JeremyFagis/dropify
 *
 * (c) 2017 - Jeremy FAGIS <jeremy@fagis.fr> (http://fagis.fr)
 * =============================================================
 */

@charset "UTF-8";
@font-face {
  font-family: 'dropify';
  src: url("../fonts/dropify.eot");
  src: url("../fonts/dropify.eot#iefix") format("embedded-opentype"), url("../fonts/dropify.woff") format("woff"), url("../fonts/dropify.ttf") format("truetype"), url("../fonts/dropify.svg#dropify") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="dropify-font-"]:before, [class*=" dropify-font-"]:before, .dropify-font:before, .dropify-wrapper .dropify-message span.file-icon:before {
  font-family: "dropify";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-left: .2em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em; }

.dropify-font-upload:before, .dropify-wrapper .dropify-message span.file-icon:before {
  content: '\e800'; }

.dropify-font-file:before {
  content: '\e801'; }

.dropify-wrapper {
  display: block;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 5px 10px;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial";
  font-size: 14px;
  line-height: 22px;
  color: #777;
  background-color: #FFF;
  background-image: none;
  text-align: center;
  border: 2px solid #E5E5E5;
  -webkit-transition: border-color 0.15s linear;
  transition: border-color 0.15s linear; }
  .dropify-wrapper:hover {
    background-size: 30px 30px;
    background-image: -webkit-linear-gradient(135deg, #F6F6F6 25%, transparent 25%, transparent 50%, #F6F6F6 50%, #F6F6F6 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, #F6F6F6 25%, transparent 25%, transparent 50%, #F6F6F6 50%, #F6F6F6 75%, transparent 75%, transparent);
    -webkit-animation: stripes 2s linear infinite;
            animation: stripes 2s linear infinite; }
  .dropify-wrapper.has-preview .dropify-clear {
    display: block; }
  .dropify-wrapper.has-error {
    border-color: #F34141; }
    .dropify-wrapper.has-error .dropify-message .dropify-error {
      display: block; }
    .dropify-wrapper.has-error:hover .dropify-errors-container  {
      visibility: visible;
      opacity: 1;
      -webkit-transition-delay: 0s;
              transition-delay: 0s; }
  .dropify-wrapper.disabled input {
    cursor: not-allowed; }
  .dropify-wrapper.disabled:hover {
    background-image: none;
    -webkit-animation: none;
            animation: none; }
  .dropify-wrapper.disabled .dropify-message {
    opacity: 0.5;
    text-decoration: line-through; }
  .dropify-wrapper.disabled .dropify-infos-message {
    display: none; }
  .dropify-wrapper input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5; }
  .dropify-wrapper .dropify-message {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .dropify-wrapper .dropify-message span.file-icon {
      font-size: 50px;
      color: #CCC; }
    .dropify-wrapper .dropify-message p {
      margin: 5px 0 0 0; }
      .dropify-wrapper .dropify-message p.dropify-error {
        color: #F34141;
        font-weight: bold;
        display: none; }
  .dropify-wrapper .dropify-clear {
    display: none;
    position: absolute;
    opacity: 0;
    z-index: 7;
    top: 10px;
    right: 10px;
    background: none;
    border: 2px solid #FFF;
    text-transform: uppercase;
    font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial";
    font-size: 11px;
    padding: 4px 8px;
    font-weight: bold;
    color: #FFF;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear; }
    .dropify-wrapper .dropify-clear:hover {
      background: rgba(255, 255, 255, 0.2); }
  .dropify-wrapper .dropify-preview {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #FFF;
    padding: 5px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-align: center; }
    .dropify-wrapper .dropify-preview .dropify-render img {
      top: 50%;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      position: relative;
      max-width: 100%;
      max-height: 100%;
      background-color: #FFF;
      -webkit-transition: border-color 0.15s linear;
      transition: border-color 0.15s linear; }
    .dropify-wrapper .dropify-preview .dropify-render i {
      font-size: 70px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      position: absolute;
      color: #777; }
    .dropify-wrapper .dropify-preview .dropify-render .dropify-extension {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      margin-top: 10px;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 13px;
      width: 42px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .dropify-wrapper .dropify-preview .dropify-infos {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      -webkit-transition: opacity 0.15s linear;
      transition: opacity 0.15s linear; }
      .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(0, -40%);
                transform: translate(0, -40%);
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
        width: 100%;
        padding: 0 20px;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p {
          padding: 0;
          margin: 0;
          position: relative;
          width: 100%;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          color: #FFF;
          text-align: center;
          line-height: 25px;
          font-weight: bold; }
          .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message {
            margin-top: 15px;
            padding-top: 15px;
            font-size: 12px;
            position: relative;
            opacity: 0.5; }
            .dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message::before {
              content: '';
              position: absolute;
              top: 0;
              left: 50%;
              -webkit-transform: translate(-50%, 0);
                      transform: translate(-50%, 0);
              background: #FFF;
              width: 30px;
              height: 2px; }
  .dropify-wrapper:hover .dropify-clear {
    opacity: 1; }
  .dropify-wrapper:hover .dropify-preview .dropify-infos {
    opacity: 1; }
    .dropify-wrapper:hover .dropify-preview .dropify-infos .dropify-infos-inner {
      margin-top: -5px; }
  .dropify-wrapper.touch-fallback {
    height: auto !important; }
    .dropify-wrapper.touch-fallback:hover {
      background-image: none;
      -webkit-animation: none;
              animation: none; }
    .dropify-wrapper.touch-fallback .dropify-preview {
      position: relative;
      padding: 0; }
      .dropify-wrapper.touch-fallback .dropify-preview .dropify-render {
        display: block;
        position: relative; }
        .dropify-wrapper.touch-fallback .dropify-preview .dropify-render .dropify-font-file {
          position: relative;
          -webkit-transform: translate(0, 0);
                  transform: translate(0, 0);
          top: 0;
          left: 0; }
          .dropify-wrapper.touch-fallback .dropify-preview .dropify-render .dropify-font-file::before {
            margin-top: 30px;
            margin-bottom: 30px; }
        .dropify-wrapper.touch-fallback .dropify-preview .dropify-render img {
          position: relative;
          -webkit-transform: translate(0, 0);
                  transform: translate(0, 0); }
      .dropify-wrapper.touch-fallback .dropify-preview .dropify-infos {
        position: relative;
        opacity: 1;
        background: transparent; }
        .dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner {
          position: relative;
          top: 0;
          -webkit-transform: translate(0, 0);
                  transform: translate(0, 0);
          padding: 5px 90px 5px 0; }
          .dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p {
            padding: 0;
            margin: 0;
            position: relative;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #777;
            text-align: left;
            line-height: 25px; }
            .dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-filename {
              font-weight: bold; }
            .dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message {
              margin-top: 0;
              padding-top: 0;
              font-size: 11px;
              position: relative;
              opacity: 1; }
              .dropify-wrapper.touch-fallback .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message::before {
                display: none; }
    .dropify-wrapper.touch-fallback .dropify-message {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      padding: 40px 0; }
    .dropify-wrapper.touch-fallback .dropify-clear {
      top: auto;
      bottom: 23px;
      opacity: 1;
      border-color: rgba(119, 119, 119, 0.7);
      color: #777; }
    .dropify-wrapper.touch-fallback.has-preview .dropify-message {
      display: none; }
    .dropify-wrapper.touch-fallback:hover .dropify-preview .dropify-infos .dropify-infos-inner {
      margin-top: 0; }
  .dropify-wrapper .dropify-loader {
    position: absolute;
    top: 15px;
    right: 15px;
    display: none;
    z-index: 9; }
    .dropify-wrapper .dropify-loader::after {
      display: block;
      position: relative;
      width: 20px;
      height: 20px;
      -webkit-animation: rotate 0.6s linear infinite;
              animation: rotate 0.6s linear infinite;
      border-radius: 100%;
      border-top: 1px solid #CCC;
      border-bottom: 1px solid #777;
      border-left: 1px solid #CCC;
      border-right: 1px solid #777;
      content: ''; }
  .dropify-wrapper .dropify-errors-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(243, 65, 65, 0.8);
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear 0.15s,opacity 0.15s linear;
    transition: visibility 0s linear 0.15s,opacity 0.15s linear; }
    .dropify-wrapper .dropify-errors-container ul {
      padding: 10px 20px;
      margin: 0;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
      .dropify-wrapper .dropify-errors-container ul li {
        margin-left: 20px;
        color: #FFF;
        font-weight: bold; }
    .dropify-wrapper .dropify-errors-container.visible {
      visibility: visible;
      opacity: 1;
      -webkit-transition-delay: 0s;
              transition-delay: 0s; }
  .dropify-wrapper ~ .dropify-errors-container ul {
    padding: 0;
    margin: 15px 0; }
    .dropify-wrapper ~ .dropify-errors-container ul li {
      margin-left: 20px;
      color: #F34141;
      font-weight: bold; }

@-webkit-keyframes stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 60px 30px; } }

@keyframes stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 60px 30px; } }

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

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

/*!
 * elFinder - file manager for web
 * Version 2.1.48 (2019-02-26)
 * http://elfinder.org
 * 
 * Copyright 2009-2019, Studio 42
 * Licensed under a 3-clauses BSD license
 */
.elfinder-resize-container{margin-top:.3em}.elfinder-resize-type{float:left;margin-bottom:.4em}.elfinder-resize-control{float:left}.elfinder-resize-control input[type=number]{border:1px solid #aaa;text-align:right;width:4.5em}.elfinder-resize-control input.elfinder-resize-bg{text-align:center;width:5em;direction:ltr}.elfinder-dialog-resize .elfinder-resize-control-panel{margin-top:10px}.elfinder-dialog-resize .elfinder-resize-imgrotate,.elfinder-dialog-resize .elfinder-resize-pallet{cursor:pointer}.elfinder-dialog-resize .elfinder-resize-picking{cursor:crosshair}.elfinder-dialog-resize .elfinder-resize-grid8+button{padding-top:2px;padding-bottom:2px}.elfinder-resize-preview{width:400px;height:400px;padding:10px;background:#fff;border:1px solid #aaa;float:right;position:relative;overflow:hidden;text-align:left;direction:ltr}.elfinder-resize-handle,div.elfinder-cwd-wrapper-list tr.ui-state-default td{position:relative}.elfinder-resize-handle-hline,.elfinder-resize-handle-vline{position:absolute;background-image:url(../img/crop.gif)}.elfinder-resize-handle-hline{width:100%;height:1px!important;background-repeat:repeat-x}.elfinder-resize-handle-vline{width:1px!important;height:100%;background-repeat:repeat-y}.elfinder-resize-handle-hline-top{top:0;left:0}.elfinder-resize-handle-hline-bottom{bottom:0;left:0}.elfinder-resize-handle-vline-left{top:0;left:0}.elfinder-resize-handle-vline-right{top:0;right:0}.elfinder-resize-handle-point{position:absolute;width:8px;height:8px;border:1px solid #777;background:0 0}.elfinder-resize-handle-point-n{top:0;left:50%;margin-top:-5px;margin-left:-5px}.elfinder-resize-handle-point-e,.elfinder-resize-handle-point-ne{top:0;right:0;margin-top:-5px;margin-right:-5px}.elfinder-resize-handle-point-e{top:50%}.elfinder-resize-handle-point-se{bottom:0;right:0;margin-bottom:-5px;margin-right:-5px}.elfinder-resize-handle-point-s,.elfinder-resize-handle-point-sw{bottom:0;left:50%;margin-bottom:-5px;margin-left:-5px}.elfinder-resize-handle-point-sw{left:0}.elfinder-resize-handle-point-nw,.elfinder-resize-handle-point-w{top:50%;left:0;margin-top:-5px;margin-left:-5px}.elfinder-resize-handle-point-nw{top:0}.elfinder-dialog.elfinder-dialog-resize .ui-resizable-e{width:10px;height:100%}.elfinder-dialog.elfinder-dialog-resize .ui-resizable-s{width:100%;height:10px}.elfinder-resize-loading{position:absolute;width:200px;height:30px;top:50%;margin-top:-25px;left:50%;margin-left:-100px;text-align:center;background:url(../img/progress.gif) center bottom repeat-x}.elfinder-resize-row{margin-bottom:9px;position:relative}.elfinder-resize-label{float:left;width:80px;padding-top:3px}.elfinder-resize-checkbox-label{border:1px solid transparent}.elfinder-dialog-resize .elfinder-resize-whctrls{margin:-20px 5px 0}.elfinder-ltr .elfinder-dialog-resize .elfinder-resize-whctrls{float:right}.elfinder-help-team div,.elfinder-rtl .elfinder-dialog-resize .elfinder-resize-whctrls{float:left}.elfinder-dialog-resize .ui-resizable-e,.elfinder-dialog-resize .ui-resizable-w{height:100%;width:10px}.elfinder-dialog-resize .ui-resizable-n,.elfinder-dialog-resize .ui-resizable-s{width:100%;height:10px}.elfinder-dialog-resize .ui-resizable-e{margin-right:-7px}.elfinder-dialog-resize .ui-resizable-w{margin-left:-7px}.elfinder-dialog-resize .ui-resizable-s{margin-bottom:-7px}.elfinder-dialog-resize .ui-resizable-n{margin-top:-7px}.elfinder-dialog-resize .ui-resizable-ne,.elfinder-dialog-resize .ui-resizable-nw,.elfinder-dialog-resize .ui-resizable-se,.elfinder-dialog-resize .ui-resizable-sw{width:10px;height:10px}.elfinder-dialog-resize .ui-resizable-se{background:0 0;bottom:0;right:0;margin-right:-7px;margin-bottom:-7px}.elfinder-dialog-resize .ui-resizable-sw{margin-left:-7px;margin-bottom:-7px}.elfinder-dialog-resize .ui-resizable-ne{margin-right:-7px;margin-top:-7px}.elfinder-dialog-resize .ui-resizable-nw{margin-left:-7px;margin-top:-7px}.elfinder-touch .elfinder-dialog-resize .ui-resizable-n,.elfinder-touch .elfinder-dialog-resize .ui-resizable-s{height:20px}.elfinder-touch .elfinder-dialog-resize .ui-resizable-e,.elfinder-touch .elfinder-dialog-resize .ui-resizable-w{width:20px}.elfinder-touch .elfinder-dialog-resize .ui-resizable-ne,.elfinder-touch .elfinder-dialog-resize .ui-resizable-nw,.elfinder-touch .elfinder-dialog-resize .ui-resizable-se,.elfinder-touch .elfinder-dialog-resize .ui-resizable-sw{width:30px;height:30px}.elfinder-touch .elfinder-dialog-resize .elfinder-resize-preview .ui-resizable-se{width:30px;height:30px;margin:0}.elfinder-dialog-resize .ui-icon-grip-solid-vertical{position:absolute;top:50%;right:0;margin-top:-8px;margin-right:-11px}.elfinder-dialog-resize .ui-icon-grip-solid-horizontal{position:absolute;left:50%;bottom:0;margin-left:-8px;margin-bottom:-11px}.elfinder-dialog-resize .elfinder-resize-row .ui-buttonset{float:right}.elfinder-dialog-resize .elfinder-resize-degree input,.elfinder-dialog-resize input.elfinder-resize-quality,.elfinder-mobile .elfinder-resize-control input[type=number]{width:3.5em}.elfinder-mobile .elfinder-dialog-resize .elfinder-resize-degree input,.elfinder-mobile .elfinder-dialog-resize input.elfinder-resize-quality{width:2.5em}.elfinder-dialog-resize .elfinder-resize-degree button.ui-button{padding:6px 8px}.elfinder-dialog-resize button.ui-button span{padding:0}.elfinder-dialog-resize .elfinder-resize-jpgsize{font-size:90%}.ui-widget-content .elfinder-resize-container .elfinder-resize-rotate-slider{width:195px;margin:10px 7px;background-color:#fafafa}.elfinder-dialog-resize .elfinder-resize-type span.ui-checkboxradio-icon{display:none}.elfinder-resize-preset-container{box-sizing:border-box;border-radius:5px}.elfinder-file-edit{width:100%;height:100%;margin:0;padding:2px;border:1px solid #ccc;box-sizing:border-box;resize:none}.elfinder-touch .elfinder-file-edit{font-size:16px}.elfinder-dialog-edit .ui-dialog-content.elfinder-edit-editor{background-color:#fff}.elfinder-dialog-edit .ui-dialog-content.elfinder-edit-editor .elfinder-edit-imageeditor{width:100%;height:300px;max-height:100%;text-align:center}.elfinder-dialog-edit .ui-dialog-content.elfinder-edit-editor .elfinder-edit-imageeditor *{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;user-select:none}.elfinder-edit-imageeditor .tui-image-editor-main-container .tui-image-editor-main{top:0}.elfinder-edit-imageeditor .tui-image-editor-main-container .tui-image-editor-header{display:none}.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-crop .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-draw .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-filter .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-flip .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-icon .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-mask .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-rotate .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-shape .tui-image-editor-wrap,.elfinder-edit-imageeditor .tui-image-editor-main.tui-image-editor-menu-text .tui-image-editor-wrap{height:calc(100% - 150px)}.elfinder-touch.elfinder-fullscreen-native textarea.elfinder-file-edit{padding-bottom:20em;margin-bottom:-20em}.elfinder-dialog-edit .ui-dialog-buttonpane .elfinder-dialog-confirm-encoding{font-size:12px}.ui-dialog-buttonpane .ui-dialog-buttonset.elfinder-edit-extras{margin:0 1em 0 .2em;float:left}.ui-dialog-buttonpane .ui-dialog-buttonset.elfinder-edit-extras-quality{padding-top:6px}.ui-dialog-buttonpane .ui-dialog-buttonset.elfinder-edit-extras select{font-size:12px;margin-top:8px}.elfinder-dialog-edit .ui-dialog-buttonpane .ui-icon,.elfinder-edit-onlineconvert-bottom-btn button,.elfinder-edit-onlineconvert-button button,.elfinder-preference dt label{cursor:pointer}.elfinder-edit-spinner{position:absolute;top:50%;text-align:center;width:100%;font-size:16pt}.elfinder-dialog-edit .elfinder-edit-spinner .elfinder-spinner,.elfinder-dialog-edit .elfinder-edit-spinner .elfinder-spinner-text{float:none}.elfinder-dialog-edit .elfinder-toast>div{width:280px}.elfinder-edit-onlineconvert-button{display:inline-block;width:180px;min-height:30px;vertical-align:top}.elfinder-edit-onlineconvert-bottom-btn button.elfinder-button-ios-multiline{-webkit-appearance:none;border-radius:16px;color:#000;text-align:center;padding:8px;background-color:#eee;background-image:-webkit-linear-gradient(top,#fafafa 0%,#c4c4c4 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#c4c4c4 100%)}.elfinder-edit-onlineconvert-button .elfinder-button-icon{margin:0 10px;vertical-align:middle;cursor:pointer}.elfinder-edit-onlineconvert-bottom-btn{text-align:center;margin:10px 0 0}.elfinder-edit-onlineconvert-link{margin-top:1em;text-align:center}.elfinder-edit-onlineconvert-link .elfinder-button-icon{background-image:url(../img/editor-icons.png);background-repeat:no-repeat;background-position:0 -144px;margin-bottom:-3px}.elfinder-edit-onlineconvert-link a,ul.elfinder-help-integrations a{text-decoration:none}div.elfinder-cwd-wrapper-list tr.ui-state-default td span.ui-icon{position:absolute;top:4px;left:0;right:0;margin:auto 0 auto auto}.elfinder-touch div.elfinder-cwd-wrapper-list tr.ui-state-default td span.ui-icon{top:7px}.elfinder-rtl div.elfinder-cwd-wrapper-list tr.ui-state-default td span.ui-icon{margin:auto auto auto 0}.elfinder-help{margin-bottom:.5em;-webkit-overflow-scrolling:touch}.elfinder-help .ui-tabs-panel{overflow:auto;padding:10px}.elfinder-dialog .ui-tabs .ui-tabs-nav li{overflow:hidden}.elfinder-dialog .ui-tabs .ui-tabs-nav li a{padding:.2em .8em;display:inline-block}.elfinder-touch .elfinder-dialog .ui-tabs .ui-tabs-nav li a{padding:.5em}.elfinder-dialog .ui-tabs-active a{background:inherit}.elfinder-help-shortcuts{height:auto;padding:10px;margin:0;box-sizing:border-box}.elfinder-help-shortcut{white-space:nowrap;clear:both}.elfinder-help-shortcut-pattern{float:left;width:160px}.elfinder-help-logo{width:100px;height:96px;float:left;margin-right:1em;background:url(../img/logo.png) center center no-repeat}.elfinder-help h3{font-size:1.5em;margin:.2em 0 .3em}.elfinder-help-separator{clear:both;padding:.5em}.elfinder-help-link{display:inline-block;margin-right:12px;padding:2px 0;white-space:nowrap}.elfinder-rtl .elfinder-help-link{margin-right:0;margin-left:12px}.elfinder-help .ui-priority-secondary{font-size:.9em}.elfinder-help .ui-priority-primary{margin-bottom:7px}.elfinder-help-team{clear:both;text-align:right;border-bottom:1px solid #ccc;margin:.5em 0;font-size:.9em}.elfinder-help-license{font-size:.9em}.elfinder-help-disabled{font-weight:700;text-align:center;margin:90px 0}.elfinder-help .elfinder-dont-panic{display:block;border:1px solid transparent;width:200px;height:200px;margin:30px auto;text-decoration:none;text-align:center;position:relative;background:#d90004;-moz-box-shadow:5px 5px 9px #111;-webkit-box-shadow:5px 5px 9px #111;box-shadow:5px 5px 9px #111;background:-moz-radial-gradient(80px 80px,circle farthest-corner,#d90004 35%,#960004 100%);background:-webkit-gradient(radial,80 80,60,80 80,120,from(#d90004),to(#960004));-moz-border-radius:100px;-webkit-border-radius:100px;border-radius:100px;outline:none}.elfinder-help .elfinder-dont-panic span{font-size:3em;font-weight:700;text-align:center;color:#fff;position:absolute;left:0;top:45px}ul.elfinder-help-integrations ul{padding:0;margin:0 1em 1em}ul.elfinder-help-integrations a:hover{text-decoration:underline}.elfinder-help-debug{height:100%;padding:0;margin:0;overflow:none;border:none}.elfinder-help-debug .ui-tabs-panel{padding:0;margin:0;overflow:auto}.elfinder-help-debug fieldset{margin-bottom:10px;border-color:#789;border-radius:10px}.elfinder-help-debug legend{font-size:1.2em;font-weight:700;color:#2e8b57}.elfinder-help-debug dl{margin:0}.elfinder-help-debug dt{color:#789}.elfinder-help-debug dt:before{content:"["}.elfinder-help-debug dt:after{content:"]"}.elfinder-help-debug dd{margin-left:1em}.elfinder-dialog .elfinder-preference .ui-tabs-nav{margin-bottom:1px;height:auto}.elfinder-preference .ui-tabs-panel{padding:10px 10px 0;overflow:auto;box-sizing:border-box;-webkit-overflow-scrolling:touch}.elfinder-preference a.ui-state-hover,.elfinder-preference label.ui-state-hover{border:none}.elfinder-preference dl{width:100%;display:inline-block;margin:.5em 0}.elfinder-preference dt{display:block;width:200px;clear:left;float:left;max-width:50%}.elfinder-rtl .elfinder-preference dt{clear:right;float:right}.elfinder-preference dd{margin-bottom:1em}.elfinder-preference dd input[type=checkbox],.elfinder-preference dd label{white-space:nowrap;display:inline-block;cursor:pointer}.elfinder-preference dt.elfinder-preference-checkboxes{width:100%;max-width:none}.elfinder-preference dd.elfinder-preference-checkboxes{padding-top:3ex}.elfinder-preference select{max-width:100%}.elfinder-preference dd.elfinder-preference-iconSize .ui-slider{width:50%;max-width:100px;display:inline-block;margin:0 10px}.elfinder-preference button{margin:0 16px}.elfinder-preference button+button{margin:0 -10px}.elfinder-preference .elfinder-preference-taball .elfinder-reference-hide-taball{display:none}.elfinder-preference-theme fieldset{margin-bottom:10px}.elfinder-preference-theme legend a{font-size:1.8em;text-decoration:none;cursor:pointer}.elfinder-preference-theme dt{width:20%;word-break:break-all}.elfinder-preference-theme dt:after{content:" :"}.elfinder-preference-theme dd{margin-inline-start:20%}.elfinder-preference img.elfinder-preference-theme-image{display:block;margin-left:auto;margin-right:auto;max-width:90%;max-height:200px;cursor:pointer}.elfinder-preference-theme-btn,.elfinder-rename-batch-type{text-align:center}.elfinder-preference-theme button.elfinder-preference-theme-default{display:inline;margin:0 10px;font-size:8pt}.elfinder-rtl .elfinder-info-title .elfinder-cwd-icon:before{right:33px;left:auto}.elfinder-info-title .elfinder-cwd-icon.elfinder-cwd-bgurl:after{content:none}.elfinder-upload-dialog-wrapper .elfinder-upload-dirselect{position:absolute;bottom:2px;width:16px;height:16px;padding:10px;border:none;overflow:hidden;cursor:pointer}.elfinder .elfinder-contextmenu-ltr .elfinder-contextmenu-item .ui-icon,.elfinder-ltr .elfinder-upload-dialog-wrapper .elfinder-upload-dirselect{left:2px}.elfinder .elfinder-contextmenu-rtl .elfinder-contextmenu-item .ui-icon,.elfinder-rtl .elfinder-upload-dialog-wrapper .elfinder-upload-dirselect{right:2px}.elfinder-ltr .elfinder-rm-title .elfinder-cwd-icon:before{left:38px}.elfinder-rtl .elfinder-rm-title .elfinder-cwd-icon:before{right:86px;left:auto}.elfinder-rm-title .elfinder-cwd-icon.elfinder-cwd-bgurl:after{content:none}.elfinder-rename-batch div{margin:5px 8px}.elfinder-rename-batch .elfinder-rename-batch-name input{width:100%;font-size:1.6em}.elfinder-rename-batch .elfinder-rename-batch-type label{margin:2px;font-size:.9em}.elfinder-rename-batch-preview{padding:0 8px;font-size:1.1em;min-height:4ex}.ui-front{z-index:100}.elfinder{padding:0;position:relative;display:block;visibility:visible;font-size:18px;font-family:Verdana,Arial,Helvetica,sans-serif}.elfinder-ios input,.elfinder-ios select,.elfinder-ios textarea{font-size:16px!important}.elfinder.elfinder-fullscreen>.ui-resizable-handle{display:none}.elfinder-font-mono{line-height:2ex}.elfinder.elfinder-processing *{cursor:progress!important}.elfinder.elfinder-processing.elfinder-touch .elfinder-workzone:after{position:absolute;top:0;width:100%;height:3px;content:'';left:0;background-image:url(../img/progress.gif);opacity:.6;pointer-events:none}.elfinder :not(input):not(textarea):not(select):not([contenteditable=true]),.elfinder-contextmenu :not(input):not(textarea):not(select):not([contenteditable=true]){-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;user-select:none}.elfinder .overflow-scrolling-touch{-webkit-overflow-scrolling:touch}.elfinder-rtl{text-align:right;direction:rtl}.elfinder-workzone{padding:0;position:relative;overflow:hidden}.elfinder-lock,.elfinder-perms,.elfinder-symlink{position:absolute;width:16px;height:16px;background-image:url(../img/toolbar.png);background-repeat:no-repeat}.elfinder-perms,.elfinder-symlink{background-position:0 -528px}.elfinder-na .elfinder-perms{background-position:0 -96px}.elfinder-ro .elfinder-perms{background-position:0 -64px}.elfinder-wo .elfinder-perms{background-position:0 -80px}.elfinder-group .elfinder-perms{background-position:0 0}.elfinder-lock{background-position:0 -656px}.elfinder-drag-helper{top:0;left:0;width:70px;height:60px;padding:0 0 0 25px;z-index:100000;will-change:left,top}.elfinder-drag-helper.html5-native{position:absolute;top:-1000px;left:-1000px}.elfinder-drag-helper-icon-status{position:absolute;width:16px;height:16px;left:42px;top:60px;background:url(../img/toolbar.png) 0 -96px no-repeat;display:block}.elfinder-drag-helper-move .elfinder-drag-helper-icon-status{background-position:0 -720px}.elfinder-drag-helper-plus .elfinder-drag-helper-icon-status{background-position:0 -544px}.elfinder-drag-num{display:inline-box;position:absolute;top:0;left:0;width:auto;height:14px;text-align:center;padding:1px 3px;font-weight:700;color:#fff;background-color:red;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}.elfinder-drag-helper .elfinder-cwd-icon{margin:0 0 0 -24px;float:left}.elfinder-overlay{position:absolute;opacity:.2;filter:Alpha(Opacity=20)}.elfinder .elfinder-panel{position:relative;background-image:none;padding:7px 12px}[draggable=true]{-khtml-user-drag:element}.elfinder [contentEditable=true]:empty:not(:focus):before{content:attr(data-ph)}.elfinder div.elfinder-bottomtray{position:fixed;bottom:0;max-width:100%;opacity:.8}.elfinder.elfinder-ltr div.elfinder-bottomtray{left:0}.elfinder.elfinder-rtl div.elfinder-bottomtray{right:0}.elfinder .elfinder-ui-tooltip,.elfinder-ui-tooltip{font-size:14px;padding:2px 4px}.elfinder .elfinder-contextmenu,.elfinder .elfinder-contextmenu-sub{position:absolute;border:1px solid #aaa;background:#fff;color:#555;padding:4px 0;top:0;left:0}.elfinder .elfinder-contextmenu-sub{top:5px}.elfinder .elfinder-contextmenu-ltr .elfinder-contextmenu-sub{margin-left:-5px}.elfinder .elfinder-contextmenu-rtl .elfinder-contextmenu-sub{margin-right:-5px}.elfinder .elfinder-contextmenu-header{margin-top:-4px;padding:0 .5em .2ex;border:none;text-align:center}.elfinder .elfinder-contextmenu-header span{font-size:.8em;font-weight:bolder}.elfinder .elfinder-contextmenu-item{position:relative;display:block;padding:4px 30px;text-decoration:none;white-space:nowrap;cursor:default}.elfinder .elfinder-contextmenu-item.ui-state-active{border:none}.elfinder .elfinder-contextmenu-item .ui-icon{width:16px;height:16px;position:absolute;left:auto;right:auto;top:50%;margin-top:-8px}.elfinder-touch .elfinder-contextmenu-item{padding:12px 38px}.elfinder-navbar-root-local.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_local.svg);background-size:contain}.elfinder-navbar-root-trash.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_trash.svg);background-size:contain}.elfinder-navbar-root-ftp.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_ftp.svg);background-size:contain}.elfinder-navbar-root-sql.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_sql.svg);background-size:contain}.elfinder-navbar-root-dropbox.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_dropbox.svg);background-size:contain}.elfinder-navbar-root-googledrive.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_googledrive.svg);background-size:contain}.elfinder-navbar-root-onedrive.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_onedrive.svg);background-size:contain}.elfinder-navbar-root-box.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_box.svg);background-size:contain}.elfinder-navbar-root-zip.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_zip.svg);background-size:contain}.elfinder-navbar-root-network.elfinder-contextmenu-icon{background-image:url(../img/volume_icon_network.svg);background-size:contain}.elfinder .elfinder-contextmenu .elfinder-contextmenu-item span{display:block}.elfinder .elfinder-contextmenu-sub .elfinder-contextmenu-item{padding-left:12px;padding-right:12px}.elfinder .elfinder-contextmenu-ltr .elfinder-contextmenu-item{text-align:left}.elfinder .elfinder-contextmenu-rtl .elfinder-contextmenu-item{text-align:right}.elfinder .elfinder-contextmenu-ltr .elfinder-contextmenu-sub .elfinder-contextsubmenu-item-icon{padding-left:28px}.elfinder .elfinder-contextmenu-rtl .elfinder-contextmenu-sub .elfinder-contextsubmenu-item-icon{padding-right:28px}.elfinder-touch .elfinder-contextmenu-ltr .elfinder-contextmenu-sub .elfinder-contextsubmenu-item-icon{padding-left:36px}.elfinder-touch .elfinder-contextmenu-rtl .elfinder-contextmenu-sub .elfinder-contextsubmenu-item-icon{padding-right:36px}.elfinder .elfinder-contextmenu-arrow,.elfinder .elfinder-contextmenu-extra-icon,.elfinder .elfinder-contextmenu-icon{position:absolute;top:50%;margin-top:-8px;overflow:hidden}.elfinder-touch .elfinder-button-icon.elfinder-contextmenu-icon{transform-origin:center center}.elfinder .elfinder-contextmenu-ltr .elfinder-contextmenu-icon{left:8px}.elfinder .elfinder-contextmenu-ltr .elfinder-contextmenu-extra-icon,.elfinder .elfinder-contextmenu-rtl .elfinder-contextmenu-icon{right:8px}.elfinder .elfinder-contextmenu-rtl .elfinder-contextmenu-extra-icon{left:8px}.elfinder .elfinder-contextmenu-arrow{width:16px;height:16px;background:url(../img/arrows-normal.png) 5px 4px no-repeat}.elfinder .elfinder-contextmenu-ltr .elfinder-contextmenu-arrow{right:5px}.elfinder .elfinder-contextmenu-rtl .elfinder-contextmenu-arrow{left:5px;background-position:0 -10px}.elfinder .elfinder-contextmenu-extra-icon a,.elfinder .elfinder-contextmenu-extra-icon span{position:relative;width:100%;height:100%;margin:0;color:transparent!important;text-decoration:none;cursor:pointer}.elfinder .elfinder-contextmenu .ui-state-hover{border:0 solid;background-image:none}.elfinder .elfinder-contextmenu-separator{height:0;border-top:1px solid #ccc;margin:0 1px}.elfinder .elfinder-contextmenu-item .elfinder-button-icon.ui-state-disabled{background-image:url(../img/toolbar.png)}.elfinder-cwd-wrapper{overflow:auto;position:relative;padding:2px;margin:0}.elfinder-cwd-wrapper-list{padding:0}.elfinder-cwd{position:absolute;top:0;cursor:default;padding:0;margin:0;-ms-touch-action:auto;touch-action:auto;min-width:100%}.elfinder-ltr .elfinder-cwd{left:0}.elfinder-rtl .elfinder-cwd{right:0}.elfinder-cwd.elfinder-table-header-sticky{position:-webkit-sticky;position:-ms-sticky;position:sticky;top:0;left:auto;right:auto;width:-webkit-max-content;width:-moz-max-content;width:-ms-max-content;width:max-content;height:0;overflow:visible}.elfinder-cwd.elfinder-table-header-sticky table{border-top:2px solid;padding-top:0}.elfinder-cwd.elfinder-table-header-sticky td{display:inline-block}.elfinder-droppable-active .elfinder-cwd.elfinder-table-header-sticky table{border-top:2px solid transparent}.elfinder .elfinder-cwd table tbody.elfinder-cwd-fixheader,.elfinder-cwd-fixheader .elfinder-cwd{position:relative}.elfinder .elfinder-cwd-wrapper.elfinder-droppable-active{outline:2px solid #8cafed;outline-offset:-2px}.elfinder-cwd-wrapper-empty .elfinder-cwd:after{display:block;height:auto;width:90%;width:calc(100% - 20px);position:absolute;top:50%;left:50%;-ms-transform:translateY(-50%) translateX(-50%);-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);line-height:1.5em;text-align:center;white-space:pre-wrap;opacity:.6;filter:Alpha(Opacity=60);font-weight:700}.elfinder-cwd-file .elfinder-cwd-select{position:absolute;top:0;left:0;background-color:transparent;opacity:.4;filter:Alpha(Opacity=40)}.elfinder-mobile .elfinder-cwd-file .elfinder-cwd-select{width:30px;height:30px}.elfinder .elfinder-cwd-selectall,.elfinder-cwd-file.ui-selected .elfinder-cwd-select{opacity:.8;filter:Alpha(Opacity=80)}.elfinder-rtl .elfinder-cwd-file .elfinder-cwd-select{left:auto;right:0}.elfinder .elfinder-cwd-selectall{position:absolute;width:30px;height:30px;top:0}.elfinder .elfinder-workzone.elfinder-cwd-wrapper-empty .elfinder-cwd-selectall{display:none}.elfinder-ltr .elfinder-workzone .elfinder-cwd-selectall{text-align:right;right:18px;left:auto}.elfinder-rtl .elfinder-workzone .elfinder-cwd-selectall{text-align:left;right:auto;left:18px}.elfinder-ltr.elfinder-mobile .elfinder-workzone .elfinder-cwd-selectall{right:0}.elfinder-rtl.elfinder-mobile .elfinder-workzone .elfinder-cwd-selectall{left:0}.elfinder-cwd-view-icons .elfinder-cwd-file .elfinder-cwd-select.ui-state-hover{background-color:transparent}.elfinder-cwd-view-icons .elfinder-cwd-file{width:120px;height:90px;padding-bottom:2px;cursor:default;border:none;position:relative}.elfinder .std42-dialog .ui-dialog-content label,.elfinder-cwd-view-icons .elfinder-cwd-file .ui-state-active{border:none}.elfinder-ltr .elfinder-cwd-view-icons .elfinder-cwd-file{float:left;margin:0 3px 2px 0}.elfinder-rtl .elfinder-cwd-view-icons .elfinder-cwd-file{float:right;margin:0 0 5px 3px}.elfinder-cwd-view-icons .elfinder-cwd-file .ui-state-hover{border:0 solid}.elfinder-cwd-view-icons .elfinder-cwd-file-wrapper{width:52px;height:52px;margin:1px auto;padding:2px;position:relative}.elfinder-cwd-size1 .elfinder-cwd-icon:before,.elfinder-cwd-size2 .elfinder-cwd-icon:before,.elfinder-cwd-size3 .elfinder-cwd-icon:before{top:3px;display:block}.elfinder-cwd-size1.elfinder-cwd-view-icons .elfinder-cwd-file{width:120px;height:112px}.elfinder-cwd-size1.elfinder-cwd-view-icons .elfinder-cwd-file-wrapper{width:74px;height:74px}.elfinder-cwd-size1 .elfinder-cwd-icon,.elfinder-cwd-size2 .elfinder-cwd-icon,.elfinder-cwd-size3 .elfinder-cwd-icon{-ms-transform-origin:top center;-ms-transform:scale(1.5);-webkit-transform-origin:top center;-webkit-transform:scale(1.5);transform-origin:top center;transform:scale(1.5)}.elfinder-cwd-size1 .elfinder-cwd-icon.elfinder-cwd-bgurl:before{-ms-transform-origin:top left;-ms-transform:scale(1.35) translate(-4px,15%);-webkit-transform-origin:top left;-webkit-transform:scale(1.35) translate(-4px,15%);transform-origin:top left;transform:scale(1.35) translate(-4px,15%)}.elfinder-cwd-size1 .elfinder-cwd-icon.elfinder-cwd-bgurl:after{-ms-transform:scale(1) translate(10px,-5px);-webkit-transform:scale(1) translate(10px,-5px);transform:scale(1) translate(10px,-5px)}.elfinder-cwd-size1 .elfinder-cwd-icon.elfinder-cwd-bgurl{-ms-transform-origin:center center;-ms-transform:scale(1);-webkit-transform-origin:center center;-webkit-transform:scale(1);transform-origin:center center;transform:scale(1);width:72px;height:72px;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px}.elfinder-cwd-size2.elfinder-cwd-view-icons .elfinder-cwd-file{width:140px;height:134px}.elfinder-cwd-size2.elfinder-cwd-view-icons .elfinder-cwd-file-wrapper{width:98px;height:98px}.elfinder-cwd-size2 .elfinder-cwd-icon,.elfinder-cwd-size3 .elfinder-cwd-icon{-ms-transform:scale(2);-webkit-transform:scale(2);transform:scale(2)}.elfinder-cwd-size2 .elfinder-cwd-icon.elfinder-cwd-bgurl:before{-ms-transform-origin:top left;-ms-transform:scale(1.8) translate(-5px,18%);-webkit-transform-origin:top left;-webkit-transform:scale(1.8) translate(-5px,18%);transform-origin:top left;transform:scale(1.8) translate(-5px,18%)}.elfinder-cwd-size2 .elfinder-cwd-icon.elfinder-cwd-bgurl:after{-ms-transform:scale(1.1) translate(0,10px);-webkit-transform:scale(1.1) translate(0,10px);transform:scale(1.1) translate(0,10px)}.elfinder-cwd-size2 .elfinder-cwd-icon.elfinder-cwd-bgurl{-ms-transform-origin:center center;-ms-transform:scale(1);-webkit-transform-origin:center center;-webkit-transform:scale(1);transform-origin:center center;transform:scale(1);width:96px;height:96px;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}.elfinder-cwd-size3.elfinder-cwd-view-icons .elfinder-cwd-file{width:174px;height:158px}.elfinder-cwd-size3.elfinder-cwd-view-icons .elfinder-cwd-file-wrapper{width:122px;height:122px}.elfinder-cwd-size3 .elfinder-cwd-icon{-ms-transform:scale(2.5);-webkit-transform:scale(2.5);transform:scale(2.5)}.elfinder-cwd-size3 .elfinder-cwd-icon.elfinder-cwd-bgurl:before{-ms-transform-origin:top left;-ms-transform:scale(2.25) translate(-6px,20%);-webkit-transform-origin:top left;-webkit-transform:scale(2.25) translate(-6px,20%);transform-origin:top left;transform:scale(2.25) translate(-6px,20%)}.elfinder-cwd-size3 .elfinder-cwd-icon.elfinder-cwd-bgurl:after{-ms-transform:scale(1.2) translate(-9px,22px);-webkit-transform:scale(1.2) translate(-9px,22px);transform:scale(1.2) translate(-9px,22px)}.elfinder-cwd-size3 .elfinder-cwd-icon.elfinder-cwd-bgurl{-ms-transform-origin:center center;-ms-transform:scale(1);-webkit-transform-origin:center center;-webkit-transform:scale(1);transform-origin:center center;transform:scale(1);width:120px;height:120px;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px}.elfinder-cwd-view-icons .elfinder-cwd-filename{text-align:center;max-height:2.4em;line-height:1.2em;white-space:pre-line;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;margin:3px 1px 0;padding:1px;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;word-break:break-word;overflow-wrap:break-word;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.elfinder-cwd-view-icons .elfinder-perms{bottom:4px;right:2px}.elfinder-cwd-view-icons .elfinder-lock{top:-3px;right:-2px}.elfinder-cwd-view-icons .elfinder-symlink{bottom:6px;left:0}.elfinder-cwd-icon{display:block;width:48px;height:48px;margin:0 auto;background-image:url(../img/icons-big.svg);background-image:url(../img/icons-big.png) \9;background-position:0 0;background-repeat:no-repeat;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.elfinder-cwd .elfinder-navbar-root-local.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-local td .elfinder-cwd-icon,.elfinder-navbar-root-local .elfinder-cwd-icon{background-image:url(../img/volume_icon_local.svg);background-image:url(../img/volume_icon_local.png) \9;background-position:0 0;background-size:contain}.elfinder-cwd .elfinder-navbar-root-local.elfinder-droppable-active .elfinder-cwd-icon{background-position:1px -1px}.elfinder-cwd .elfinder-navbar-root-trash.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-trash td .elfinder-cwd-icon,.elfinder-navbar-root-trash .elfinder-cwd-icon{background-image:url(../img/volume_icon_trash.svg);background-image:url(../img/volume_icon_trash.png) \9;background-position:0 0;background-size:contain}.elfinder-cwd .elfinder-navbar-root-trash.elfinder-droppable-active .elfinder-cwd-icon{background-position:1px -1px}.elfinder-cwd .elfinder-navbar-root-ftp.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-ftp td .elfinder-cwd-icon,.elfinder-navbar-root-ftp .elfinder-cwd-icon{background-image:url(../img/volume_icon_ftp.svg);background-image:url(../img/volume_icon_ftp.png) \9;background-position:0 0;background-size:contain}.elfinder-cwd .elfinder-navbar-root-ftp.elfinder-droppable-active .elfinder-cwd-icon{background-position:1px -1px}.elfinder-cwd .elfinder-navbar-root-sql.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-sql td .elfinder-cwd-icon,.elfinder-navbar-root-sql .elfinder-cwd-icon{background-image:url(../img/volume_icon_sql.svg);background-image:url(../img/volume_icon_sql.png) \9;background-position:0 0;background-size:contain}.elfinder-cwd .elfinder-navbar-root-sql.elfinder-droppable-active .elfinder-cwd-icon{background-position:1px -1px}.elfinder-cwd .elfinder-navbar-root-dropbox.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-dropbox td .elfinder-cwd-icon,.elfinder-navbar-root-dropbox .elfinder-cwd-icon{background-image:url(../img/volume_icon_dropbox.svg);background-image:url(../img/volume_icon_dropbox.png) \9;background-position:0 0;background-size:contain}.elfinder-cwd .elfinder-navbar-root-dropbox.elfinder-droppable-active .elfinder-cwd-icon{background-position:1px -1px}.elfinder-cwd-view-list .elfinder-navbar-root-googledrive td .elfinder-cwd-icon,.elfinder-navbar-root-googledrive .elfinder-cwd-icon{background-position:0 0}.elfinder-cwd .elfinder-navbar-root-googledrive.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-googledrive td .elfinder-cwd-icon,.elfinder-navbar-root-googledrive .elfinder-cwd-icon{background-image:url(../img/volume_icon_googledrive.svg);background-image:url(../img/volume_icon_googledrive.png) \9;background-size:contain}.elfinder-cwd-view-list .elfinder-navbar-root-onedrive td .elfinder-cwd-icon,.elfinder-navbar-root-onedrive .elfinder-cwd-icon{background-position:0 0}.elfinder-cwd .elfinder-navbar-root-onedrive.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-onedrive td .elfinder-cwd-icon,.elfinder-navbar-root-onedrive .elfinder-cwd-icon{background-image:url(../img/volume_icon_onedrive.svg);background-image:url(../img/volume_icon_onedrive.png) \9;background-size:contain}.elfinder-cwd-view-list .elfinder-navbar-root-box td .elfinder-cwd-icon,.elfinder-navbar-root-box .elfinder-cwd-icon{background-position:0 0}.elfinder-cwd .elfinder-navbar-root-box.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-box td .elfinder-cwd-icon,.elfinder-navbar-root-box .elfinder-cwd-icon{background-image:url(../img/volume_icon_box.svg);background-image:url(../img/volume_icon_box.png) \9;background-size:contain}.elfinder-cwd .elfinder-navbar-root-zip.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-zip td .elfinder-cwd-icon,.elfinder-navbar-root-zip .elfinder-cwd-icon{background-image:url(../img/volume_icon_zip.svg);background-image:url(../img/volume_icon_zip.png) \9;background-position:0 0;background-size:contain}.elfinder-cwd .elfinder-navbar-root-box.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd .elfinder-navbar-root-googledrive.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd .elfinder-navbar-root-onedrive.elfinder-droppable-active .elfinder-cwd-icon{background-position:1px -1px}.elfinder-cwd .elfinder-navbar-root-network.elfinder-droppable-active .elfinder-cwd-icon,.elfinder-cwd-view-list .elfinder-navbar-root-network td .elfinder-cwd-icon,.elfinder-navbar-root-network .elfinder-cwd-icon{background-image:url(../img/volume_icon_network.svg);background-image:url(../img/volume_icon_network.png) \9;background-position:0 0;background-size:contain}.elfinder-cwd .elfinder-navbar-root-network.elfinder-droppable-active .elfinder-cwd-icon{background-position:1px -1px}.elfinder-cwd-icon:before{content:none;position:absolute;left:0;top:5px;min-width:20px;max-width:84px;text-align:center;padding:0 4px 1px;border-radius:4px;font-family:Verdana;font-size:10px;line-height:1.3em;-webkit-transform:scale(.9);-moz-transform:scale(.9);-ms-transform:scale(.9);-o-transform:scale(.9);transform:scale(.9)}.elfinder-cwd-view-icons .elfinder-cwd-icon.elfinder-cwd-bgurl:before{left:-10px}.elfinder-cwd-icon.elfinder-cwd-icon-mp2t:before{content:'ts'}.elfinder-cwd-icon.elfinder-cwd-icon-dash-xml:before{content:'dash'}.elfinder-cwd-icon.elfinder-cwd-icon-x-mpegurl:before{content:'hls'}.elfinder-cwd-icon.elfinder-cwd-icon-x-c:before{content:'c++'}.elfinder-cwd-icon.elfinder-cwd-bgurl{background-position:center center;background-repeat:no-repeat}.elfinder-cwd-icon.elfinder-cwd-bgurl,.elfinder-cwd-icon.elfinder-cwd-bgurl.elfinder-cwd-bgself{-moz-background-size:cover;background-size:cover}.elfinder-cwd-icon.elfinder-cwd-bgurl:after{content:' '}.elfinder-cwd-bgurl:after{position:relative;display:inline-block;top:36px;left:-38px;width:48px;height:48px;background-image:url(../img/icons-big.svg);background-image:url(../img/icons-big.png) \9;background-repeat:no-repeat;background-size:auto!important;opacity:.8;filter:Alpha(Opacity=60);-webkit-transform-origin:54px -24px;-webkit-transform:scale(.6);-moz-transform-origin:54px -24px;-moz-transform:scale(.6);-ms-transform-origin:54px -24px;-ms-transform:scale(.6);-o-transform-origin:54px -24px;-o-transform:scale(.6);transform-origin:54px -24px;transform:scale(.6)}.elfinder-cwd-icon.elfinder-cwd-icon-drag{width:48px;height:48px}.elfinder-cwd-icon-directory.elfinder-cwd-bgurl:after,.elfinder-cwd-icon-image.elfinder-cwd-bgurl:after,.elfinder-cwd-icon.elfinder-cwd-icon-drag:after,.elfinder-cwd-icon.elfinder-cwd-icon-drag:before{content:none}.elfinder-cwd .elfinder-droppable-active .elfinder-cwd-icon{background-position:0 -100px}.elfinder-cwd .elfinder-droppable-active{outline:2px solid #8cafed;outline-offset:-2px}.elfinder-cwd-icon-directory{background-position:0 -50px}.elfinder-cwd-icon-application,.elfinder-cwd-icon-application:after{background-position:0 -150px}.elfinder-cwd-icon-text,.elfinder-cwd-icon-text:after{background-position:0 -1350px}.elfinder-cwd-icon-plain,.elfinder-cwd-icon-plain:after,.elfinder-cwd-icon-x-empty,.elfinder-cwd-icon-x-empty:after{background-position:0 -200px}.elfinder-cwd-icon-image,.elfinder-cwd-icon-image:after,.elfinder-cwd-icon-vnd-adobe-photoshop,.elfinder-cwd-icon-vnd-adobe-photoshop:after{background-position:0 -250px}.elfinder-cwd-icon-postscript,.elfinder-cwd-icon-postscript:after{background-position:0 -1550px}.elfinder-cwd-icon-audio,.elfinder-cwd-icon-audio:after{background-position:0 -300px}.elfinder-cwd-icon-dash-xml,.elfinder-cwd-icon-flash-video,.elfinder-cwd-icon-video,.elfinder-cwd-icon-video:after,.elfinder-cwd-icon-vnd-apple-mpegurl,.elfinder-cwd-icon-x-mpegurl{background-position:0 -350px}.elfinder-cwd-icon-rtf,.elfinder-cwd-icon-rtf:after,.elfinder-cwd-icon-rtfd,.elfinder-cwd-icon-rtfd:after{background-position:0 -400px}.elfinder-cwd-icon-pdf,.elfinder-cwd-icon-pdf:after{background-position:0 -450px}.elfinder-cwd-icon-ms-excel,.elfinder-cwd-icon-ms-excel:after,.elfinder-cwd-icon-vnd-ms-excel,.elfinder-cwd-icon-vnd-ms-excel-addin-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-excel-addin-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-excel-sheet-binary-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-excel-sheet-binary-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-excel-sheet-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-excel-sheet-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-excel-template-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-excel-template-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-excel:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-spreadsheetml-sheet,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-spreadsheetml-sheet:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-spreadsheetml-template,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-spreadsheetml-template:after{background-position:0 -1450px}.elfinder-cwd-icon-vnd-oasis-opendocument-spreadsheet,.elfinder-cwd-icon-vnd-oasis-opendocument-spreadsheet-template,.elfinder-cwd-icon-vnd-oasis-opendocument-spreadsheet-template:after,.elfinder-cwd-icon-vnd-oasis-opendocument-spreadsheet:after{background-position:0 -1700px}.elfinder-cwd-icon-vnd-ms-powerpoint,.elfinder-cwd-icon-vnd-ms-powerpoint-addin-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-powerpoint-addin-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-powerpoint-presentation-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-powerpoint-presentation-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-powerpoint-slide-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-powerpoint-slide-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-powerpoint-slideshow-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-powerpoint-slideshow-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-powerpoint-template-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-powerpoint-template-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-powerpoint:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-presentation,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-presentation:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-slide,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-slide:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-slideshow,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-slideshow:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-template,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-presentationml-template:after{background-position:0 -1400px}.elfinder-cwd-icon-vnd-oasis-opendocument-presentation,.elfinder-cwd-icon-vnd-oasis-opendocument-presentation-template,.elfinder-cwd-icon-vnd-oasis-opendocument-presentation-template:after,.elfinder-cwd-icon-vnd-oasis-opendocument-presentation:after{background-position:0 -1650px}.elfinder-cwd-icon-msword,.elfinder-cwd-icon-msword:after,.elfinder-cwd-icon-vnd-ms-word,.elfinder-cwd-icon-vnd-ms-word-document-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-word-document-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-word-template-macroEnabled-12,.elfinder-cwd-icon-vnd-ms-word-template-macroEnabled-12:after,.elfinder-cwd-icon-vnd-ms-word:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-wordprocessingml-document,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-wordprocessingml-document:after,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-wordprocessingml-template,.elfinder-cwd-icon-vnd-openxmlformats-officedocument-wordprocessingml-template:after{background-position:0 -1500px}.elfinder-cwd-icon-vnd-oasis-opendocument-text,.elfinder-cwd-icon-vnd-oasis-opendocument-text-master,.elfinder-cwd-icon-vnd-oasis-opendocument-text-master:after,.elfinder-cwd-icon-vnd-oasis-opendocument-text-template,.elfinder-cwd-icon-vnd-oasis-opendocument-text-template:after,.elfinder-cwd-icon-vnd-oasis-opendocument-text-web,.elfinder-cwd-icon-vnd-oasis-opendocument-text-web:after,.elfinder-cwd-icon-vnd-oasis-opendocument-text:after{background-position:0 -1750px}.elfinder-cwd-icon-vnd-ms-office,.elfinder-cwd-icon-vnd-ms-office:after{background-position:0 -500px}.elfinder-cwd-icon-vnd-oasis-opendocument-chart,.elfinder-cwd-icon-vnd-oasis-opendocument-chart:after,.elfinder-cwd-icon-vnd-oasis-opendocument-database,.elfinder-cwd-icon-vnd-oasis-opendocument-database:after,.elfinder-cwd-icon-vnd-oasis-opendocument-formula,.elfinder-cwd-icon-vnd-oasis-opendocument-formula:after,.elfinder-cwd-icon-vnd-oasis-opendocument-graphics,.elfinder-cwd-icon-vnd-oasis-opendocument-graphics-template,.elfinder-cwd-icon-vnd-oasis-opendocument-graphics-template:after,.elfinder-cwd-icon-vnd-oasis-opendocument-graphics:after,.elfinder-cwd-icon-vnd-oasis-opendocument-image,.elfinder-cwd-icon-vnd-oasis-opendocument-image:after,.elfinder-cwd-icon-vnd-openofficeorg-extension,.elfinder-cwd-icon-vnd-openofficeorg-extension:after{background-position:0 -1600px}.elfinder-cwd-icon-html,.elfinder-cwd-icon-html:after{background-position:0 -550px}.elfinder-cwd-icon-css,.elfinder-cwd-icon-css:after{background-position:0 -600px}.elfinder-cwd-icon-javascript,.elfinder-cwd-icon-javascript:after,.elfinder-cwd-icon-x-javascript,.elfinder-cwd-icon-x-javascript:after{background-position:0 -650px}.elfinder-cwd-icon-x-perl,.elfinder-cwd-icon-x-perl:after{background-position:0 -700px}.elfinder-cwd-icon-x-python,.elfinder-cwd-icon-x-python:after{background-position:0 -750px}.elfinder-cwd-icon-x-ruby,.elfinder-cwd-icon-x-ruby:after{background-position:0 -800px}.elfinder-cwd-icon-x-sh,.elfinder-cwd-icon-x-sh:after,.elfinder-cwd-icon-x-shellscript,.elfinder-cwd-icon-x-shellscript:after{background-position:0 -850px}.elfinder-cwd-icon-x-c,.elfinder-cwd-icon-x-c--,.elfinder-cwd-icon-x-c--:after,.elfinder-cwd-icon-x-c--hdr,.elfinder-cwd-icon-x-c--hdr:after,.elfinder-cwd-icon-x-c--src,.elfinder-cwd-icon-x-c--src:after,.elfinder-cwd-icon-x-c:after,.elfinder-cwd-icon-x-chdr,.elfinder-cwd-icon-x-chdr:after,.elfinder-cwd-icon-x-csrc,.elfinder-cwd-icon-x-csrc:after,.elfinder-cwd-icon-x-java,.elfinder-cwd-icon-x-java-source,.elfinder-cwd-icon-x-java-source:after,.elfinder-cwd-icon-x-java:after{background-position:0 -900px}.elfinder-cwd-icon-x-php,.elfinder-cwd-icon-x-php:after{background-position:0 -950px}.elfinder-cwd-icon-xml,.elfinder-cwd-icon-xml:after{background-position:0 -1000px}.elfinder-cwd-icon-x-7z-compressed,.elfinder-cwd-icon-x-7z-compressed:after,.elfinder-cwd-icon-x-xz,.elfinder-cwd-icon-x-xz:after,.elfinder-cwd-icon-x-zip,.elfinder-cwd-icon-x-zip:after,.elfinder-cwd-icon-zip,.elfinder-cwd-icon-zip:after{background-position:0 -1050px}.elfinder-cwd-icon-x-gzip,.elfinder-cwd-icon-x-gzip:after,.elfinder-cwd-icon-x-tar,.elfinder-cwd-icon-x-tar:after{background-position:0 -1100px}.elfinder-cwd-icon-x-bzip,.elfinder-cwd-icon-x-bzip2,.elfinder-cwd-icon-x-bzip2:after,.elfinder-cwd-icon-x-bzip:after{background-position:0 -1150px}.elfinder-cwd-icon-x-rar,.elfinder-cwd-icon-x-rar-compressed,.elfinder-cwd-icon-x-rar-compressed:after,.elfinder-cwd-icon-x-rar:after{background-position:0 -1200px}.elfinder-cwd-icon-x-shockwave-flash,.elfinder-cwd-icon-x-shockwave-flash:after{background-position:0 -1250px}.elfinder-cwd-icon-group{background-position:0 -1300px}.elfinder-cwd-filename input{width:100%;border:none;margin:0;padding:0}.elfinder-cwd-view-icons,.elfinder-cwd-view-icons input{text-align:center}.elfinder-cwd-view-icons textarea{width:100%;border:0 solid;margin:0;padding:0;text-align:center;overflow:hidden;resize:none}.elfinder-cwd-wrapper.elfinder-cwd-fixheader .elfinder-cwd::after,.std42-dialog.elfinder-dialog-minimized .ui-dialog-titlebar select{display:none}.elfinder-cwd table{width:100%;border-collapse:separate;border:0 solid;margin:0 0 10px;border-spacing:0;box-sizing:padding-box;padding:2px;position:relative}.elfinder .elfinder-cwd table td div,.elfinder-cwd table td{box-sizing:content-box}.elfinder-cwd-wrapper-list.elfinder-cwd-fixheader{position:absolute;overflow:hidden}.elfinder-cwd-wrapper-list.elfinder-cwd-fixheader:before{content:'';position:absolute;width:100%;top:0;height:3px;background-color:#fff}.elfinder-droppable-active+.elfinder-cwd-wrapper-list.elfinder-cwd-fixheader:before{background-color:#8cafed}.elfinder .elfinder-workzone div.elfinder-cwd-fixheader table{table-layout:fixed}.elfinder-ltr .elfinder-cwd thead .elfinder-cwd-selectall{text-align:left;right:auto;left:0;padding-top:3px}.elfinder-rtl .elfinder-cwd thead .elfinder-cwd-selectall{text-align:right;right:0;left:auto;padding-top:3px}.elfinder-touch .elfinder-cwd thead .elfinder-cwd-selectall{padding-top:4px}.elfinder .elfinder-cwd table thead tr{border-left:0 solid;border-top:0 solid;border-right:0 solid}.elfinder .elfinder-cwd table thead td{padding:4px 14px}.elfinder-ltr .elfinder-cwd.elfinder-has-checkbox table thead td:first-child{padding:4px 14px 4px 22px}.elfinder-rtl .elfinder-cwd.elfinder-has-checkbox table thead td:first-child{padding:4px 22px 4px 14px}.elfinder-touch .elfinder-cwd table thead td,.elfinder-touch .elfinder-cwd.elfinder-has-checkbox table thead td:first-child{padding-top:8px;padding-bottom:8px}.elfinder .elfinder-cwd table thead td.ui-state-active{background:#ebf1f6;background:-moz-linear-gradient(top,#ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebf1f6),color-stop(50%,#abd3ee),color-stop(51%,#89c3eb),color-stop(100%,#d5ebfb));background:-webkit-linear-gradient(top,#ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%);background:-o-linear-gradient(top,#ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%);background:-ms-linear-gradient(top,#ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%);background:linear-gradient(to bottom,#ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebf1f6', endColorstr='#d5ebfb', GradientType=0)}.elfinder .elfinder-cwd table td{padding:4px 12px;white-space:pre;overflow:hidden;text-align:right;cursor:default;border:0 solid}.elfinder .elfinder-cwd table tbody td:first-child{position:relative}tr.elfinder-cwd-file td .elfinder-cwd-select{padding-top:3px}.elfinder-mobile tr.elfinder-cwd-file td .elfinder-cwd-select{width:40px}.elfinder-touch tr.elfinder-cwd-file td .elfinder-cwd-select{padding-top:10px}.elfinder-touch .elfinder-cwd tr td{padding:10px 12px}.elfinder-touch .elfinder-cwd tr.elfinder-cwd-file td{padding:13px 12px}.elfinder-ltr .elfinder-cwd table td{text-align:right}.elfinder-ltr .elfinder-cwd table td:first-child{text-align:left}.elfinder-rtl .elfinder-cwd table td{text-align:left}.elfinder-ltr .elfinder-info-tb tr td:first-child,.elfinder-rtl .elfinder-cwd table td:first-child{text-align:right}.elfinder-odd-row{background:#eee}.elfinder-cwd-view-list .elfinder-cwd-file-wrapper{width:97%;position:relative}.elfinder-ltr .elfinder-cwd-view-list.elfinder-has-checkbox .elfinder-cwd-file-wrapper{margin-left:8px}.elfinder-rtl .elfinder-cwd-view-list.elfinder-has-checkbox .elfinder-cwd-file-wrapper{margin-right:8px}.elfinder-ltr .elfinder-cwd-view-list .elfinder-cwd-filename{padding-left:23px}.elfinder-rtl .elfinder-cwd-view-list .elfinder-cwd-filename{padding-right:23px}.elfinder-cwd-view-list .elfinder-lock,.elfinder-cwd-view-list .elfinder-perms,.elfinder-cwd-view-list .elfinder-symlink{margin-top:-6px;opacity:.6;filter:Alpha(Opacity=60)}.elfinder-cwd-view-list .elfinder-perms{bottom:-4px}.elfinder-cwd-view-list .elfinder-lock{top:0}.elfinder-cwd-view-list .elfinder-symlink{bottom:-4px}.elfinder-ltr .elfinder-cwd-view-list .elfinder-perms{left:8px}.elfinder-rtl .elfinder-cwd-view-list .elfinder-perms{right:-8px}.elfinder-ltr .elfinder-cwd-view-list .elfinder-lock{left:10px}.elfinder-rtl .elfinder-cwd-view-list .elfinder-lock{right:-10px}.elfinder-ltr .elfinder-cwd-view-list .elfinder-symlink{left:-7px}.elfinder-rtl .elfinder-cwd-view-list .elfinder-symlink{right:7px}.elfinder-cwd-view-list td .elfinder-cwd-icon{width:16px;height:16px;position:absolute;top:50%;margin-top:-8px;background-image:url(../img/icons-small.png)}.elfinder-ltr .elfinder-cwd-view-list .elfinder-cwd-icon{left:0}.elfinder-rtl .elfinder-cwd-view-list .elfinder-cwd-icon{right:0}.elfinder-cwd-view-list .elfinder-cwd-icon:after,.elfinder-cwd-view-list .elfinder-cwd-icon:before{content:none}.elfinder-cwd-view-list thead td .ui-resizable-handle{height:100%;top:6px}.elfinder-touch .elfinder-cwd-view-list thead td .ui-resizable-handle{top:-4px;margin:10px}.elfinder-cwd-view-list thead td .ui-resizable-e{right:-7px}.elfinder-cwd-view-list thead td .ui-resizable-w{left:-7px}.elfinder-touch .elfinder-cwd-view-list thead td .ui-resizable-e{right:-16px}.elfinder-touch .elfinder-cwd-view-list thead td .ui-resizable-w{left:-16px}.elfinder-cwd-wrapper-empty .elfinder-cwd-view-list.elfinder-cwd:after{margin-top:0}.elfinder-cwd-message-board{position:-webkit-sticky;position:sticky;width:100%;height:calc(100% - .01px);top:0;left:0;margin:0;padding:0;pointer-events:none;background-color:transparent}.elfinder-cwd-wrapper-trash .elfinder-cwd-message-board{background-image:url(../img/trashmesh.png)}.elfinder-cwd-message-board .elfinder-cwd-trash{position:absolute;bottom:0;font-size:30px;width:100%;text-align:right;display:none}.elfinder-rtl .elfinder-cwd-message-board .elfinder-cwd-trash{text-align:left}.elfinder-mobile .elfinder-cwd-message-board .elfinder-cwd-trash{font-size:20px}.elfinder-cwd-wrapper-trash .elfinder-cwd-message-board .elfinder-cwd-trash{display:block;opacity:.3}.elfinder-cwd-message-board .elfinder-cwd-expires{position:absolute;bottom:0;font-size:24px;width:100%;text-align:right;opacity:.25}.elfinder-rtl .elfinder-cwd-message-board .elfinder-cwd-expires{text-align:left}.elfinder-mobile .elfinder-cwd-message-board .elfinder-cwd-expires{font-size:20px}.std42-dialog{padding:0;position:absolute;left:auto;right:auto;box-sizing:border-box}.std42-dialog.elfinder-dialog-minimized{overFlow:hidden;position:relative;float:left;width:auto;cursor:pointer}.elfinder-rtl .std42-dialog.elfinder-dialog-minimized{float:right}.std42-dialog input{border:1px solid}.std42-dialog .ui-dialog-titlebar{border-left:0 solid transparent;border-top:0 solid transparent;border-right:0 solid transparent;font-weight:400;padding:.2em 1em}.std42-dialog.elfinder-dialog-minimized .ui-dialog-titlebar{padding:0 .5em;height:20px}.elfinder-touch .std42-dialog.elfinder-dialog-minimized .ui-dialog-titlebar{padding:.3em .5em}.std42-dialog.ui-draggable-disabled .ui-dialog-titlebar{cursor:default}.std42-dialog .ui-dialog-titlebar .ui-widget-header{border:none;cursor:pointer}.std42-dialog .ui-dialog-titlebar span.elfinder-dialog-title{display:inherit;word-break:break-all}.std42-dialog.elfinder-dialog-minimized .ui-dialog-titlebar span.elfinder-dialog-title{display:list-item;display:-moz-inline-box;white-space:nowrap;word-break:normal;overflow:hidden;word-wrap:normal;overflow-wrap:normal;max-width:-webkit-calc(100% - 24px);max-width:-moz-calc(100% - 24px);max-width:calc(100% - 24px)}.elfinder-touch .std42-dialog .ui-dialog-titlebar span.elfinder-dialog-title{padding-top:.15em}.elfinder-touch .std42-dialog.elfinder-dialog-minimized .ui-dialog-titlebar span.elfinder-dialog-title{max-width:-webkit-calc(100% - 36px);max-width:-moz-calc(100% - 36px);max-width:calc(100% - 36px)}.std42-dialog .ui-dialog-titlebar .elfinder-titlebar-button{position:relative;float:left;top:10px;left:-10px;right:10px;width:20px;height:20px;padding:1px;margin:-10px 1px 0;background-color:transparent;background-image:none}.elfinder-touch .std42-dialog .ui-dialog-titlebar .elfinder-titlebar-button{-moz-transform:scale(1.2);zoom:1.2;padding-left:6px;padding-right:6px;height:24px}.std42-dialog .ui-dialog-titlebar .elfinder-titlebar-button-right{float:right}.std42-dialog .ui-dialog-titlebar .elfinder-titlebar-button.elfinder-titlebar-button-right{left:10px;right:-10px}.std42-dialog .ui-dialog-titlebar .elfinder-titlebar-button .ui-icon{width:17px;height:17px;border-width:1px;opacity:.7;filter:Alpha(Opacity=70);-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}.elfinder-mobile .std42-dialog .ui-dialog-titlebar .elfinder-titlebar-button .ui-icon{opacity:.5;filter:Alpha(Opacity=50)}.std42-dialog.elfinder-dialog-minimized .ui-dialog-titlebar .elfinder-titlebar-button .ui-icon{opacity:1;filter:Alpha(Opacity=100)}.elfinder-spinner{width:14px;height:14px;background:url(../img/spinner-mini.gif) center center no-repeat;margin:0 5px;display:inline-block;vertical-align:middle}.elfinder-ltr .elfinder-info-tb span,.elfinder-ltr .elfinder-spinner,.elfinder-ltr .elfinder-spinner-text{float:left}.elfinder-rtl .elfinder-info-tb span,.elfinder-rtl .elfinder-spinner,.elfinder-rtl .elfinder-spinner-text{float:right}.elfinder-touch .std42-dialog.ui-dialog:not(ui-resizable-disabled) .ui-resizable-se{width:12px;height:12px;-moz-transform-origin:bottom right;-moz-transform:scale(1.5);zoom:1.5;right:-7px;bottom:-7px;margin:3px 7px 7px 3px;background-position:-64px -224px}.elfinder-rtl .elfinder-dialog .ui-dialog-titlebar{text-align:right}.std42-dialog .ui-dialog-content{padding:.3em .5em;box-sizing:border-box}.elfinder .std42-dialog .ui-dialog-content,.elfinder .std42-dialog .ui-dialog-content *{-webkit-user-select:auto;-moz-user-select:text;-khtml-user-select:text;user-select:text}.std42-dialog .ui-dialog-buttonpane{border:0 solid;margin:0;padding:.5em;text-align:right}.elfinder-rtl .std42-dialog .ui-dialog-buttonpane{text-align:left}.std42-dialog .ui-dialog-buttonpane button{margin:.2em 0 0 .4em;padding:.2em;outline:0 solid}.std42-dialog .ui-dialog-buttonpane button span{padding:2px 9px}.std42-dialog .ui-dialog-buttonpane button span.ui-icon{padding:2px}.elfinder-dialog .ui-resizable-e,.elfinder-dialog .ui-resizable-s{width:0;height:0}.std42-dialog .ui-button input{cursor:pointer}.std42-dialog select{border:1px solid #ccc}.elfinder-dialog-icon{position:absolute;width:32px;height:32px;left:10px;top:50%;margin-top:-15px;background:url(../img/dialogs.png) 0 0 no-repeat}.elfinder-rtl .elfinder-dialog-icon{left:auto;right:10px}.elfinder-dialog-confirm .ui-dialog-content,.elfinder-dialog-error .ui-dialog-content{padding-left:56px;min-height:35px}.elfinder-rtl .elfinder-dialog-confirm .ui-dialog-content,.elfinder-rtl .elfinder-dialog-error .ui-dialog-content{padding-left:0;padding-right:56px}.elfinder-dialog-error .elfinder-err-var{word-break:break-all}.elfinder-dialog-notify{top:36px;width:280px}.elfinder-ltr .elfinder-dialog-notify{right:12px}.elfinder-rtl .elfinder-dialog-notify{left:12px}.elfinder-dialog-notify .ui-dialog-titlebar{height:5px}.elfinder-dialog-notify .ui-dialog-titlebar-close,.elfinder-rm-title+br{display:none}.elfinder-dialog-notify .ui-dialog-content{padding:0}.elfinder-notify{border-bottom:1px solid #ccc;position:relative;padding:.5em;text-align:center;overflow:hidden}.elfinder-ltr .elfinder-notify{padding-left:36px}.elfinder-rtl .elfinder-notify{padding-right:36px}.elfinder-notify:last-child{border:0 solid}.elfinder-notify-progressbar{width:180px;height:8px;border:1px solid #aaa;background:#f5f5f5;margin:5px auto;overflow:hidden}.elfinder-notify-progress{width:100%;height:8px;background:url(../img/progress.gif) center center repeat-x}.elfinder-notify-progress,.elfinder-notify-progressbar{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}.elfinder-dialog-icon-file,.elfinder-dialog-icon-open,.elfinder-dialog-icon-readdir,.elfinder-dialog-icon-reload{background-position:0 -225px}.elfinder-dialog-icon-mkdir{background-position:0 -64px}.elfinder-dialog-icon-mkfile{background-position:0 -96px}.elfinder-dialog-icon-copy,.elfinder-dialog-icon-move,.elfinder-dialog-icon-prepare{background-position:0 -128px}.elfinder-dialog-icon-chunkmerge,.elfinder-dialog-icon-upload{background-position:0 -160px}.elfinder-dialog-icon-rm{background-position:0 -192px}.elfinder-dialog-icon-download{background-position:0 -260px}.elfinder-dialog-icon-save{background-position:0 -295px}.elfinder-dialog-icon-chkcontent,.elfinder-dialog-icon-rename{background-position:0 -330px}.elfinder-dialog-icon-archive,.elfinder-dialog-icon-extract,.elfinder-dialog-icon-zipdl{background-position:0 -365px}.elfinder-dialog-icon-search{background-position:0 -402px}.elfinder-dialog-icon-chmod,.elfinder-dialog-icon-dim,.elfinder-dialog-icon-loadimg,.elfinder-dialog-icon-netmount,.elfinder-dialog-icon-netunmount,.elfinder-dialog-icon-preupload,.elfinder-dialog-icon-resize,.elfinder-dialog-icon-url{background-position:0 -434px}.elfinder-dialog-confirm-applyall,.elfinder-dialog-confirm-encoding{padding:0 1em;margin:0}.elfinder-ltr .elfinder-dialog-confirm-applyall,.elfinder-ltr .elfinder-dialog-confirm-encoding{text-align:left}.elfinder-rtl .elfinder-dialog-confirm-applyall,.elfinder-rtl .elfinder-dialog-confirm-encoding{text-align:right}.elfinder-dialog-confirm .elfinder-dialog-icon{background-position:0 -32px}.elfinder-dialog-confirm .ui-dialog-buttonset{width:auto}.elfinder-info-title .elfinder-cwd-icon{float:left;width:48px;height:48px;margin-right:1em}.elfinder-rtl .elfinder-info-title .elfinder-cwd-icon,.elfinder-rtl .elfinder-rm-title .elfinder-cwd-icon{float:right;margin-right:0;margin-left:1em}.elfinder-info-title strong{display:block;padding:.3em 0 .5em}.elfinder-info-tb{min-width:200px;border:0 solid;margin:1em .2em;width:100%}.elfinder-info-tb td{white-space:pre-wrap;padding:2px}.elfinder-info-tb td.elfinder-info-label{white-space:nowrap}.elfinder-info-tb td.elfinder-info-hash{display:inline-block;word-break:break-all;max-width:32ch}.elfinder-rtl .elfinder-info-tb tr td:first-child{text-align:left}.elfinder-info-tb a{outline:none;text-decoration:underline}.elfinder-info-tb a:hover{text-decoration:none}.elfinder-netmount-tb{margin:0 auto}.elfinder-netmount-tb .elfinder-button-icon,.elfinder-netmount-tb select{cursor:pointer}button.elfinder-info-button{margin:-3.5px 0;cursor:pointer}.elfinder-upload-dropbox{display:table-cell;text-align:center;vertical-align:middle;padding:.5em;border:3px dashed #aaa;width:9999px;height:80px;overflow:hidden;word-break:keep-all}.elfinder-upload-dropbox.ui-state-hover{background:#dfdfdf;border:3px dashed #555}.elfinder-upload-dialog-or{margin:.3em 0;text-align:center}.elfinder-upload-dialog-wrapper{text-align:center}.elfinder-upload-dialog-wrapper .ui-button{position:relative;overflow:hidden}.elfinder-upload-dialog-wrapper .ui-button form{position:absolute;right:0;top:0;width:100%;opacity:0;filter:Alpha(Opacity=0)}.elfinder-upload-dialog-wrapper .ui-button form input{padding:50px 0 0;font-size:3em;width:100%}.dialogelfinder .dialogelfinder-drag{border-left:0 solid;border-top:0 solid;border-right:0 solid;font-weight:400;padding:2px 12px;cursor:move;position:relative;text-align:left}.elfinder-rtl .dialogelfinder-drag{text-align:right}.dialogelfinder-drag-close{position:absolute;top:50%;margin-top:-8px}.elfinder-ltr .dialogelfinder-drag-close{right:12px}.elfinder-rtl .dialogelfinder-drag-close{left:12px}.elfinder-rm-title{margin-bottom:.5ex}.elfinder-rm-title .elfinder-cwd-icon{float:left;width:48px;height:48px;margin-right:1em}.elfinder-rm-title strong{display:block;white-space:pre-wrap;word-break:normal;overflow:hidden;text-overflow:ellipsis}.elfinder-font-mono{font-family:"Ricty Diminished","Myrica M",Consolas,"Courier New",Courier,Monaco,monospace;font-size:1.1em}.elfinder-contextmenu .elfinder-contextmenu-item span{font-size:.72em}.elfinder-cwd-view-icons .elfinder-cwd-filename,.elfinder-cwd-view-list td,.elfinder-statusbar div{font-size:.7em}.std42-dialog .ui-dialog-titlebar{font-size:.82em}.std42-dialog .ui-dialog-content{font-size:.72em}.std42-dialog .ui-dialog-buttonpane{font-size:.76em}.dialogelfinder .dialogelfinder-drag,.elfinder-info-tb{font-size:.9em}.elfinder-upload-dialog-or,.elfinder-upload-dropbox{font-size:1.2em}.elfinder .elfinder-navbar{font-size:.72em}.elfinder-place-drag .elfinder-navbar-dir{font-size:.9em}.elfinder-quicklook-title{font-size:.7em;font-weight:400}.elfinder-quicklook-info-data{font-size:.72em}.elfinder-quicklook-preview-text-wrapper{font-size:.9em}.elfinder-button-menu-item{font-size:.72em}.elfinder-button-search input{font-size:.8em}.elfinder-drag-num{font-size:12px}.elfinder-toast{font-size:.76em}.elfinder .elfinder-navbar{width:230px;padding:3px 5px;background-image:none;border-top:0 solid;border-bottom:0 solid;overflow:auto;position:relative}.elfinder .elfinder-navdock{box-sizing:border-box;width:230px;height:auto;position:absolute;bottom:0;overflow:auto}.elfinder-navdock .ui-resizable-n{top:0;height:20px}.elfinder-ltr .elfinder-navbar{float:left;border-left:0 solid}.elfinder-rtl .elfinder-navbar{float:right;border-right:0 solid}.elfinder-ltr .ui-resizable-e,.elfinder-touch .elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right .ui-icon{margin-left:10px}.elfinder-tree{display:table;width:100%;margin:0 0 .5em;-webkit-tap-highlight-color:rgba(0,0,0,0)}.elfinder-navbar-dir{position:relative;display:block;white-space:nowrap;padding:3px 12px;margin:0;outline:0 solid;border:1px solid transparent;cursor:default}.elfinder-touch .elfinder-navbar-dir{padding:12px}.elfinder-ltr .elfinder-navbar-dir{padding-left:35px}.elfinder-rtl .elfinder-navbar-dir{padding-right:35px}.elfinder-navbar-arrow,.elfinder-navbar-icon{position:absolute;top:50%;margin-top:-8px;background-repeat:no-repeat}.elfinder-navbar-arrow{display:none;width:12px;height:14px;background-image:url(../img/arrows-normal.png)}.elfinder-ltr .elfinder-navbar-arrow{left:0}.elfinder-rtl .elfinder-navbar-arrow{right:0}.elfinder-touch .elfinder-navbar-arrow{-moz-transform-origin:top left;-moz-transform:scale(1.4);zoom:1.4;margin-bottom:7px}.elfinder-ltr.elfinder-touch .elfinder-navbar-arrow{left:-3px;margin-right:20px}.elfinder-rtl.elfinder-touch .elfinder-navbar-arrow{right:-3px;margin-left:20px}.ui-state-active .elfinder-navbar-arrow{background-image:url(../img/arrows-active.png)}.elfinder-navbar-collapsed .elfinder-navbar-arrow{display:block}.elfinder-subtree-chksubdir .elfinder-navbar-arrow{opacity:.25;filter:Alpha(Opacity=25)}.elfinder-ltr .elfinder-navbar-collapsed .elfinder-navbar-arrow{background-position:0 4px}.elfinder-rtl .elfinder-navbar-collapsed .elfinder-navbar-arrow{background-position:0 -10px}.elfinder-ltr .elfinder-navbar-expanded .elfinder-navbar-arrow,.elfinder-rtl .elfinder-navbar-expanded .elfinder-navbar-arrow{background-position:0 -21px}.elfinder-navbar-icon{width:16px;height:16px;background-image:url(../img/toolbar.png);background-position:0 -16px}.elfinder-ltr .elfinder-navbar-icon{left:14px}.elfinder-rtl .elfinder-navbar-icon{right:14px}.elfinder-places .elfinder-navbar-root .elfinder-navbar-icon{background-position:0 -704px}.elfinder-tree .elfinder-navbar-root-box .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-dropbox .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-ftp .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-googledrive .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-local .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-network .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-onedrive .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-sql .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-trash .elfinder-navbar-icon,.elfinder-tree .elfinder-navbar-root-zip .elfinder-navbar-icon{background-position:0 0;background-size:contain}.elfinder-tree .elfinder-navbar-root-local .elfinder-navbar-icon{background-image:url(../img/volume_icon_local.svg);background-image:url(../img/volume_icon_local.png) \9}.elfinder-tree .elfinder-navbar-root-trash .elfinder-navbar-icon{background-image:url(../img/volume_icon_trash.svg);background-image:url(../img/volume_icon_trash.png) \9}.elfinder-tree .elfinder-navbar-root-ftp .elfinder-navbar-icon{background-image:url(../img/volume_icon_ftp.svg);background-image:url(../img/volume_icon_ftp.png) \9}.elfinder-tree .elfinder-navbar-root-sql .elfinder-navbar-icon{background-image:url(../img/volume_icon_sql.svg);background-image:url(../img/volume_icon_sql.png) \9}.elfinder-tree .elfinder-navbar-root-dropbox .elfinder-navbar-icon{background-image:url(../img/volume_icon_dropbox.svg);background-image:url(../img/volume_icon_dropbox.png) \9}.elfinder-tree .elfinder-navbar-root-googledrive .elfinder-navbar-icon{background-image:url(../img/volume_icon_googledrive.svg);background-image:url(../img/volume_icon_googledrive.png) \9}.elfinder-tree .elfinder-navbar-root-onedrive .elfinder-navbar-icon{background-image:url(../img/volume_icon_onedrive.svg);background-image:url(../img/volume_icon_onedrive.png) \9}.elfinder-tree .elfinder-navbar-root-box .elfinder-navbar-icon{background-image:url(../img/volume_icon_box.svg);background-image:url(../img/volume_icon_box.png) \9}.elfinder-tree .elfinder-navbar-root-zip .elfinder-navbar-icon{background-image:url(../img/volume_icon_zip.svg);background-image:url(../img/volume_icon_zip.png) \9}.elfinder-tree .elfinder-navbar-root-network .elfinder-navbar-icon{background-image:url(../img/volume_icon_network.svg);background-image:url(../img/volume_icon_network.png) \9}.elfinder-droppable-active .elfinder-navbar-icon,.ui-state-active .elfinder-navbar-icon,.ui-state-hover .elfinder-navbar-icon{background-position:0 -32px}.elfinder-ltr .elfinder-navbar-subtree{margin-left:12px}.elfinder-rtl .elfinder-navbar-subtree{margin-right:12px}.elfinder-tree .elfinder-spinner{position:absolute;top:50%;margin:-7px 0 0}.elfinder-ltr .elfinder-tree .elfinder-spinner{left:0;margin-left:-2px}.elfinder-rtl .elfinder-tree .elfinder-spinner{right:0;margin-right:-2px}.elfinder-navbar .elfinder-lock,.elfinder-navbar .elfinder-perms,.elfinder-navbar .elfinder-symlink{opacity:.6;filter:Alpha(Opacity=60)}.elfinder-navbar .elfinder-perms{bottom:-1px;margin-top:-8px}.elfinder-navbar .elfinder-lock{top:-2px}.elfinder-ltr .elfinder-navbar .elfinder-perms{left:20px;transform:scale(.8)}.elfinder-rtl .elfinder-navbar .elfinder-perms{right:20px;transform:scale(.8)}.elfinder-ltr .elfinder-navbar .elfinder-lock{left:20px;transform:scale(.8)}.elfinder-rtl .elfinder-navbar .elfinder-lock{right:20px;transform:scale(.8)}.elfinder-ltr .elfinder-navbar .elfinder-symlink{left:8px;transform:scale(.8)}.elfinder-rtl .elfinder-navbar .elfinder-symlink{right:8px;transform:scale(.8)}.elfinder-navbar input{width:100%;border:0 solid;margin:0;padding:0}.elfinder-navbar .ui-resizable-handle{width:12px;background:url(../img/resize.png) center center no-repeat}.elfinder-nav-handle-icon{position:absolute;top:50%;margin:-8px 2px 0;opacity:.5;filter:Alpha(Opacity=50)}.elfinder-navbar-pager{width:100%;box-sizing:border-box;padding-top:3px;padding-bottom:3px}.elfinder-touch .elfinder-navbar-pager{padding-top:10px;padding-bottom:10px}.elfinder-places{border:none;margin:0;padding:0}.elfinder-navbar-swipe-handle{position:absolute;top:0;height:100%;width:50px;pointer-events:none}.elfinder-ltr .elfinder-navbar-swipe-handle{left:0;background:linear-gradient(to right,#dde4eb 0,rgba(221,228,235,.8) 5px,rgba(216,223,230,.3) 8px,rgba(0,0,0,.1) 95%,rgba(0,0,0,0) 100%)}.elfinder-rtl .elfinder-navbar-swipe-handle{right:0;background:linear-gradient(to left,#dde4eb 0,rgba(221,228,235,.8) 5px,rgba(216,223,230,.3) 8px,rgba(0,0,0,.1) 95%,rgba(0,0,0,0) 100%)}.elfinder-navbar-root .elfinder-places-root-icon{position:absolute;top:50%;margin-top:-9px;cursor:pointer}.elfinder-ltr .elfinder-places-root-icon{right:10px}.elfinder-rtl .elfinder-places-root-icon{left:10px}.elfinder-navbar-expanded .elfinder-places-root-icon{display:block}.elfinder-place-drag{font-size:.8em}.elfinder-quicklook{position:absolute;background:url(../img/quicklook-bg.png);overflow:hidden;-moz-border-radius:7px;-webkit-border-radius:7px;border-radius:7px;padding:20px 0 40px}.elfinder-navdock .elfinder-quicklook{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;font-size:90%;overflow:auto}.elfinder-quicklook.elfinder-touch{padding:30px 0 40px}.elfinder-quicklook .ui-resizable-se{width:14px;height:14px;right:5px;bottom:3px;background:url(../img/toolbar.png) 0 -496px no-repeat}.elfinder-quicklook.elfinder-touch .ui-resizable-se{-moz-transform-origin:bottom right;-moz-transform:scale(1.5);zoom:1.5}.elfinder-quicklook.elfinder-quicklook-fullscreen{position:fixed;top:0;right:0;bottom:0;left:0;margin:0;box-sizing:border-box;width:100%;height:100%;object-fit:contain;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-webkit-background-clip:padding-box;padding:0;background:#000;display:block}.elfinder-quicklook-fullscreen .elfinder-quicklook-titlebar,.elfinder-quicklook-fullscreen.elfinder-quicklook .ui-resizable-handle,.elfinder-statusbar:after,.elfinder-statusbar:before{display:none}.elfinder-quicklook-fullscreen .elfinder-quicklook-preview{border:0 solid}.elfinder-quicklook-cover,.elfinder-quicklook-titlebar{width:100%;height:100%;top:0;left:0;position:absolute}.elfinder-quicklook-cover.elfinder-quicklook-coverbg{background-color:#fff;opacity:.000001;filter:Alpha(Opacity=.0001)}.elfinder-quicklook-titlebar{text-align:center;background:#777;height:20px;-moz-border-radius-topleft:7px;-webkit-border-top-left-radius:7px;border-top-left-radius:7px;-moz-border-radius-topright:7px;-webkit-border-top-right-radius:7px;border-top-right-radius:7px;border:none;line-height:1.2}.elfinder-navdock .elfinder-quicklook-titlebar{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;cursor:default}.elfinder-touch .elfinder-quicklook-titlebar{height:30px}.elfinder-quicklook-title{display:inline-block;white-space:nowrap;overflow:hidden}.elfinder-touch .elfinder-quicklook-title{padding:8px 0}.elfinder-quicklook-titlebar-icon{position:absolute;left:4px;top:50%;margin-top:-8px;height:16px;border:none}.elfinder-touch .elfinder-quicklook-titlebar-icon{height:22px}.elfinder-quicklook-titlebar-icon .ui-icon{position:relative;margin:-9px 3px 0 0;cursor:pointer;border-radius:10px;border:1px solid;opacity:.7;filter:Alpha(Opacity=70)}.elfinder-quicklook-titlebar-icon .ui-icon.ui-icon-closethick{padding-left:1px}.elfinder-mobile .elfinder-quicklook-titlebar-icon .ui-icon{opacity:.6;filter:Alpha(Opacity=60)}.elfinder-touch .elfinder-quicklook-titlebar-icon .ui-icon{margin-top:-5px}.elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right{left:auto;right:4px;direction:rtl}.elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right .ui-icon{margin:-9px 0 0 3px}.elfinder-touch .elfinder-quicklook-titlebar .ui-icon{-moz-transform-origin:center center;-moz-transform:scale(1.2);zoom:1.2}.elfinder-touch .elfinder-quicklook-titlebar-icon .ui-icon{margin-right:10px}.elfinder-quicklook-preview{overflow:hidden;position:relative;border:0 solid;border-left:1px solid transparent;border-right:1px solid transparent;height:100%}.elfinder-navdock .elfinder-quicklook-preview{border-left:0;border-right:0}.elfinder-quicklook-preview.elfinder-overflow-auto{overflow:auto;-webkit-overflow-scrolling:touch}.elfinder-quicklook-info-wrapper{display:table;position:absolute;width:100%;height:100%;height:calc(100% - 80px);left:0;top:20px}.elfinder-navdock .elfinder-quicklook-info-wrapper{height:calc(100% - 20px)}.elfinder-quicklook-info{display:table-cell;vertical-align:middle}.elfinder-ltr .elfinder-quicklook-info{padding:0 12px 0 112px}.elfinder-rtl .elfinder-quicklook-info{padding:0 112px 0 12px}.elfinder-ltr .elfinder-navdock .elfinder-quicklook-info{padding:0 0 0 80px}.elfinder-rtl .elfinder-navdock .elfinder-quicklook-info{padding:0 80px 0 0}.elfinder-quicklook-info .elfinder-quicklook-info-data:first-child{color:#fff;font-weight:700;padding-bottom:.5em}.elfinder-quicklook-info-data{clear:both;padding-bottom:.2em;color:#fff}.elfinder-quicklook .elfinder-cwd-icon{position:absolute;left:32px;top:50%;margin-top:-20px}.elfinder-navdock .elfinder-quicklook .elfinder-cwd-icon{left:16px}.elfinder-rtl .elfinder-quicklook .elfinder-cwd-icon{left:auto;right:32px}.elfinder-rtl .elfinder-navdock .elfinder-quicklook .elfinder-cwd-icon{right:6px}.elfinder-quicklook .elfinder-cwd-icon:before{top:-10px}.elfinder-ltr .elfinder-quicklook .elfinder-cwd-icon:after,.elfinder-ltr .elfinder-quicklook .elfinder-cwd-icon:before{left:-20px}.elfinder-ltr .elfinder-navdock .elfinder-quicklook .elfinder-cwd-icon:before{left:-14px}.elfinder-ltr .elfinder-navdock .elfinder-quicklook .elfinder-cwd-icon:after{left:-12px}.elfinder-rtl .elfinder-quicklook .elfinder-cwd-icon:before{left:auto;right:40px}.elfinder-rtl .elfinder-quicklook .elfinder-cwd-icon:after{left:auto;right:46px}.elfinder-quicklook-preview img{display:block;margin:0 auto}.elfinder-quicklook-navbar{position:absolute;left:50%;bottom:4px;width:140px;height:32px;padding:0;margin-left:-70px;border:1px solid transparent;border-radius:19px;-moz-border-radius:19px;-webkit-border-radius:19px}.elfinder-quicklook-fullscreen .elfinder-quicklook-navbar{width:188px;margin-left:-94px;padding:5px;border:1px solid #eee;background:#000;opacity:.4;filter:Alpha(Opacity=40)}.elfinder-quicklook-fullscreen .elfinder-quicklook-navbar-icon-close,.elfinder-quicklook-fullscreen .elfinder-quicklook-navbar-separator{display:inline}.elfinder-quicklook-navbar-icon{width:32px;height:32px;margin:0 7px;float:left;background:url(../img/quicklook-icons.png) 0 0 no-repeat}.elfinder-quicklook-navbar-icon-fullscreen{background-position:0 -64px}.elfinder-quicklook-navbar-icon-fullscreen-off{background-position:0 -96px}.elfinder-quicklook-navbar-icon-prev{background-position:0 0}.elfinder-quicklook-navbar-icon-next{background-position:0 -32px}.elfinder-quicklook-navbar-icon-close{background-position:0 -128px;display:none}.elfinder-quicklook-navbar-separator{width:1px;height:32px;float:left;border-left:1px solid #fff;display:none}.elfinder-quicklook-preview-archive-wrapper,.elfinder-quicklook-preview-text-wrapper{width:100%;height:100%;background:#fff;color:#222;overflow:auto;-webkit-overflow-scrolling:touch}.elfinder-quicklook-preview-archive-wrapper{font-size:90%}.elfinder-quicklook-preview-archive-wrapper strong{padding:0 5px}pre.elfinder-quicklook-preview-text,pre.elfinder-quicklook-preview-text.prettyprint{width:auto;height:auto;margin:0;padding:3px 9px;border:none;-o-tab-size:4;-moz-tab-size:4;tab-size:4}.elfinder-quicklook-preview-charsleft hr{border:none;border-top:dashed 1px}.elfinder-quicklook-preview-charsleft span{font-size:90%;font-style:italic;cursor:pointer}.elfinder-quicklook-preview-html,.elfinder-quicklook-preview-iframe,.elfinder-quicklook-preview-pdf{width:100%;height:100%;background:#fff;margin:0;border:none;display:block}.elfinder-quicklook-preview-flash{width:100%;height:100%}.elfinder-quicklook-preview-audio{width:100%;position:absolute;bottom:0;left:0}embed.elfinder-quicklook-preview-audio{height:30px;background:0 0}.elfinder-quicklook-preview-video{width:100%;height:100%}.elfinder .elfinder-quicklook .elfinder-quicklook-info *,.elfinder .elfinder-quicklook .elfinder-quicklook-preview *{-webkit-user-select:auto;-moz-user-select:text;-khtml-user-select:text;user-select:text}.elfinder-statusbar{display:flex;justify-content:space-between;cursor:default;text-align:center;font-weight:400;padding:.2em .5em;border-right:0 solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent}.elfinder-path,.elfinder-statusbar span{overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis}.elfinder-statusbar span{vertical-align:bottom}.elfinder-statusbar span.elfinder-path-other{flex-shrink:0;text-overflow:clip;-o-text-overflow:clip}.elfinder-statusbar span.ui-state-active,.elfinder-statusbar span.ui-state-hover{border:none}.elfinder-statusbar span.elfinder-path-cwd{cursor:default}.elfinder-path{display:flex;order:1;flex-grow:1;cursor:pointer;white-space:nowrap;max-width:30%\9}.elfinder-ltr .elfinder-path{text-align:left;float:left\9}.elfinder-rtl .elfinder-path{text-align:right;float:right\9}.elfinder-workzone-path{position:relative}.elfinder-workzone-path .elfinder-path{position:relative;font-size:.75em;font-weight:400;float:none;max-width:none;overflow:hidden;overflow-x:hidden;text-overflow:initial;-o-text-overflow:initial}.elfinder-mobile .elfinder-workzone-path .elfinder-path{overflow:auto;overflow-x:scroll}.elfinder-ltr .elfinder-workzone-path .elfinder-path{margin-left:24px}.elfinder-rtl .elfinder-workzone-path .elfinder-path{margin-right:24px}.elfinder-workzone-path .elfinder-path span{display:inline-block;padding:5px 3px}.elfinder-workzone-path .elfinder-path span.elfinder-path-cwd{font-weight:700}.elfinder-workzone-path .elfinder-path span.ui-state-active,.elfinder-workzone-path .elfinder-path span.ui-state-hover{border:none}.elfinder-workzone-path .elfinder-path-roots{position:absolute;top:0;width:24px;height:20px;padding:2px;border:none;overflow:hidden}.elfinder-ltr .elfinder-workzone-path .elfinder-path-roots{left:0}.elfinder-rtl .elfinder-workzone-path .elfinder-path-roots{right:0}.elfinder-stat-size{order:3;flex-grow:1;overflow:hidden;white-space:nowrap}.elfinder-ltr .elfinder-stat-size{text-align:right;float:right\9}.elfinder-rtl .elfinder-stat-size{text-align:left;float:left\9}.elfinder-stat-selected{order:2;margin:0 .5em;white-space:nowrap;overflow:hidden}.elfinder .elfinder-toast{position:absolute;top:12px;right:12px;max-width:90%;cursor:default}.elfinder .elfinder-toast>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:8px 16px 8px 50px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;border-radius:3px 3px 3px 3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#fff;opacity:.9;filter:alpha(opacity=90);background-color:#030303;text-align:center}.elfinder .elfinder-toast>.toast-info{background-color:#2f96b4;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}.elfinder .elfinder-toast>.toast-error{background-color:#bd362f;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}.elfinder .elfinder-toast>.toast-success{background-color:#51a351;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}.elfinder .elfinder-toast>.toast-warning{background-color:#f89406;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}.elfinder .elfinder-toast>div button.ui-button{background-image:none;margin-top:8px;padding:.5em .8em}.elfinder .elfinder-toast>.toast-success button.ui-button{background-color:green;color:#fff}.elfinder .elfinder-toast>.toast-success button.ui-button.ui-state-hover{background-color:#add6ad;color:#254b25}.elfinder .elfinder-toast>.toast-info button.ui-button{background-color:#046580;color:#fff}.elfinder .elfinder-toast>.toast-info button.ui-button.ui-state-hover{background-color:#7dc6db;color:#046580}.elfinder .elfinder-toast>.toast-warning button.ui-button{background-color:#dd8c1a;color:#fff}.elfinder .elfinder-toast>.toast-warning button.ui-button.ui-state-hover{background-color:#e7ae5e;color:#422a07}.elfinder-toolbar{padding:4px 0 3px;border-left:0 solid transparent;border-top:0 solid transparent;border-right:0 solid transparent;max-height:50%;overflow-y:auto}.elfinder-buttonset{margin:1px 4px;float:left;background:0 0;padding:0;overflow:hidden}.elfinder .elfinder-button{min-width:16px;height:16px;margin:0;padding:4px;float:left;overflow:hidden;position:relative;border:0 solid;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;line-height:1;cursor:default}.elfinder-rtl .elfinder-button{float:right}.elfinder-touch .elfinder-button{min-width:20px;height:20px}.elfinder .ui-icon-search{cursor:pointer}.elfinder-toolbar-button-separator{float:left;padding:0;height:24px;border-top:0 solid;border-right:0 solid;border-bottom:0 solid;width:0}.elfinder-rtl .elfinder-toolbar-button-separator{float:right}.elfinder-touch .elfinder-toolbar-button-separator{height:28px}.elfinder .elfinder-button.ui-state-disabled{opacity:1;filter:Alpha(Opacity=100)}.elfinder .elfinder-button.ui-state-disabled .elfinder-button-icon,.elfinder .elfinder-button.ui-state-disabled .elfinder-button-text{opacity:.4;filter:Alpha(Opacity=40)}.elfinder-rtl .elfinder-buttonset{float:right}.elfinder-button-icon{width:16px;height:16px;display:inline-block;background:url(../img/toolbar.png) no-repeat}.elfinder-button-text{position:relative;display:inline-block;top:-4px;margin:0 2px;font-size:12px}.elfinder-touch .elfinder-button-icon{transform:scale(1.25);transform-origin:top left}.elfinder-rtl.elfinder-touch .elfinder-button-icon{transform-origin:top right}.elfinder-touch .elfinder-button-text{transform:translate(3px,3px);top:-5px}.elfinder-rtl.elfinder-touch .elfinder-button-text{transform:translate(-3px,3px)}.elfinder-touch .elfinder-button-icon.elfinder-contextmenu-extra-icon{transform:scale(2);transform-origin:12px 8px}.elfinder-rtl.elfinder-touch .elfinder-button-icon.elfinder-contextmenu-extra-icon{transform-origin:4px 8px}.elfinder-button-icon-home{background-position:0 0}.elfinder-button-icon-back{background-position:0 -112px}.elfinder-button-icon-forward{background-position:0 -128px}.elfinder-button-icon-up{background-position:0 -144px}.elfinder-button-icon-dir{background-position:0 -16px}.elfinder-button-icon-opendir{background-position:0 -32px}.elfinder-button-icon-reload{background-position:0 -160px}.elfinder-button-icon-open{background-position:0 -176px}.elfinder-button-icon-mkdir{background-position:0 -192px}.elfinder-button-icon-mkfile{background-position:0 -208px}.elfinder-button-icon-rm{background-position:0 -832px}.elfinder-button-icon-trash{background-position:0 -224px}.elfinder-button-icon-restore{background-position:0 -816px}.elfinder-button-icon-copy{background-position:0 -240px}.elfinder-button-icon-cut{background-position:0 -256px}.elfinder-button-icon-paste{background-position:0 -272px}.elfinder-button-icon-getfile{background-position:0 -288px}.elfinder-button-icon-duplicate{background-position:0 -304px}.elfinder-button-icon-rename{background-position:0 -320px}.elfinder-button-icon-edit{background-position:0 -336px}.elfinder-button-icon-quicklook{background-position:0 -352px}.elfinder-button-icon-upload{background-position:0 -368px}.elfinder-button-icon-download{background-position:0 -384px}.elfinder-button-icon-info{background-position:0 -400px}.elfinder-button-icon-extract{background-position:0 -416px}.elfinder-button-icon-archive{background-position:0 -432px}.elfinder-button-icon-view{background-position:0 -448px}.elfinder-button-icon-view-list{background-position:0 -464px}.elfinder-button-icon-help{background-position:0 -480px}.elfinder-button-icon-resize{background-position:0 -512px}.elfinder-button-icon-link{background-position:0 -528px}.elfinder-button-icon-search{background-position:0 -561px}.elfinder-button-icon-sort{background-position:0 -577px}.elfinder-button-icon-rotate-r{background-position:0 -625px}.elfinder-button-icon-rotate-l{background-position:0 -641px}.elfinder-button-icon-netmount{background-position:0 -688px}.elfinder-button-icon-netunmount{background-position:0 -96px}.elfinder-button-icon-places{background-position:0 -704px}.elfinder-button-icon-chmod{background-position:0 -48px}.elfinder-button-icon-accept{background-position:0 -736px}.elfinder-button-icon-menu{background-position:0 -752px}.elfinder-button-icon-colwidth{background-position:0 -768px}.elfinder-button-icon-fullscreen{background-position:0 -784px}.elfinder-button-icon-unfullscreen{background-position:0 -800px}.elfinder-button-icon-empty{background-position:0 -848px}.elfinder-button-icon-undo{background-position:0 -864px}.elfinder-button-icon-redo{background-position:0 -880px}.elfinder-button-icon-preference{background-position:0 -896px}.elfinder-button-icon-mkdirin{background-position:0 -912px}.elfinder-button-icon-selectall{background-position:0 -928px}.elfinder-button-icon-selectnone{background-position:0 -944px}.elfinder-button-icon-selectinvert{background-position:0 -960px}.elfinder-button-icon-opennew{background-position:0 -976px}.elfinder-button-icon-hide{background-position:0 -992px}.elfinder-button-icon-text{background-position:0 -1008px}.elfinder-rtl .elfinder-button-icon-back,.elfinder-rtl .elfinder-button-icon-forward,.elfinder-rtl .elfinder-button-icon-getfile,.elfinder-rtl .elfinder-button-icon-help,.elfinder-rtl .elfinder-button-icon-redo,.elfinder-rtl .elfinder-button-icon-rename,.elfinder-rtl .elfinder-button-icon-search,.elfinder-rtl .elfinder-button-icon-undo,.elfinder-rtl .elfinder-button-icon-view-list,.elfinder-rtl .ui-icon-search{-ms-transform:scale(-1,1);-webkit-transform:scale(-1,1);transform:scale(-1,1)}.elfinder-rtl.elfinder-touch .elfinder-button-icon-back,.elfinder-rtl.elfinder-touch .elfinder-button-icon-forward,.elfinder-rtl.elfinder-touch .elfinder-button-icon-getfile,.elfinder-rtl.elfinder-touch .elfinder-button-icon-help,.elfinder-rtl.elfinder-touch .elfinder-button-icon-redo,.elfinder-rtl.elfinder-touch .elfinder-button-icon-rename,.elfinder-rtl.elfinder-touch .elfinder-button-icon-search,.elfinder-rtl.elfinder-touch .elfinder-button-icon-undo,.elfinder-rtl.elfinder-touch .elfinder-button-icon-view-list,.elfinder-rtl.elfinder-touch .ui-icon-search{-ms-transform:scale(-1.25,1.25) translateX(16px);-webkit-transform:scale(-1.25,1.25) translateX(16px);transform:scale(-1.25,1.25) translateX(16px)}.elfinder .elfinder-menubutton{overflow:visible}.elfinder-button-icon-spinner{background:url(../img/spinner-mini.gif) center center no-repeat}.elfinder-button-menu{position:absolute;margin-top:24px;padding:3px 0;overflow-y:auto}.elfinder-touch .elfinder-button-menu{margin-top:30px}.elfinder-button-menu-item{white-space:nowrap;cursor:default;padding:5px 19px;position:relative}.elfinder-touch .elfinder-button-menu-item{padding:12px 19px}.elfinder-button-menu .ui-state-hover{border:0 solid}.elfinder-button-menu-item-separated{border-top:1px solid #ccc}.elfinder-button-menu-item .ui-icon{width:16px;height:16px;position:absolute;left:2px;top:50%;margin-top:-8px;display:none}.elfinder-button-menu-item-selected .ui-icon{display:block}.elfinder-button-menu-item-selected-asc .ui-icon-arrowthick-1-s,.elfinder-button-menu-item-selected-desc .ui-icon-arrowthick-1-n{display:none}.elfinder-button form{position:absolute;top:0;right:0;opacity:0;filter:Alpha(Opacity=0);cursor:pointer}.elfinder .elfinder-button form input{background:0 0;cursor:default}.elfinder .elfinder-button-search{border:0 solid;background:0 0;padding:0;margin:1px 4px;height:auto;min-height:26px;width:70px;overflow:visible}.elfinder .elfinder-button-search.ui-state-active{width:220px}.elfinder .elfinder-button-search-menu{font-size:8pt;text-align:center;width:auto;min-width:180px;position:absolute;top:30px;padding-right:5px;padding-left:5px}.elfinder-ltr .elfinder-button-search-menu{right:22px;left:auto}.elfinder-rtl .elfinder-button-search-menu{right:auto;left:22px}.elfinder-touch .elfinder-button-search-menu{top:34px}.elfinder .elfinder-button-search-menu div{margin:5px auto;display:table}.elfinder .elfinder-button-search-menu div .ui-state-hover{border:1px solid}.elfinder-ltr .elfinder-button-search{float:right;margin-right:10px}.elfinder-rtl .elfinder-button-search{float:left;margin-left:10px}.elfinder-rtl .ui-controlgroup>.ui-controlgroup-item{float:right}.elfinder-button-search input[type=text]{box-sizing:border-box;width:100%;height:26px;padding:0 20px;line-height:22px;border:1px solid #aaa;-moz-border-radius:12px;-webkit-border-radius:12px;border-radius:12px;outline:0 solid}.elfinder-button-search input::-ms-clear{display:none}.elfinder-touch .elfinder-button-search input{height:30px;line-height:28px}.elfinder-rtl .elfinder-button-search input{direction:rtl}.elfinder-button-search .ui-icon{position:absolute;height:18px;top:50%;margin:-8px 4px 0;opacity:.6;filter:Alpha(Opacity=60)}.elfinder-button-search-menu .ui-checkboxradio-icon{display:none}.elfinder-ltr .elfinder-button-search .ui-icon-search{left:0}.elfinder-ltr .elfinder-button-search .ui-icon-close,.elfinder-rtl .elfinder-button-search .ui-icon-search{right:0}.elfinder-rtl .elfinder-button-search .ui-icon-close{left:0}.elfinder-toolbar-swipe-handle{position:absolute;top:0;left:0;height:50px;width:100%;pointer-events:none;background:linear-gradient(to bottom,#dde4eb 0,rgba(221,228,235,.8) 2px,rgba(216,223,230,.3) 5px,rgba(0,0,0,.1) 95%,rgba(0,0,0,0) 100%)}
/**
 * elFinder Theme Template
 * @author tzd
 */
/* Reset */
/* reset.css */
/* Comment out/delete the reset rules where appropriate */
/* container */
.elfinder,
.elfinder .elfinder-toolbar,
.elfinder .elfinder-buttonset,
.elfinder .elfinder-button,
.elfinder .elfinder-toolbar-button-separator,
.elfinder .elfinder-toolbar input,
.elfinder .elfinder-cwd,
.elfinder .elfinder-cwd table tr td.ui-state-active,
.elfinder .elfinder-cwd table tr td.ui-state-hover,
.elfinder .elfinder-cwd table tr td.ui-state-selected,
.elfinder .elfinder-cwd table thead tr,
.elfinder .elfinder-cwd table tbody tr,
.elfinder .elfinder-cwd-file .ui-state-hover,
.elfinder .elfinder-cwd-file .elfinder-cwd-icon-directory,
.elfinder .elfinder-cwd-file .elfinder-cwd-filename,
.elfinder .elfinder-cwd-file .elfinder-cwd-filename.ui-state-hover,
.elfinder .ui-state-default,
.elfinder .ui-state-active,
.elfinder .ui-state-hover,
.elfinder .ui-selected,
.elfinder .ui-widget,
.elfinder .ui-widget-header,
.elfinder .ui-widget-content,
.elfinder-button-icon,
.elfinder-navbar-icon,
.elfinder-cwd-icon-directory,
.elfinder .ui-icon,
.elfinder .elfinder-statusbar,
.elfinder .elfinder-statusbar *,
.elfinder-contextmenu,
.elfinder-contextmenu-sub,
.elfinder-contextmenu-item,
.elfinder-contextmenu-separator,
.elfinder-contextmenu .ui-state-hover {
	background: none;
	border: none;
}

/* Variables */
/* Main features of the whole UI */
/* main.css */
/* Container div for elFinder */
.elfinder,
.elfinder .elfinder-dialog,
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-menu {
	background: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	border-radius: 0;
}

/* Override styles in child elements of elFinder div */
/* Use for consistently setting text sizes and overriding general jQuery UI styles */
.elfinder * {
	color: #212121;
	font-family: 'Roboto', Arial, sans-serif;
}

/* Resizer */
/* Used if elFinder is resizable and on dialogs */
.elfinder .ui-icon-gripsmall-diagonal-se,
.elfinder-dialog .ui-icon-gripsmall-diagonal-se {
	/* */

}

.elfinder-cwd-wrapper-empty .elfinder-cwd:after {
	font-size: 20px;
	opacity: 1;
	color: #727272;
	font-weight: 500;
}

/* Icons */
/* icons.css */
/* These are shown thoughought the UI, not just in the list/thumbnail view */
/* General icon settings (in main view panel) */
.elfinder-cwd-icon {
	/* */

}

/* If you are using CSS sprites for your icons, set the background position
   in each of the below styles */
/* Directory */
.elfinder-cwd-icon-directory {
	background-color: transparent;
	background-image: url('../images/svg/directory.svg') !important;
	background-position: center center;
	height: 16px;
	width: 16px;
	background-repeat: no-repeat;
}

/* Empty file */
.elfinder-cwd-icon-x-empty,
.elfinder-cwd-icon-inode {
	/* */

}

/* (Rich) Text */
.elfinder-cwd-icon-text,
.elfinder-cwd-icon-rtf,
.elfinder-cwd-icon-rtfd {
	/* */

}

/* PDF */
.elfinder-cwd-icon-pdf {
	/* */

}

/* Microsoft Word */
.elfinder-cwd-icon-vnd-ms-word {
	/* */

}

/* Microsoft PowerPoint */
.elfinder-cwd-icon-vnd-ms-powerpoint {
	/* */

}

/* Microsoft Excel */
.elfinder-cwd-icon-ms-excel,
.elfinder-cwd-icon-vnd-ms-excel,
.elfinder-cwd-icon-vnd-ms-excel-addin-macroEnabled-12,
.elfinder-cwd-icon-vnd-ms-excel-sheet-binary-macroEnabled-12,
.elfinder-cwd-icon-vnd-ms-excel-sheet-macroEnabled-12,
.elfinder-cwd-icon-vnd-ms-excel-template-macroEnabled-12 {
	/* */

}

/* Audio */
.elfinder-cwd-icon-audio {
	/* */

}

/* Video */
.elfinder-cwd-icon-video,
.elfinder-cwd-icon-flash-video {
	/* */

}

/* Archives */
.elfinder-cwd-icon-zip,
.elfinder-cwd-icon-x-zip,
.elfinder-cwd-icon-x-xz,
.elfinder-cwd-icon-x-7z-compressed,
.elfinder-cwd-icon-x-gzip,
.elfinder-cwd-icon-x-tar,
.elfinder-cwd-icon-x-bzip,
.elfinder-cwd-icon-x-bzip2,
.elfinder-cwd-icon-x-rar {
	/* */

}

/* Code/Scripts */
.elfinder-cwd-icon-javascript,
.elfinder-cwd-icon-x-javascript,
.elfinder-cwd-icon-x-perl,
.elfinder-cwd-icon-x-python,
.elfinder-cwd-icon-x-ruby,
.elfinder-cwd-icon-x-sh,
.elfinder-cwd-icon-x-shellscript,
.elfinder-cwd-icon-x-c,
.elfinder-cwd-icon-x-csrc,
.elfinder-cwd-icon-x-chdr,
.elfinder-cwd-icon-x-c--,
.elfinder-cwd-icon-x-c--src,
.elfinder-cwd-icon-x-c--hdr,
.elfinder-cwd-icon-x-java,
.elfinder-cwd-icon-x-java-source,
.elfinder-cwd-icon-x-php,
.elfinder-cwd-icon-xml {
	/* */

}

/* Toolbar (top panel) */
/* toolbar.css */
/* Main toolbar wrapper */
.elfinder .elfinder-toolbar {
	border-bottom: 1px solid #e5e5e5;
	background: #FAFAFA;
}

/* Buttonset wrapper */
.elfinder .elfinder-toolbar .elfinder-buttonset {
	border-radius: 0 !important;
}

.elfinder .elfinder-toolbar .elfinder-buttonset + .elfinder-buttonset {
	padding-left: 8px;
	border-left: 1px solid #e0e0e0;
}

/* Buttons */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button {
	border: none !important;
	transition: background 0.3s, border 0.3s;
	border-radius: 2px !important;
	width: 18px;
	height: 18px;
}

/* Hovered buttons */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button:hover {
	background: #e5e5e5;
}

/* Disabled buttons */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button.ui-state-disabled {
	/* */

}

/* Buttonset separator */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-toolbar-button-separator {
	/* */

}

/* Button icons */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon {
	/* */

}

/* Searchbar */
.elfinder-toolbar .elfinder-button-search {
	/* */

}

.elfinder .elfinder-button-search input {
	border-bottom: 1px solid #e0e0e0;
	box-shadow: none;
	border-radius: 0;
	height: 24px;
}

/* Searchbar icons (search and close) */
.elfinder-toolbar .elfinder-button-search .ui-icon {
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
}

.elfinder-toolbar .elfinder-button-search .ui-icon-search {
	background-image: url('../images/svg/search.svg');
}

.elfinder-toolbar .elfinder-button-search .ui-icon-close {
	background-image: url('../images/svg/close.svg');
}

/* Commands */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon {
	background-color: transparent;
	background-position: center center;
	height: 18px;
	width: 18px;
	background-size: 18px;
}

/* Back */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-back {
	background-image: url('../images/svg/back.svg');
}

/* Forward */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-forward {
	background-image: url('../images/svg/forward.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-reload {
	background-image: url('../images/svg/reload.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-netmount {
	background-image: url('../images/svg/netmount.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-home {
	background-image: url('../images/svg/home.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-up {
	background-image: url('../images/svg/up.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-mkdir {
	background-image: url('../images/svg/directory.svg');
	background-repeat: no-repeat;
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-mkfile {
	background-image: url('../images/svg/file.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-upload {
	background-image: url('../images/svg/upload.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-open {
	background-image: url('../images/svg/open.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-download {
	background-image: url('../images/svg/download.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-getfile {
	background-image: url('../images/svg/getfile.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-info {
	background-image: url('../images/svg/info.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-quicklook {
	background-image: url('../images/svg/preview.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-copy {
	background-image: url('../images/svg/copy.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-cut {
	background-image: url('../images/svg/cut.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-paste {
	background-image: url('../images/svg/paste.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-view {
	background-image: url('../images/svg/view.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-view-list {
	background-image: url('../images/svg/view-list.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-help {
	background-image: url('../images/svg/help.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-duplicate {
	background-image: url('../images/svg/duplicate.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-rm {
	background-image: url('../images/svg/rm.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-edit {
	background-image: url('../images/svg/edit.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-rename {
	background-image: url('../images/svg/rename.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-archive {
	background-image: url('../images/svg/archive.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-resize {
	background-image: url('../images/svg/resize.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-extract {
	background-image: url('../images/svg/extract.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-sort {
	background-image: url('../images/svg/sort.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-undo {
	background-image: url('../images/svg/undo.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-redo {
	background-image: url('../images/svg/redo.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-hide {
	background-image: url('../images/svg/hide-hidden.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-empty {
	background-image: url('../images/svg/rm-empty.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-preference {
	background-image: url('../images/svg/preference.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-selectall {
	background-image: url('../images/svg/selection.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-selectnone {
	background-image: url('../images/svg/selection-off.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-selectinvert {
	background-image: url('../images/svg/select-inverse.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-fullscreen {
	background-image: url('../images/svg/fullscreen.svg');
}

.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-icon-unfullscreen {
	background-image: url('../images/svg/fullscreen-exit.svg');
}

/* Menus (e.g. for sorting) */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-menu {
	/* */

}

/* Menu items */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-menu-item {
	/* */

}

/* Selected items */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-menu-item-selected {
	/* */

}

/* Hovered items */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-menu-item.ui-state-hover {
	/* */

}

/* Menu item sorting ascending icon */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-menu-item-selected.elfinder-menu-item-sort-asc .elfinder-menu-item-sort-dir {
	/* */

}

/* Menu item sorting descending icon */
.elfinder .elfinder-toolbar .elfinder-buttonset .elfinder-button-menu-item-selected.elfinder-menu-item-sort-desc .elfinder-menu-item-sort-dir {
	/* */

}

/* Navbar (left panel) */
/* navbar.css */
/* Main wrapper for navbar */
.elfinder .elfinder-navbar {
	border-right: 1px solid #e5e5e5;
}

/* Directories */
.elfinder .elfinder-navbar .elfinder-navbar-dir {
	color: #212121;
	padding: 5px 12px 5px 42px;
	border: none !important;
	border-radius: 4px;
}

/* Hovered directory  */
.elfinder .elfinder-navbar .elfinder-navbar-dir:hover {
	background: #e3f2fd;
}

/* Current/active directory (cwd) */
.elfinder .elfinder-navbar .elfinder-navbar-dir.ui-state-active {
	background: #bbdefb;
}

/* Howvered cwd */
.elfinder .elfinder-navbar .elfinder-navbar-dir.ui-state-active:hover {
	/* */

}

/* Icons */
/* Arrow */
.elfinder .elfinder-navbar .elfinder-navbar-arrow {
	/* */

}

/* Expanded directory arrow */
.elfinder .elfinder-navbar-expanded .elfinder-navbar-arrow {
	/* */

}

/* All icons (directories) */
.elfinder .elfinder-navbar .elfinder-navbar-icon {
	background-color: transparent;
	background-image: url('../images/svg/directory.svg') !important;
	background-position: center center;
	background-repeat: no-repeat;
	height: 24px;
	width: 24px;
	background-size: 24px;
	margin-top: -12px;

}

/* Root/volume */
.elfinder .elfinder-navbar-root > .elfinder-navbar-icon {
	/* */

}

/* Root/volume expanded */
.elfinder .elfinder-navbar-root.elfinder-navbar-expanded > .elfinder-navbar-icon {
	background-image: url('../images/svg/directory_expanded.svg') !important;
	background-repeat: no-repeat;
}

/* Resizable handle */
.elfinder .elfinder-navbar .ui-resizable-handle.ui-resizable-e {
	/* */

}

/* Views (List and Thumbnail) */
/* view-list.css */
/* Wrapper for list view */
.elfinder .elfinder-cwd-wrapper-list {
	/* */

}

/* List view table */
.elfinder .elfinder-cwd-wrapper-list table {
	/* */

}

/* Column headings */
.elfinder .elfinder-cwd-wrapper-list table thead tr td {
	color: #43536a;
}

.elfinder .elfinder-cwd-wrapper-list table thead tr td:not(:last-child) {
	border-right: 1px solid #e5e5e5;
}

/* Hovered column heading */
.elfinder .elfinder-cwd-wrapper-list table thead tr td.ui-state-hover,
.elfinder .elfinder-cwd-wrapper-list table thead tr td:hover {
	background: #d0dded;
}

/* Actively sorted column heading */
.elfinder .elfinder-cwd-wrapper-list table thead tr td.ui-state-active {
	border-right: 1px solid #e5e5e5;
}

/* Table heading icons (mainly the sorter) */
.elfinder .elfinder-cwd-wrapper-list table tr td .ui-icon {
	/* */

}

/* Table heading sorter up */
.elfinder .elfinder-cwd-wrapper-list table tr.ui-state-default td .ui-icon-triangle-1-n:before {
	/* */

}

/* Table heading sorter down */
.elfinder .elfinder-cwd-wrapper-list table tr.ui-state-default td .ui-icon-triangle-1-s:before {
	/* */

}

/* Files */
/* File */
.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file td {
	border: 1px solid transparent;
}

.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file td:not(:first-child) {
	color: #9d9d9d;
}

/* Filename */
.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file .elfinder-cwd-filename {
	/* */

}

/* Hovered file */
.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file:hover,
.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file.ui-state-hover,
.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file.ui-state-hover:hover {
	/* fix for 2.1 */

	background: #e5f3ff;
	border-color: #e5f3ff;
}

/* Selected file */
.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file.ui-selected {
	background: #cce8ff;
}

.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file.ui-selected td {
	border-top: 1px solid #99d1ff;
	border-bottom: 1px solid #99d1ff;
}

.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file.ui-selected td:first-child {
	border-left: 1px solid #99d1ff;
}

.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file.ui-selected td:last-child {
	border-right: 1px solid #99d1ff;
}

/* Icons */
.elfinder .elfinder-cwd-wrapper-list .elfinder-cwd-file .elfinder-cwd-icon {
	/* */

}

/* view-thumbnail.css */
/* Wrapper for thumbnail view */
/* File wrapper */
.elfinder .elfinder-cwd-view-icons .elfinder-cwd-file {
	width: 80px;
	height: 80px;
	border: 1px solid transparent;
	border-radius: 0;
}

/* Hovered file */
.elfinder .elfinder-cwd-view-icons .elfinder-cwd-file.ui-state-hover {
	background: #e5f3ff;
}

/* Selected file */
.elfinder .elfinder-cwd-view-icons .elfinder-cwd-file.ui-selected {
	background: #cce8ff;
	border: 1px solid #99d1ff;
}

/* File icon */
.elfinder .elfinder-cwd-view-icons .elfinder-cwd-file .elfinder-cwd-icon-directory,
.elfinder .elfinder-dialog .elfinder-cwd-icon-directory {
	background-color: transparent;
	background-image: url('../images/svg/directory.svg') !important;
	background-position: center center;
	height: 48px;
	width: 48px;
	background-size: 48px;
	background-repeat: no-repeat;
}

/* File name */
.elfinder .elfinder-cwd-view-icons .elfinder-cwd-file .elfinder-cwd-filename {
	color: #000 !important;
}

/* Context menu */
/* contextmenu.css */
/* **Note** that the context menu is NOT inside the main elfinder div */
/* Context menu wrapper */
.elfinder-contextmenu,
.elfinder-contextmenu-sub,
.elfinder-button-menu {
	font-size: 15px;
	background: #ffffff !important;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	border-radius: 0;
	padding: 3px 3px 0 3px;
	z-index: 10;
	min-width: 120px;
}

/* Menu item */
.elfinder-contextmenu .elfinder-contextmenu-item,
.elfinder-button-menu .elfinder-button-menu-item {
	margin: 0 0 4px 0;
	padding: 4px 16px;
}

/* Hovered menu item */
.elfinder-contextmenu .elfinder-contextmenu-item:hover,
.elfinder-button-menu .elfinder-button-menu-item:hover {
	background: #f5f5f5;
	color: #212121;
}

/* Item icon */
.elfinder-contextmenu .elfinder-contextmenu-item .elfinder-contextmenu-icon {
	/* */

}

.elfinder-contextmenu .elfinder-contextmenu-item span {
	font-size: 14px;
}

/* Separator */
.elfinder-contextmenu .elfinder-contextmenu-separator {
	height: 1px;
	margin: 1px;
}

.elfinder-contextmenu .elfinder-button-icon-open + span {
	font-weight: bold;
}

/* (Modal) Dialogs */
/* dialog.css */
/* Dialog wrapper */
.elfinder .elfinder-dialog {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.elfinder .elfinder-dialog-notify .ui-dialog-titlebar {
	display: none !important;
}

/* Dialog title */
.elfinder .elfinder-dialog .ui-dialog-titlebar {
	padding: 16px 16px 8px;
	margin-bottom: 8px;
	box-sizing: border-box;
	font: 500 18px / 28px "Roboto", sans-serif;
}

/* Close button */
.elfinder .elfinder-dialog .ui-dialog-titlebar-close {
	background: url('../images/svg/close.svg');
	right: 8px !important;
	left: auto !important;
	top: 8px;
	border-radius: 0;
	margin: 0;
	height: 24px;
	width: 24px;
	opacity: 0.6;
	background-size: 24px;
	position: absolute;
}

.elfinder .elfinder-dialog .ui-dialog-titlebar-close:hover {
	background: url('../images/svg/close.svg');
	opacity: 1;
}

.elfinder .elfinder-dialog .ui-dialog-content .elfinder-cwd-icon {
	position: relative;
}

/* Dialog content */
.elfinder .elfinder-dialog .ui-dialog-content {
	padding: 8px 24px;
	font-size: 13px;
}

.elfinder .elfinder-dialog .ui-dialog-content .elfinder-info-tb {
	font-size: 13px;
}

/* Tabs */
/* Tabs wrapper */
.elfinder .elfinder-dialog .ui-tabs-nav {
	margin: 0 0 16px;
}

.elfinder .elfinder-dialog .ui-tabs-nav li {
	border-bottom: 2px solid transparent;
}

.elfinder .elfinder-dialog .ui-tabs-nav li a {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	padding: 8px 12px;
}

.elfinder .elfinder-dialog .ui-tabs-nav li.ui-state-active {
	border-bottom-color: #0d47a1;
}

/* Normal tab */
.elfinder .elfinder-dialog .ui-tabs-nav .ui-state-default {
	/* */

}

/* Current tab */
.elfinder .elfinder-dialog .ui-tabs-nav .ui-tabs-selected {
	/* */

}

/* Active tab */
.elfinder .elfinder-dialog .ui-tabs-nav li:active {
	/* */

}

/* Icons */
/* Dialog icon (e.g. for error messages) */
.elfinder .elfinder-dialog .elfinder-dialog-icon {
	/* */

}

/* Error icon */
.elfinder .elfinder-dialog .elfinder-dialog-icon-error {
	/* */

}

/* Confirmation icon */
.elfinder .elfinder-dialog .elfinder-dialog-icon-confirm {
	/* */

}

/* Footer */
.elfinder .elfinder-dialog .ui-dialog-buttonpane {
	/* */

}

/* Buttonset (wrapper) */
.elfinder .elfinder-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	/* */

}

/* Button */
.elfinder .elfinder-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
	/* */

}

/* Styling specific types of dialogs */
/* Error */
.elfinder .elfinder-dialog-error .ui-dialog-content {
	/* */
	padding-left: 52px !important;
}

/* Confirm */
.elfinder .elfinder-dialog-confirm {
	/* */

}

/* File editing */
.elfinder .elfinder-dialog .elfinder-file-edit {
	/* */

}

/* File information */
/* Title */
.elfinder .elfinder-dialog .elfinder-info-title {
	/* */

}

/* Table */
.elfinder .elfinder-dialog .elfinder-info-tb {
	/* */

}

/* File upload (including dropbox) */
.elfinder .elfinder-dialog .elfinder-upload-dropbox,
.elfinder .elfinder-dialog .elfinder-upload-dialog-or {
	/* */

}

/* Status Bar */
/* statusbar.css */
/* Statusbar wrapper */
.elfinder .elfinder-statusbar {
	/* */
	background: #fafafa;
	border-top: 1px solid #e5e5e5;
}

/* File size */
.elfinder .elfinder-statusbar .elfinder-stat-size {
	/* */

}

/* Current path (breadcrumb trail) */
.elfinder .elfinder-statusbar .elfinder-path {
	/* */

}

/* Breadcrumb in current path */
.elfinder .elfinder-statusbar .elfinder-path a {
	/* */

}

/* Name of selected file(s) */
.elfinder .elfinder-statusbar .elfinder-stat-selected {
	/* */

}

/* Size of current file(s) */
.elfinder .elfinder-statusbar .elfinder-stat-size {
	/* */

}

.elfinder .elfinder-quicklook {
	background: rgba(0, 0, 0, .8);
	padding-top: 30px;
	padding-bottom: 48px;
}

.elfinder-quicklook-titlebar {
	height: 32px;
	line-height: 32px;
	text-align: left;
}

.elfinder-quicklook-title {
	color: #fff;
	padding-left: 8px;
	max-width: 80%;
}

.elfinder-quicklook-navbar {
	bottom: 6px;
}

.elfinder-quicklook-fullscreen {
	z-index: 5000;
}

.elfinder-quicklook-info-data {
	color: #fff;
}

.elfinder-cwd-icon:before {
	background: #fff;
}

.elfinder-cwd.elfinder-table-header-sticky table {
	border-top-color: #fff;
}

.elfinder .elfinder-cwd-view-list table thead td {
	background: #fff !important;
}

.elfinder .elfinder-cwd-view-list table thead td.ui-state-active {
	background: #cce8ff !important;
}

.elfinder-dialog-help {
	z-index: 5000 !important;
}

.elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right {
	top: 0;
	margin: 0;
	height: auto;
}

.elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right .ui-icon {
	border: none;
	margin: 0;
	width: 18px;
	height: 18px;
	background-size: 18px;
	display: inline-block;
}

.elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right .elfinder-icon-close {
	background-image: url('../images/close-light.png');
	margin-left: 4px;
}

.elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right .elfinder-icon-minimize {
	background-image: url('../images/minimize-light.png');
}

.elfinder-quicklook-titlebar-icon.elfinder-titlebar-button-right .elfinder-icon-full {
	background-image: url('../images/maximize-light.png');
}

.elfinder .ui-icon-gripsmall-diagonal-se,
.elfinder-dialog .ui-icon-gripsmall-diagonal-se {
	background: url('../images/resize-bottom-right.png');
	width: 18px;
	height: 18px;
	background-size: 18px;
}

.elfinder-quicklook .ui-icon-gripsmall-diagonal-se {
	background: url('../images/resize-bottom-right-light.png');
	width: 24px;
	height: 24px;
	background-size: 24px;
	float: right;
	position: absolute;
	right: 0;
}

.elfinder .elfinder-cwd-view-icons .elfinder-cwd-file {
	margin-top: 2px;
}

.elfinder.dialogelfinder .dialogelfinder-drag-close {
	background: url('../images/close.png');
	width: 18px;
	height: 18px;
	background-size: 18px;
}

.app_theme_a .uk-alert {
	background: #3f51b5;
}
.app_theme_a .md-btn-primary,
.app_theme_a .md-btn-primary:hover,
.app_theme_a .md-btn-primary:focus,
.app_theme_a .md-btn-primary:active {
	background: #3f51b5;
	color: #fff;
}
.app_theme_a .md-btn-flat-primary,
.app_theme_a .md-btn-flat-primary:hover,
.app_theme_a .md-btn-flat-primary:focus,
.app_theme_a .md-btn-flat-primary:active {
	color: #303f9f;
}
.app_theme_a .md-btn-flat-primary:hover,
.app_theme_a .md-btn-flat-primary:focus,
.app_theme_a .md-btn-flat-primary:active {
	background: #d1d6ef;
}
.app_theme_a .uk-badge-primary {
	background: #3f51b5;
}
.app_theme_a .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #e8eaf6;
}
.app_theme_a .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #e8eaf6;
}
.app_theme_a .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_a .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #e8eaf6;
}
.app_theme_a .md-fab.md-fab-accent {
	background: #ff4081;
}
.app_theme_a .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_a .md-list > li.md-list-item-active {
	color: #ff4081;
}
.app_theme_a .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_a .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #ff4081;
}
.app_theme_a .uk-pagination > li > a:hover {
	background: #ffd9e6;
}
.app_theme_a .uk-pagination > li.uk-active > a,
.app_theme_a .uk-pagination > li.uk-active > span {
	background: #ff4081;
	color: #fff;
}
.app_theme_a .uk-subnav-pill > .uk-active > * {
	background: #ff4081;
}
.app_theme_a .uk-tab > li > a:hover,
.app_theme_a .uk-tab > li > a:focus {
	border-bottom-color: #abb4e2;
}
.app_theme_a .uk-tab > li.uk-active > a {
	border-bottom-color: #3f51b5;
}
.app_theme_a .uk-tab-bottom li > a:hover,
.app_theme_a .uk-tab-bottom li > a:focus {
	border-top-color: #abb4e2;
}
.app_theme_a .uk-tab-bottom li.uk-active > a {
	border-top-color: #3f51b5;
}
.app_theme_a .uk-tab-left li > a:hover,
.app_theme_a .uk-tab-left li > a:focus {
	border-right-color: #abb4e2;
}
.app_theme_a .uk-tab-left li.uk-active > a {
	border-right-color: #3f51b5;
}
.app_theme_a .uk-tab-right li > a:hover,
.app_theme_a .uk-tab-right li > a:focus {
	border-left-color: #abb4e2;
}
.app_theme_a .uk-tab-right li.uk-active > a {
	border-left-color: #3f51b5;
}
.app_theme_a .uk-tab-double-header li a:hover,
.app_theme_a .uk-tab-double-header li a:focus {
	border-bottom-color: #606fc7;
}
.app_theme_a .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #ff4081;
}
.app_theme_a #header_main {
	background: #3f51b5;
}
.app_theme_a .header_double_height:after {
	background: #3f51b5;
}
.app_theme_a #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #3f51b5;
}
.app_theme_a #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #3f51b5;
}
.app_theme_a .user_heading {
	background: #303f9f;
}
.app_theme_a #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #ff4081;
}
.app_theme_a #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #ff4081;
}
.app_theme_a #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #ff4081;
}
.app_theme_a .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #ff4081;
	color: #fff;
}
.app_theme_a .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #ff4081;
}
.app_theme_a .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_a .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #ff4081;
}
.app_theme_a .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #ff4081;
}
.app_theme_a .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #ff4081;
}
.app_theme_a .DTTT_print_info h6 {
	color: #ff4081;
}
.app_theme_a .fc-unthemed .fc-button.fc-state-active:after {
	color: #ff4081;
}
.app_theme_a .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #3f51b5, inset 0 -1px 0 2px #3f51b5;
}
.app_theme_a .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #e8eaf6;
}
.app_theme_a .tablesorter-altair .headerSortUp,
.app_theme_a .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_a .tablesorter-altair .tablesorter-headerAsc,
.app_theme_a .tablesorter-altair .headerSortDown,
.app_theme_a .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_a .tablesorter-altair .tablesorter-headerDesc {
	color: #ff4081;
}
.app_theme_a .wizard > .steps {
	background: #3f51b5;
}
.app_theme_a .wizard > .steps > ul > li.current a,
.app_theme_a .wizard > .steps > ul > li.current a:hover,
.app_theme_a .wizard > .steps > ul > li.current a:active {
	background: #606fc7;
}
.app_theme_a .wizard > .steps > ul > li.done a,
.app_theme_a .wizard > .steps > ul > li.done a:hover,
.app_theme_a .wizard > .steps > ul > li.done a:active {
	background: #303f9f;
}
.app_theme_a .md-card-primary {
	border-left-color: #3f51b5;
}
.app_theme_a .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_a .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(63, 81, 181, 0.4);
}
.app_theme_a .search_list_link {
	color: #ff4081;
}
.app_theme_a .chatbox.cb_active .chatbox_header {
	background: #303f9f;
}
.app_theme_a .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #3f51b5;
}
.app_theme_a .uk-table tr.row_checked td,
.app_theme_a .uk-table-hover tbody tr:hover {
	background: #e8eaf6;
}

.app_theme_b .uk-alert {
	background: #673ab7;
}
.app_theme_b .md-btn-primary,
.app_theme_b .md-btn-primary:hover,
.app_theme_b .md-btn-primary:focus,
.app_theme_b .md-btn-primary:active {
	background: #673ab7;
	color: #fff;
}
.app_theme_b .md-btn-flat-primary,
.app_theme_b .md-btn-flat-primary:hover,
.app_theme_b .md-btn-flat-primary:focus,
.app_theme_b .md-btn-flat-primary:active {
	color: #512da8;
}
.app_theme_b .md-btn-flat-primary:hover,
.app_theme_b .md-btn-flat-primary:focus,
.app_theme_b .md-btn-flat-primary:active {
	background: #daceef;
}
.app_theme_b .uk-badge-primary {
	background: #673ab7;
}
.app_theme_b .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #ede7f6;
}
.app_theme_b .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #ede7f6;
}
.app_theme_b .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_b .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #ede7f6;
}
.app_theme_b .md-fab.md-fab-accent {
	background: #00bcd4;
}
.app_theme_b .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_b .md-list > li.md-list-item-active {
	color: #00bcd4;
}
.app_theme_b .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_b .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #00bcd4;
}
.app_theme_b .uk-pagination > li > a:hover {
	background: #d4faff;
}
.app_theme_b .uk-pagination > li.uk-active > a,
.app_theme_b .uk-pagination > li.uk-active > span {
	background: #00bcd4;
	color: #fff;
}
.app_theme_b .uk-subnav-pill > .uk-active > * {
	background: #00bcd4;
}
.app_theme_b .uk-tab > li > a:hover,
.app_theme_b .uk-tab > li > a:focus {
	border-bottom-color: #bda7e3;
}
.app_theme_b .uk-tab > li.uk-active > a {
	border-bottom-color: #673ab7;
}
.app_theme_b .uk-tab-bottom li > a:hover,
.app_theme_b .uk-tab-bottom li > a:focus {
	border-top-color: #bda7e3;
}
.app_theme_b .uk-tab-bottom li.uk-active > a {
	border-top-color: #673ab7;
}
.app_theme_b .uk-tab-left li > a:hover,
.app_theme_b .uk-tab-left li > a:focus {
	border-right-color: #bda7e3;
}
.app_theme_b .uk-tab-left li.uk-active > a {
	border-right-color: #673ab7;
}
.app_theme_b .uk-tab-right li > a:hover,
.app_theme_b .uk-tab-right li > a:focus {
	border-left-color: #bda7e3;
}
.app_theme_b .uk-tab-right li.uk-active > a {
	border-left-color: #673ab7;
}
.app_theme_b .uk-tab-double-header li a:hover,
.app_theme_b .uk-tab-double-header li a:focus {
	border-bottom-color: #8259cb;
}
.app_theme_b .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #00bcd4;
}
.app_theme_b #header_main {
	background: #673ab7;
}
.app_theme_b .header_double_height:after {
	background: #673ab7;
}
.app_theme_b #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #673ab7;
}
.app_theme_b #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #673ab7;
}
.app_theme_b .user_heading {
	background: #512da8;
}
.app_theme_b #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #00bcd4;
}
.app_theme_b #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #00bcd4;
}
.app_theme_b #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #00bcd4;
}
.app_theme_b .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #00bcd4;
	color: #fff;
}
.app_theme_b .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #00bcd4;
}
.app_theme_b .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_b .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #00bcd4;
}
.app_theme_b .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #00bcd4;
}
.app_theme_b .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #00bcd4;
}
.app_theme_b .DTTT_print_info h6 {
	color: #00bcd4;
}
.app_theme_b .fc-unthemed .fc-button.fc-state-active:after {
	color: #00bcd4;
}
.app_theme_b .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #673ab7, inset 0 -1px 0 2px #673ab7;
}
.app_theme_b .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #ede7f6;
}
.app_theme_b .tablesorter-altair .headerSortUp,
.app_theme_b .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_b .tablesorter-altair .tablesorter-headerAsc,
.app_theme_b .tablesorter-altair .headerSortDown,
.app_theme_b .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_b .tablesorter-altair .tablesorter-headerDesc {
	color: #00bcd4;
}
.app_theme_b .wizard > .steps {
	background: #673ab7;
}
.app_theme_b .wizard > .steps > ul > li.current a,
.app_theme_b .wizard > .steps > ul > li.current a:hover,
.app_theme_b .wizard > .steps > ul > li.current a:active {
	background: #8259cb;
}
.app_theme_b .wizard > .steps > ul > li.done a,
.app_theme_b .wizard > .steps > ul > li.done a:hover,
.app_theme_b .wizard > .steps > ul > li.done a:active {
	background: #512da8;
}
.app_theme_b .md-card-primary {
	border-left-color: #673ab7;
}
.app_theme_b .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_b .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(103, 58, 183, 0.4);
}
.app_theme_b .search_list_link {
	color: #00bcd4;
}
.app_theme_b .chatbox.cb_active .chatbox_header {
	background: #512da8;
}
.app_theme_b .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #673ab7;
}
.app_theme_b .uk-table tr.row_checked td,
.app_theme_b .uk-table-hover tbody tr:hover {
	background: #ede7f6;
}

.app_theme_c .uk-alert {
	background: #5d4037;
}
.app_theme_c .md-btn-primary,
.app_theme_c .md-btn-primary:hover,
.app_theme_c .md-btn-primary:focus,
.app_theme_c .md-btn-primary:active {
	background: #5d4037;
	color: #fff;
}
.app_theme_c .md-btn-flat-primary,
.app_theme_c .md-btn-flat-primary:hover,
.app_theme_c .md-btn-flat-primary:focus,
.app_theme_c .md-btn-flat-primary:active {
	color: #3e2723;
}
.app_theme_c .md-btn-flat-primary:hover,
.app_theme_c .md-btn-flat-primary:focus,
.app_theme_c .md-btn-flat-primary:active {
	background: #c4a59c;
}
.app_theme_c .uk-badge-primary {
	background: #5d4037;
}
.app_theme_c .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #efebe9;
}
.app_theme_c .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #efebe9;
}
.app_theme_c .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_c .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #efebe9;
}
.app_theme_c .md-fab.md-fab-accent {
	background: #1e88e5;
}
.app_theme_c .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_c .md-list > li.md-list-item-active {
	color: #1e88e5;
}
.app_theme_c .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_c .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #1e88e5;
}
.app_theme_c .uk-pagination > li > a:hover {
	background: #d5e9fa;
}
.app_theme_c .uk-pagination > li.uk-active > a,
.app_theme_c .uk-pagination > li.uk-active > span {
	background: #1e88e5;
	color: #fff;
}
.app_theme_c .uk-subnav-pill > .uk-active > * {
	background: #1e88e5;
}
.app_theme_c .uk-tab > li > a:hover,
.app_theme_c .uk-tab > li > a:focus {
	border-bottom-color: #b1887c;
}
.app_theme_c .uk-tab > li.uk-active > a {
	border-bottom-color: #5d4037;
}
.app_theme_c .uk-tab-bottom li > a:hover,
.app_theme_c .uk-tab-bottom li > a:focus {
	border-top-color: #b1887c;
}
.app_theme_c .uk-tab-bottom li.uk-active > a {
	border-top-color: #5d4037;
}
.app_theme_c .uk-tab-left li > a:hover,
.app_theme_c .uk-tab-left li > a:focus {
	border-right-color: #b1887c;
}
.app_theme_c .uk-tab-left li.uk-active > a {
	border-right-color: #5d4037;
}
.app_theme_c .uk-tab-right li > a:hover,
.app_theme_c .uk-tab-right li > a:focus {
	border-left-color: #b1887c;
}
.app_theme_c .uk-tab-right li.uk-active > a {
	border-left-color: #5d4037;
}
.app_theme_c .uk-tab-double-header li a:hover,
.app_theme_c .uk-tab-double-header li a:focus {
	border-bottom-color: #7d564a;
}
.app_theme_c .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #1e88e5;
}
.app_theme_c #header_main {
	background: #5d4037;
}
.app_theme_c .header_double_height:after {
	background: #5d4037;
}
.app_theme_c #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #5d4037;
}
.app_theme_c #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #5d4037;
}
.app_theme_c .user_heading {
	background: #3e2723;
}
.app_theme_c #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #1e88e5;
}
.app_theme_c #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #1e88e5;
}
.app_theme_c #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #1e88e5;
}
.app_theme_c .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #1e88e5;
	color: #fff;
}
.app_theme_c .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #1e88e5;
}
.app_theme_c .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_c .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #1e88e5;
}
.app_theme_c .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #1e88e5;
}
.app_theme_c .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #1e88e5;
}
.app_theme_c .DTTT_print_info h6 {
	color: #1e88e5;
}
.app_theme_c .fc-unthemed .fc-button.fc-state-active:after {
	color: #1e88e5;
}
.app_theme_c .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #5d4037, inset 0 -1px 0 2px #5d4037;
}
.app_theme_c .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #efebe9;
}
.app_theme_c .tablesorter-altair .headerSortUp,
.app_theme_c .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_c .tablesorter-altair .tablesorter-headerAsc,
.app_theme_c .tablesorter-altair .headerSortDown,
.app_theme_c .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_c .tablesorter-altair .tablesorter-headerDesc {
	color: #1e88e5;
}
.app_theme_c .wizard > .steps {
	background: #5d4037;
}
.app_theme_c .wizard > .steps > ul > li.current a,
.app_theme_c .wizard > .steps > ul > li.current a:hover,
.app_theme_c .wizard > .steps > ul > li.current a:active {
	background: #7d564a;
}
.app_theme_c .wizard > .steps > ul > li.done a,
.app_theme_c .wizard > .steps > ul > li.done a:hover,
.app_theme_c .wizard > .steps > ul > li.done a:active {
	background: #3e2723;
}
.app_theme_c .md-card-primary {
	border-left-color: #5d4037;
}
.app_theme_c .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_c .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(93, 64, 55, 0.4);
}
.app_theme_c .search_list_link {
	color: #1e88e5;
}
.app_theme_c .chatbox.cb_active .chatbox_header {
	background: #3e2723;
}
.app_theme_c .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #5d4037;
}
.app_theme_c .uk-table tr.row_checked td,
.app_theme_c .uk-table-hover tbody tr:hover {
	background: #efebe9;
}

.app_theme_d .uk-alert {
	background: #00acc1;
}
.app_theme_d .md-btn-primary,
.app_theme_d .md-btn-primary:hover,
.app_theme_d .md-btn-primary:focus,
.app_theme_d .md-btn-primary:active {
	background: #00acc1;
	color: #fff;
}
.app_theme_d .md-btn-flat-primary,
.app_theme_d .md-btn-flat-primary:hover,
.app_theme_d .md-btn-flat-primary:focus,
.app_theme_d .md-btn-flat-primary:active {
	color: #00838f;
}
.app_theme_d .md-btn-flat-primary:hover,
.app_theme_d .md-btn-flat-primary:focus,
.app_theme_d .md-btn-flat-primary:active {
	background: #c1f8ff;
}
.app_theme_d .uk-badge-primary {
	background: #00acc1;
}
.app_theme_d .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #e0f7fa;
}
.app_theme_d .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #e0f7fa;
}
.app_theme_d .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_d .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #e0f7fa;
}
.app_theme_d .md-fab.md-fab-accent {
	background: #673ab7;
}
.app_theme_d .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_d .md-list > li.md-list-item-active {
	color: #673ab7;
}
.app_theme_d .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_d .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #673ab7;
}
.app_theme_d .uk-pagination > li > a:hover {
	background: #ebe5f7;
}
.app_theme_d .uk-pagination > li.uk-active > a,
.app_theme_d .uk-pagination > li.uk-active > span {
	background: #673ab7;
	color: #fff;
}
.app_theme_d .uk-subnav-pill > .uk-active > * {
	background: #673ab7;
}
.app_theme_d .uk-tab > li > a:hover,
.app_theme_d .uk-tab > li > a:focus {
	border-bottom-color: #5bedff;
}
.app_theme_d .uk-tab > li.uk-active > a {
	border-bottom-color: #00acc1;
}
.app_theme_d .uk-tab-bottom li > a:hover,
.app_theme_d .uk-tab-bottom li > a:focus {
	border-top-color: #5bedff;
}
.app_theme_d .uk-tab-bottom li.uk-active > a {
	border-top-color: #00acc1;
}
.app_theme_d .uk-tab-left li > a:hover,
.app_theme_d .uk-tab-left li > a:focus {
	border-right-color: #5bedff;
}
.app_theme_d .uk-tab-left li.uk-active > a {
	border-right-color: #00acc1;
}
.app_theme_d .uk-tab-right li > a:hover,
.app_theme_d .uk-tab-right li > a:focus {
	border-left-color: #5bedff;
}
.app_theme_d .uk-tab-right li.uk-active > a {
	border-left-color: #00acc1;
}
.app_theme_d .uk-tab-double-header li a:hover,
.app_theme_d .uk-tab-double-header li a:focus {
	border-bottom-color: #00c3db;
}
.app_theme_d .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #673ab7;
}
.app_theme_d #header_main {
	background: #00acc1;
}
.app_theme_d .header_double_height:after {
	background: #00acc1;
}
.app_theme_d #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #00acc1;
}
.app_theme_d #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #00acc1;
}
.app_theme_d .user_heading {
	background: #00838f;
}
.app_theme_d #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #673ab7;
}
.app_theme_d #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #673ab7;
}
.app_theme_d #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #673ab7;
}
.app_theme_d .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #673ab7;
	color: #fff;
}
.app_theme_d .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #673ab7;
}
.app_theme_d .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_d .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #673ab7;
}
.app_theme_d .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #673ab7;
}
.app_theme_d .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #673ab7;
}
.app_theme_d .DTTT_print_info h6 {
	color: #673ab7;
}
.app_theme_d .fc-unthemed .fc-button.fc-state-active:after {
	color: #673ab7;
}
.app_theme_d .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #00acc1, inset 0 -1px 0 2px #00acc1;
}
.app_theme_d .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #e0f7fa;
}
.app_theme_d .tablesorter-altair .headerSortUp,
.app_theme_d .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_d .tablesorter-altair .tablesorter-headerAsc,
.app_theme_d .tablesorter-altair .headerSortDown,
.app_theme_d .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_d .tablesorter-altair .tablesorter-headerDesc {
	color: #673ab7;
}
.app_theme_d .wizard > .steps {
	background: #00acc1;
}
.app_theme_d .wizard > .steps > ul > li.current a,
.app_theme_d .wizard > .steps > ul > li.current a:hover,
.app_theme_d .wizard > .steps > ul > li.current a:active {
	background: #00d9f4;
}
.app_theme_d .wizard > .steps > ul > li.done a,
.app_theme_d .wizard > .steps > ul > li.done a:hover,
.app_theme_d .wizard > .steps > ul > li.done a:active {
	background: #00838f;
}
.app_theme_d .md-card-primary {
	border-left-color: #00acc1;
}
.app_theme_d .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_d .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(0, 172, 193, 0.4);
}
.app_theme_d .search_list_link {
	color: #673ab7;
}
.app_theme_d .chatbox.cb_active .chatbox_header {
	background: #00838f;
}
.app_theme_d .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #00acc1;
}
.app_theme_d .uk-table tr.row_checked td,
.app_theme_d .uk-table-hover tbody tr:hover {
	background: #e0f7fa;
}

.app_theme_dark {
	background: #303030;
	color: #fefefe;
}
.app_theme_dark a {
	color: #039be5;
}
.app_theme_dark a:hover,
.app_theme_dark a:active {
	color: #0277bd;
}
.app_theme_dark .md-card,
.app_theme_dark .md-card .md-card-toolbar,
.app_theme_dark .md-card.md-card-overlay .md-card-overlay-content,
.app_theme_dark .md-card-list-wrapper .md-card-list > ul > li,
.app_theme_dark .uk-dropdown,
.app_theme_dark #sidebar_main,
.app_theme_dark #breadcrumbs,
.app_theme_dark .uk-dropdown,
.app_theme_dark #sidebar_secondary,
.app_theme_dark #sidebar_secondary .uk-tab,
.app_theme_dark .uk-sticky-placeholder .uk-tab,
.app_theme_dark .clndr .clndr_events,
.app_theme_dark #footer,
.app_theme_dark .uk-nestable-panel,
.app_theme_dark .gallery_grid_image_caption,
.app_theme_dark .uk-accordion-alt .uk-accordion-title,
.app_theme_dark .map_search_wrapper .map_search_list_wrapper,
.app_theme_dark #page_heading {
	background: #424242;
}
.app_theme_dark h1,
.app_theme_dark h2,
.app_theme_dark h3,
.app_theme_dark h4,
.app_theme_dark h5,
.app_theme_dark h6,
.app_theme_dark .md-card .md-card-toolbar-heading-text,
.app_theme_dark .uk-dropdown > ul > li > a,
.app_theme_dark .uk-dropdown,
.app_theme_dark .uk-nav-dropdown > li > a,
.app_theme_dark .uk-tab > li > a,
.app_theme_dark .clndr .clndr_events .clndr_event > a,
.app_theme_dark .fc .fc-day-grid-event,
.app_theme_dark .md-card .md-card-head-text,
.app_theme_dark .gallery_grid_item,
.app_theme_dark .gallery_grid_item:hover,
.app_theme_dark .gallery_grid_item:focus,
.app_theme_dark .md-card .md-card-toolbar-input,
.app_theme_dark .uk-article-lead,
.app_theme_dark .uk-badge {
	color: #fefefe;
}
.app_theme_dark [class*=uk-icon-],
.app_theme_dark .uk-datepicker-next,
.app_theme_dark .uk-datepicker-previous,
.app_theme_dark #menu_top > li > a,
.app_theme_dark .disabled + .inline-label {
	color: #cbcbcb;
}
.app_theme_dark .uk-text-muted {
	color: #999 !important;
}
.app_theme_dark .material-icons {
	color: rgba(255, 255, 255, 0.8);
}
.app_theme_dark .md-list-addon-element > .md-list-addon-icon {
	color: rgba(255, 255, 255, 0.7);
}
.app_theme_dark .md-list .uk-nestable-list > li > a.md-list-content,
.app_theme_dark .md-list > li > a.md-list-content,
.app_theme_dark .md-list-outside > li > .md-list-content,
.app_theme_dark .md-input-wrapper > label,
.app_theme_dark .uk-table thead th {
	color: #cbcbcb;
}
.app_theme_dark .uk-table td,
.app_theme_dark .uk-table tfoot td,
.app_theme_dark .uk-table tfoot th,
.app_theme_dark .uk-table thead th {
	border-color: #616161;
}
.app_theme_dark .uk-table tr.row_checked td {
	background: #212121;
}
.app_theme_dark .uk-table-hover tbody tr:hover {
	background: #212121;
}
.app_theme_dark .md-list .uk-nestable-list > li {
	border-color: #424242;
}
.app_theme_dark .md-list > li {
	border-color: #616161;
}
.app_theme_dark select.md-input,
.app_theme_dark textarea.md-input,
.app_theme_dark input:not([type]).md-input,
.app_theme_dark input[type="text"].md-input,
.app_theme_dark input[type="password"].md-input,
.app_theme_dark input[type="datetime"].md-input,
.app_theme_dark input[type="datetime-local"].md-input,
.app_theme_dark input[type="date"].md-input,
.app_theme_dark input[type="month"].md-input,
.app_theme_dark input[type="time"].md-input,
.app_theme_dark input[type="week"].md-input,
.app_theme_dark input[type="number"].md-input,
.app_theme_dark input[type="email"].md-input,
.app_theme_dark input[type="url"].md-input,
.app_theme_dark input[type="search"].md-input,
.app_theme_dark input[type="tel"].md-input,
.app_theme_dark input[type="color"].md-input {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fefefe;
}
.app_theme_dark select optgroup,
.app_theme_dark select option {
	background: #424242;
}
.app_theme_dark .md-hr {
	border-top-color: rgba(0, 0, 0, 0.15);
}
.app_theme_dark input[type="button"]:disabled,
.app_theme_dark input[type="submit"]:disabled,
.app_theme_dark input[type="reset"]:disabled,
.app_theme_dark input[type="file"]:disabled::-webkit-file-upload-button,
.app_theme_dark button:disabled,
.app_theme_dark select:disabled,
.app_theme_dark keygen:disabled,
.app_theme_dark optgroup:disabled,
.app_theme_dark option:disabled,
.app_theme_dark select[disabled] > option {
	color: #aaa;
}
.app_theme_dark .uk-tooltip {
	background: #212121;
}
.app_theme_dark .uk-thumbnail {
	background: #616161;
}
.app_theme_dark .uk-thumbnail-caption {
	color: #fefefe;
}
.app_theme_dark .uk-alert {
	background: #546e7a;
}
.app_theme_dark .md-btn {
	color: #212121;
}
.app_theme_dark .md-btn.disabled {
	background: #616161;
}
.app_theme_dark .md-btn-primary,
.app_theme_dark .md-btn-primary:hover,
.app_theme_dark .md-btn-primary:focus,
.app_theme_dark .md-btn-primary:active {
	background: #546e7a;
	color: #fff;
}
.app_theme_dark .md-btn-flat {
	color: #fefefe;
}
.app_theme_dark .md-btn-flat:hover,
.app_theme_dark .md-btn-flat:focus,
.app_theme_dark .md-btn-flat:active {
	color: #fefefe;
}
.app_theme_dark .md-btn-flat[data-uk-button]:hover,
.app_theme_dark .md-btn-flat[data-uk-button]:focus,
.app_theme_dark .md-btn-flat[data-uk-button]:active {
	color: #727272;
}
.app_theme_dark .md-btn-flat-primary.uk-active {
	color: #fefefe !important;
	background: #546e7a;
}
.app_theme_dark .md-btn-flat-warning.uk-active {
	color: #fefefe !important;
	background: #ffa000;
}
.app_theme_dark .md-btn-flat-danger.uk-active {
	color: #fefefe !important;
	background: #e53935;
}
.app_theme_dark .md-btn-flat-success.uk-active {
	color: #fefefe !important;
	background: #7cb342;
}
.app_theme_dark .md-btn-flat.disabled {
	color: #616161;
}
.app_theme_dark .uk-badge-primary {
	background: #546e7a;
}
.app_theme_dark .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #546e7a;
}
.app_theme_dark .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #546e7a;
}
.app_theme_dark .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #424242;
}
.app_theme_dark .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #546e7a;
}
.app_theme_dark .uk-datepicker-nav {
	background: #009688;
}
.app_theme_dark .uk-datepicker-table a {
	color: #fefefe;
}
.app_theme_dark a.uk-datepicker-table-muted {
	color: #212121;
}
.app_theme_dark .md-fab.md-fab-accent {
	background: #009688;
}
.app_theme_dark .md-fab .material-icons {
	color: #727272;
}
.app_theme_dark .md-fab-warning .material-icons,
.app_theme_dark .md-fab-success .material-icons,
.app_theme_dark .md-fab-primary .material-icons,
.app_theme_dark .md-fab-danger .material-icons,
.app_theme_dark .md-fab-accent .material-icons {
	color: #fefefe;
}
.app_theme_dark .uk-file-upload {
	background: #616161;
}
.app_theme_dark .iradio_md {
	border-color: rgba(255, 255, 255, 0.4);
}
.app_theme_dark .icheckbox_md {
	border-color: rgba(255, 255, 255, 0.4);
	background: #424242;
}
.app_theme_dark .icheckbox_md.hover.checked,
.app_theme_dark .icheckbox_md.checked {
	background: #009688;
	border-color: #009688;
}
.app_theme_dark .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_dark .md-list > li.md-list-item-active {
	color: #009688;
	background: #212121;
}
.app_theme_dark .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_dark .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #009688;
}
.app_theme_dark .uk-modal-dialog,
.app_theme_dark .uk-modal-dialog .uk-modal-footer {
	background: #424242;
}
.app_theme_dark .uk-pagination > li > a:hover {
	background: #30ffec;
}
.app_theme_dark .uk-pagination > li.uk-active > a,
.app_theme_dark .uk-pagination > li.uk-active > span {
	background: #009688;
	color: #fff;
}
.app_theme_dark .uk-subnav-pill > .uk-active > * {
	background: #009688;
}
.app_theme_dark .uk-tab > li > a:hover,
.app_theme_dark .uk-tab > li > a:focus {
	border-bottom-color: #a6b9c1;
}
.app_theme_dark .uk-tab > li.uk-active > a {
	border-bottom-color: #546e7a;
}
.app_theme_dark .uk-tab-bottom li > a:hover,
.app_theme_dark .uk-tab-bottom li > a:focus {
	border-top-color: #a6b9c1;
}
.app_theme_dark .uk-tab-bottom li.uk-active > a {
	border-top-color: #546e7a;
}
.app_theme_dark .uk-tab-left li > a:hover,
.app_theme_dark .uk-tab-left li > a:focus {
	border-right-color: #a6b9c1;
}
.app_theme_dark .uk-tab-left li.uk-active > a {
	border-right-color: #546e7a;
}
.app_theme_dark .uk-tab-right li > a:hover,
.app_theme_dark .uk-tab-right li > a:focus {
	border-left-color: #a6b9c1;
}
.app_theme_dark .uk-tab-right li.uk-active > a {
	border-left-color: #546e7a;
}
.app_theme_dark .uk-tab-double-header li a:hover,
.app_theme_dark .uk-tab-double-header li a:focus {
	border-bottom-color: #698998;
}
.app_theme_dark .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #009688;
}
.app_theme_dark .timeline:before {
	background: #616161;
}
.app_theme_dark .timeline_icon {
	border-color: #616161;
}
.app_theme_dark .timeline_content_addon {
	background: #616161;
}
.app_theme_dark .k-panelbar li.k-item {
	background: #363636;
}
.app_theme_dark .chat_submit_box {
	background: #212121;
}
.app_theme_dark .scrum_board_overflow {
	background: #303030;
}
.app_theme_dark .scrum_task {
	background: #424242;
}
.app_theme_dark #scrum_board .scrum_column {
	background: rgba(0, 0, 0, 0.25);
}
.app_theme_dark #scrum_board .scrum_column_heading {
	background: #303030;
}
.app_theme_dark .blog_list_footer {
	border-top-color: rgba(0, 0, 0, 0.3);
}
.app_theme_dark #header_main {
	background: #546e7a;
}
.app_theme_dark #header_main .uk-navbar .uk-navbar-nav > li.uk-open > a:after {
	border-bottom-color: #424242;
}
.app_theme_dark .header_double_height:after {
	background: #546e7a;
}
.app_theme_dark #top_bar {
	background: #424242;
}
.app_theme_dark #top_bar .top_bar_nav > li > a {
	color: #fefefe;
}
.app_theme_dark #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #546e7a;
}
.app_theme_dark #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #546e7a;
}
.app_theme_dark .user_heading {
	background: #37474f;
}
.app_theme_dark #sidebar_main .sidebar_main_header {
	background-image: url("../../img/sidebar_head_bg_dark.png");
	background-repeat: no-repeat;
	background-position: 0 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 192), only screen and (min-resolution: 192dppx), only screen and (min-resolution: 2dppx) {
	.app_theme_dark #sidebar_main .sidebar_main_header {
		background-image: url("../../img/sidebar_head_bg_dark@2x.png");
		background-size: 240px 88px;
	}
}
.app_theme_dark #sidebar_main .sidebar_main_header .selectize-control.single .selectize-input:after {
	color: rgba(255, 255, 255, 0.25);
}
.app_theme_dark #sidebar_main .sidebar_main_header .sidebar_logo a .logo_light {
	display: inline-block;
}
.app_theme_dark #sidebar_main .sidebar_main_header .sidebar_logo a .logo_regular {
	display: none;
}
.app_theme_dark #sidebar_main .menu_section > ul > li a {
	color: #fefefe;
}
.app_theme_dark #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #009688;
}
.app_theme_dark #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #009688;
}
.app_theme_dark #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #009688;
}
.app_theme_dark .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #009688;
	color: #fff;
}
.app_theme_dark .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #009688;
}
.app_theme_dark .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_dark .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #009688;
}
.app_theme_dark .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #009688;
}
.app_theme_dark .sidebar_mini #sidebar_main .menu_section > ul > li > ul {
	background: #424242;
}
.app_theme_dark .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #009688;
}
.app_theme_dark .clndr .clndr_days .clndr_days_grid .day.last-month,
.app_theme_dark .clndr .clndr_days .clndr_days_grid .day.next-month {
	color: #212121;
}
.app_theme_dark .clndr .clndr_days .clndr_days_grid .day.day.event > span {
	border-color: rgba(255, 255, 255, 0.25);
}
.app_theme_dark .DTTT_print_info h6 {
	color: #009688;
}
.app_theme_dark .fc-unthemed .fc-button.fc-state-active:after {
	color: #009688;
}
.app_theme_dark .dropify-wrapper {
	background: #424242;
	color: #fefefe;
	border-color: #616161;
}
.app_theme_dark .dropify-wrapper .dropify-preview {
	background: #424242;
	color: #fefefe;
}
.app_theme_dark div.ganttview-vtheader {
	background: #424242;
}
.app_theme_dark div.ganttview-vtheader div.ganttview-vtheader-group-name {
	background: rgba(0, 0, 0, 0.5);
}
.app_theme_dark div.ganttview-vtheader div.ganttview-vtheader-group {
	color: #fefefe;
}
.app_theme_dark div.ganttview-vtheader div.ganttview-vtheader-series-row,
.app_theme_dark div.ganttview-vtheader div.ganttview-vtheader-group-name {
	border-top-color: rgba(0, 0, 0, 0.3);
}
.app_theme_dark div.ganttview-grid-spacer {
	border-top-color: rgba(0, 0, 0, 0.3);
	background: rgba(0, 0, 0, 0.5);
}
.app_theme_dark div.ganttview-grid-row-cell.ganttview-weekend,
.app_theme_dark div.ganttview-hzheader-day.ganttview-weekend {
	background: rgba(0, 0, 0, 0.35);
}
.app_theme_dark div.ganttview-grid-row-cell,
.app_theme_dark div.ganttview-hzheader-day {
	border-color: rgba(0, 0, 0, 0.3) !important;
}
.app_theme_dark div.ganttview-hzheader-month {
	color: #fefefe;
}
.app_theme_dark .gmap-info-window h3 {
	color: #212121;
}
.app_theme_dark .gmap .on_gmap .controls_title {
	color: #727272;
}
.app_theme_dark .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #546e7a, inset 0 -1px 0 2px #546e7a;
}
.app_theme_dark .fc-toolbar .fc-button {
	text-shadow: none;
}
.app_theme_dark div.jtable-main-container table.jtable tbody > tr.jtable-row-even {
	background: rgba(0, 0, 0, 0.2);
}
.app_theme_dark div.jtable-main-container table.jtable tbody > tr:hover {
	background: rgba(0, 0, 0, 0.4);
}
.app_theme_dark div.jtable-main-container table.jtable tbody td .jtable-command-button {
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 4px;
}
.app_theme_dark .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #cfd8dc;
}
.app_theme_dark .tablesorter-altair .headerSortUp,
.app_theme_dark .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_dark .tablesorter-altair .tablesorter-headerAsc,
.app_theme_dark .tablesorter-altair .headerSortDown,
.app_theme_dark .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_dark .tablesorter-altair .tablesorter-headerDesc {
	color: #009688;
}
.app_theme_dark .wizard > .steps {
	background: #546e7a;
}
.app_theme_dark .wizard > .steps > ul > li.current a,
.app_theme_dark .wizard > .steps > ul > li.current a:hover,
.app_theme_dark .wizard > .steps > ul > li.current a:active {
	background: #698998;
}
.app_theme_dark .wizard > .steps > ul > li.done a,
.app_theme_dark .wizard > .steps > ul > li.done a:hover,
.app_theme_dark .wizard > .steps > ul > li.done a:active {
	background: #37474f;
}
.app_theme_dark .wizard > .actions a,
.app_theme_dark .wizard > .actions a:hover,
.app_theme_dark .wizard > .actions a:active,
.app_theme_dark .wizard > .actions a .material-icons {
	color: #fefefe;
}
.app_theme_dark .wizard.vertical > .content {
	background: #424242;
}
.app_theme_dark .md-card-toolbar[data-toolbar-progress] .md-card-toolbar-heading-text,
.app_theme_dark .md-card-toolbar[data-toolbar-progress] .material-icons {
	color: #212121;
}
.app_theme_dark .md-card-primary {
	border-left-color: #546e7a;
}
.app_theme_dark .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_dark .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(84, 110, 122, 0.4);
}
.app_theme_dark .search_list_link {
	color: #009688;
}
.app_theme_dark .selectize-dropdown {
	color: #fefefe;
	border-color: transparent;
	background: #616161;
	border-radius: 2px;
}
.app_theme_dark .selectize-dropdown .optgroup-header {
	color: #fefefe;
	background: #616161;
}
.app_theme_dark .selectize-dropdown .ui-select-choices-row:hover {
	background: #424242;
}
.app_theme_dark .selectize-input {
	background: #616161;
	color: #fefefe;
}
.app_theme_dark .selectize-input,
.app_theme_dark .selectize-control.single .selectize-input.input-active {
	background: #616161;
}
.app_theme_dark .selectize-control.single .selectize-input:after {
	color: #cbcbcb;
}
.app_theme_dark .selectize-control.multi .selectize-input > div {
	background: #424242;
	color: #fefefe;
}
.app_theme_dark .select2-container .select2-selection--single {
	color: #fefefe;
	border-color: transparent;
	background: #616161;
}
.app_theme_dark .select2-container .select2-selection--single .select2-selection__rendered,
.app_theme_dark .select2-container .select2-selection--single .select2-selection__clear:after {
	color: #fefefe;
}
.app_theme_dark .select2-container .select2-selection--multiple {
	color: #fefefe;
	border-color: transparent;
	background: #616161;
}
.app_theme_dark .select2-container .select2-selection--multiple .select2-selection__choice {
	background: #424242;
	color: #fefefe;
}
.app_theme_dark .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow:after {
	color: #fefefe;
}
.app_theme_dark .select2-container .select2-search--dropdown .select2-search__field {
	background: rgba(255, 255, 255, 0.2);
}
.app_theme_dark .select2-container--open .select2-dropdown {
	color: #fefefe;
	border-color: transparent;
	background: #616161;
}
.app_theme_dark .select2-drop {
	color: #fefefe;
	border-color: transparent;
	background: #616161;
}
.app_theme_dark .chatbox {
	background: #424242;
}
.app_theme_dark .chatbox.cb_active .chatbox_header {
	background: #546e7a;
}
.app_theme_dark .chatbox_content .chatbox_message .chatbox_message_content li > span {
	background: rgba(0, 0, 0, 0.3);
}
.app_theme_dark .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #546e7a;
}
.app_theme_dark .chatbox_footer .message_input {
	background: transparent;
	color: #fff;
}
.app_theme_dark .editable-container.editable-popup {
	background: #757575;
}
.app_theme_dark .editable-container.editable-popup .editable-clear-x:after {
	color: #fff;
}
.app_theme_dark .editable-container.editable-popup .select2-container .select2-choice {
	color: #fefefe;
	border-color: transparent;
	background: #616161;
}
.app_theme_dark .dropzone {
	background: #616161;
}
.app_theme_dark .dropzone .dz-preview.dz-image-preview {
	background: #616161;
}

.app_theme_e .uk-alert {
	background: #607d8b;
}
.app_theme_e .md-btn-primary,
.app_theme_e .md-btn-primary:hover,
.app_theme_e .md-btn-primary:focus,
.app_theme_e .md-btn-primary:active {
	background: #607d8b;
	color: #fff;
}
.app_theme_e .md-btn-flat-primary,
.app_theme_e .md-btn-flat-primary:hover,
.app_theme_e .md-btn-flat-primary:focus,
.app_theme_e .md-btn-flat-primary:active {
	color: #455a64;
}
.app_theme_e .md-btn-flat-primary:hover,
.app_theme_e .md-btn-flat-primary:focus,
.app_theme_e .md-btn-flat-primary:active {
	background: #d5dee2;
}
.app_theme_e .uk-badge-primary {
	background: #607d8b;
}
.app_theme_e .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #eceff1;
}
.app_theme_e .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #eceff1;
}
.app_theme_e .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_e .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #eceff1;
}
.app_theme_e .md-fab.md-fab-accent {
	background: #e53935;
}
.app_theme_e .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_e .md-list > li.md-list-item-active {
	color: #e53935;
}
.app_theme_e .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_e .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #e53935;
}
.app_theme_e .uk-pagination > li > a:hover {
	background: #fceaea;
}
.app_theme_e .uk-pagination > li.uk-active > a,
.app_theme_e .uk-pagination > li.uk-active > span {
	background: #e53935;
	color: #fff;
}
.app_theme_e .uk-subnav-pill > .uk-active > * {
	background: #e53935;
}
.app_theme_e .uk-tab > li > a:hover,
.app_theme_e .uk-tab > li > a:focus {
	border-bottom-color: #b7c6cd;
}
.app_theme_e .uk-tab > li.uk-active > a {
	border-bottom-color: #607d8b;
}
.app_theme_e .uk-tab-bottom li > a:hover,
.app_theme_e .uk-tab-bottom li > a:focus {
	border-top-color: #b7c6cd;
}
.app_theme_e .uk-tab-bottom li.uk-active > a {
	border-top-color: #607d8b;
}
.app_theme_e .uk-tab-left li > a:hover,
.app_theme_e .uk-tab-left li > a:focus {
	border-right-color: #b7c6cd;
}
.app_theme_e .uk-tab-left li.uk-active > a {
	border-right-color: #607d8b;
}
.app_theme_e .uk-tab-right li > a:hover,
.app_theme_e .uk-tab-right li > a:focus {
	border-left-color: #b7c6cd;
}
.app_theme_e .uk-tab-right li.uk-active > a {
	border-left-color: #607d8b;
}
.app_theme_e .uk-tab-double-header li a:hover,
.app_theme_e .uk-tab-double-header li a:focus {
	border-bottom-color: #7b96a3;
}
.app_theme_e .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #e53935;
}
.app_theme_e #header_main {
	background: #607d8b;
}
.app_theme_e .header_double_height:after {
	background: #607d8b;
}
.app_theme_e #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #607d8b;
}
.app_theme_e #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #607d8b;
}
.app_theme_e .user_heading {
	background: #455a64;
}
.app_theme_e #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #e53935;
}
.app_theme_e #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #e53935;
}
.app_theme_e #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #e53935;
}
.app_theme_e .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #e53935;
	color: #fff;
}
.app_theme_e .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #e53935;
}
.app_theme_e .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_e .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #e53935;
}
.app_theme_e .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #e53935;
}
.app_theme_e .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #e53935;
}
.app_theme_e .DTTT_print_info h6 {
	color: #e53935;
}
.app_theme_e .fc-unthemed .fc-button.fc-state-active:after {
	color: #e53935;
}
.app_theme_e .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #607d8b, inset 0 -1px 0 2px #607d8b;
}
.app_theme_e .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #eceff1;
}
.app_theme_e .tablesorter-altair .headerSortUp,
.app_theme_e .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_e .tablesorter-altair .tablesorter-headerAsc,
.app_theme_e .tablesorter-altair .headerSortDown,
.app_theme_e .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_e .tablesorter-altair .tablesorter-headerDesc {
	color: #e53935;
}
.app_theme_e .wizard > .steps {
	background: #607d8b;
}
.app_theme_e .wizard > .steps > ul > li.current a,
.app_theme_e .wizard > .steps > ul > li.current a:hover,
.app_theme_e .wizard > .steps > ul > li.current a:active {
	background: #7b96a3;
}
.app_theme_e .wizard > .steps > ul > li.done a,
.app_theme_e .wizard > .steps > ul > li.done a:hover,
.app_theme_e .wizard > .steps > ul > li.done a:active {
	background: #455a64;
}
.app_theme_e .md-card-primary {
	border-left-color: #607d8b;
}
.app_theme_e .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_e .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(96, 125, 139, 0.4);
}
.app_theme_e .search_list_link {
	color: #e53935;
}
.app_theme_e .chatbox.cb_active .chatbox_header {
	background: #455a64;
}
.app_theme_e .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #607d8b;
}
.app_theme_e .uk-table tr.row_checked td,
.app_theme_e .uk-table-hover tbody tr:hover {
	background: #eceff1;
}

.app_theme_f .uk-alert {
	background: #424242;
}
.app_theme_f .md-btn-primary,
.app_theme_f .md-btn-primary:hover,
.app_theme_f .md-btn-primary:focus,
.app_theme_f .md-btn-primary:active {
	background: #424242;
	color: #fff;
}
.app_theme_f .md-btn-flat-primary,
.app_theme_f .md-btn-flat-primary:hover,
.app_theme_f .md-btn-flat-primary:focus,
.app_theme_f .md-btn-flat-primary:active {
	color: #212121;
}
.app_theme_f .md-btn-flat-primary:hover,
.app_theme_f .md-btn-flat-primary:focus,
.app_theme_f .md-btn-flat-primary:active {
	background: #cecece;
}
.app_theme_f .uk-badge-primary {
	background: #424242;
}
.app_theme_f .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #f1f8e9;
}
.app_theme_f .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #f1f8e9;
}
.app_theme_f .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_f .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #f1f8e9;
}
.app_theme_f .md-fab.md-fab-accent {
	background: #7cb342;
}
.app_theme_f .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_f .md-list > li.md-list-item-active {
	color: #7cb342;
}
.app_theme_f .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_f .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #7cb342;
}
.app_theme_f .uk-pagination > li > a:hover {
	background: #e1efd2;
}
.app_theme_f .uk-pagination > li.uk-active > a,
.app_theme_f .uk-pagination > li.uk-active > span {
	background: #7cb342;
	color: #fff;
}
.app_theme_f .uk-subnav-pill > .uk-active > * {
	background: #7cb342;
}
.app_theme_f .uk-tab > li > a:hover,
.app_theme_f .uk-tab > li > a:focus {
	border-bottom-color: #8f8f8f;
}
.app_theme_f .uk-tab > li.uk-active > a {
	border-bottom-color: #424242;
}
.app_theme_f .uk-tab-bottom li > a:hover,
.app_theme_f .uk-tab-bottom li > a:focus {
	border-top-color: #8f8f8f;
}
.app_theme_f .uk-tab-bottom li.uk-active > a {
	border-top-color: #424242;
}
.app_theme_f .uk-tab-left li > a:hover,
.app_theme_f .uk-tab-left li > a:focus {
	border-right-color: #8f8f8f;
}
.app_theme_f .uk-tab-left li.uk-active > a {
	border-right-color: #424242;
}
.app_theme_f .uk-tab-right li > a:hover,
.app_theme_f .uk-tab-right li > a:focus {
	border-left-color: #8f8f8f;
}
.app_theme_f .uk-tab-right li.uk-active > a {
	border-left-color: #424242;
}
.app_theme_f .uk-tab-double-header li a:hover,
.app_theme_f .uk-tab-double-header li a:focus {
	border-bottom-color: #5c5c5c;
}
.app_theme_f .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #7cb342;
}
.app_theme_f #header_main {
	background: #424242;
}
.app_theme_f .header_double_height:after {
	background: #424242;
}
.app_theme_f #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #424242;
}
.app_theme_f #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #424242;
}
.app_theme_f .user_heading {
	background: #212121;
}
.app_theme_f #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #7cb342;
}
.app_theme_f #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #7cb342;
}
.app_theme_f #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #7cb342;
}
.app_theme_f .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #7cb342;
	color: #fff;
}
.app_theme_f .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #7cb342;
}
.app_theme_f .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_f .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #7cb342;
}
.app_theme_f .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #7cb342;
}
.app_theme_f .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #7cb342;
}
.app_theme_f .DTTT_print_info h6 {
	color: #7cb342;
}
.app_theme_f .fc-unthemed .fc-button.fc-state-active:after {
	color: #7cb342;
}
.app_theme_f .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #424242, inset 0 -1px 0 2px #424242;
}
.app_theme_f .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #f1f8e9;
}
.app_theme_f .tablesorter-altair .headerSortUp,
.app_theme_f .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_f .tablesorter-altair .tablesorter-headerAsc,
.app_theme_f .tablesorter-altair .headerSortDown,
.app_theme_f .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_f .tablesorter-altair .tablesorter-headerDesc {
	color: #7cb342;
}
.app_theme_f .wizard > .steps {
	background: #424242;
}
.app_theme_f .wizard > .steps > ul > li.current a,
.app_theme_f .wizard > .steps > ul > li.current a:hover,
.app_theme_f .wizard > .steps > ul > li.current a:active {
	background: #5c5c5c;
}
.app_theme_f .wizard > .steps > ul > li.done a,
.app_theme_f .wizard > .steps > ul > li.done a:hover,
.app_theme_f .wizard > .steps > ul > li.done a:active {
	background: #212121;
}
.app_theme_f .md-card-primary {
	border-left-color: #424242;
}
.app_theme_f .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_f .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(66, 66, 66, 0.4);
}
.app_theme_f .search_list_link {
	color: #7cb342;
}
.app_theme_f .chatbox.cb_active .chatbox_header {
	background: #212121;
}
.app_theme_f .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #424242;
}
.app_theme_f .uk-table tr.row_checked td,
.app_theme_f .uk-table-hover tbody tr:hover {
	background: #f1f8e9;
}

.app_theme_g .uk-alert {
	background: #8e24aa;
}
.app_theme_g .md-btn-primary,
.app_theme_g .md-btn-primary:hover,
.app_theme_g .md-btn-primary:focus,
.app_theme_g .md-btn-primary:active {
	background: #8e24aa;
	color: #fff;
}
.app_theme_g .md-btn-flat-primary,
.app_theme_g .md-btn-flat-primary:hover,
.app_theme_g .md-btn-flat-primary:focus,
.app_theme_g .md-btn-flat-primary:active {
	color: #7b1fa2;
}
.app_theme_g .md-btn-flat-primary:hover,
.app_theme_g .md-btn-flat-primary:focus,
.app_theme_g .md-btn-flat-primary:active {
	background: #f0d7f6;
}
.app_theme_g .uk-badge-primary {
	background: #8e24aa;
}
.app_theme_g .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #f3e5f5;
}
.app_theme_g .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #f3e5f5;
}
.app_theme_g .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_g .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #f3e5f5;
}
.app_theme_g .md-fab.md-fab-accent {
	background: #4caf50;
}
.app_theme_g .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_g .md-list > li.md-list-item-active {
	color: #4caf50;
}
.app_theme_g .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_g .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #4caf50;
}
.app_theme_g .uk-pagination > li > a:hover {
	background: #d9eeda;
}
.app_theme_g .uk-pagination > li.uk-active > a,
.app_theme_g .uk-pagination > li.uk-active > span {
	background: #4caf50;
	color: #fff;
}
.app_theme_g .uk-subnav-pill > .uk-active > * {
	background: #4caf50;
}
.app_theme_g .uk-tab > li > a:hover,
.app_theme_g .uk-tab > li > a:focus {
	border-bottom-color: #d082e5;
}
.app_theme_g .uk-tab > li.uk-active > a {
	border-bottom-color: #8e24aa;
}
.app_theme_g .uk-tab-bottom li > a:hover,
.app_theme_g .uk-tab-bottom li > a:focus {
	border-top-color: #d082e5;
}
.app_theme_g .uk-tab-bottom li.uk-active > a {
	border-top-color: #8e24aa;
}
.app_theme_g .uk-tab-left li > a:hover,
.app_theme_g .uk-tab-left li > a:focus {
	border-right-color: #d082e5;
}
.app_theme_g .uk-tab-left li.uk-active > a {
	border-right-color: #8e24aa;
}
.app_theme_g .uk-tab-right li > a:hover,
.app_theme_g .uk-tab-right li > a:focus {
	border-left-color: #d082e5;
}
.app_theme_g .uk-tab-right li.uk-active > a {
	border-left-color: #8e24aa;
}
.app_theme_g .uk-tab-double-header li a:hover,
.app_theme_g .uk-tab-double-header li a:focus {
	border-bottom-color: #b02ed3;
}
.app_theme_g .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #4caf50;
}
.app_theme_g #header_main {
	background: #8e24aa;
}
.app_theme_g .header_double_height:after {
	background: #8e24aa;
}
.app_theme_g #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #8e24aa;
}
.app_theme_g #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #8e24aa;
}
.app_theme_g .user_heading {
	background: #7b1fa2;
}
.app_theme_g #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #4caf50;
}
.app_theme_g #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #4caf50;
}
.app_theme_g #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #4caf50;
}
.app_theme_g .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #4caf50;
	color: #fff;
}
.app_theme_g .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #4caf50;
}
.app_theme_g .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_g .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #4caf50;
}
.app_theme_g .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #4caf50;
}
.app_theme_g .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #4caf50;
}
.app_theme_g .DTTT_print_info h6 {
	color: #4caf50;
}
.app_theme_g .fc-unthemed .fc-button.fc-state-active:after {
	color: #4caf50;
}
.app_theme_g .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #8e24aa, inset 0 -1px 0 2px #8e24aa;
}
.app_theme_g .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #f3e5f5;
}
.app_theme_g .tablesorter-altair .headerSortUp,
.app_theme_g .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_g .tablesorter-altair .tablesorter-headerAsc,
.app_theme_g .tablesorter-altair .headerSortDown,
.app_theme_g .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_g .tablesorter-altair .tablesorter-headerDesc {
	color: #4caf50;
}
.app_theme_g .wizard > .steps {
	background: #8e24aa;
}
.app_theme_g .wizard > .steps > ul > li.current a,
.app_theme_g .wizard > .steps > ul > li.current a:hover,
.app_theme_g .wizard > .steps > ul > li.current a:active {
	background: #b02ed3;
}
.app_theme_g .wizard > .steps > ul > li.done a,
.app_theme_g .wizard > .steps > ul > li.done a:hover,
.app_theme_g .wizard > .steps > ul > li.done a:active {
	background: #7b1fa2;
}
.app_theme_g .md-card-primary {
	border-left-color: #8e24aa;
}
.app_theme_g .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_g .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(142, 36, 170, 0.4);
}
.app_theme_g .search_list_link {
	color: #4caf50;
}
.app_theme_g .chatbox.cb_active .chatbox_header {
	background: #7b1fa2;
}
.app_theme_g .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #8e24aa;
}
.app_theme_g .uk-table tr.row_checked td,
.app_theme_g .uk-table-hover tbody tr:hover {
	background: #f3e5f5;
}

.app_theme_h .uk-alert {
	background: #d32f2f;
}
.app_theme_h .md-btn-primary,
.app_theme_h .md-btn-primary:hover,
.app_theme_h .md-btn-primary:focus,
.app_theme_h .md-btn-primary:active {
	background: #d32f2f;
	color: #fff;
}
.app_theme_h .md-btn-flat-primary,
.app_theme_h .md-btn-flat-primary:hover,
.app_theme_h .md-btn-flat-primary:focus,
.app_theme_h .md-btn-flat-primary:active {
	color: #c62828;
}
.app_theme_h .md-btn-flat-primary:hover,
.app_theme_h .md-btn-flat-primary:focus,
.app_theme_h .md-btn-flat-primary:active {
	background: #ffffff;
}
.app_theme_h .uk-badge-primary {
	background: #d32f2f;
}
.app_theme_h .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #ffebee;
}
.app_theme_h .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #ffebee;
}
.app_theme_h .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_h .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #ffebee;
}
.app_theme_h .md-fab.md-fab-accent {
	background: #0277bd;
}
.app_theme_h .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_h .md-list > li.md-list-item-active {
	color: #0277bd;
}
.app_theme_h .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_h .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #0277bd;
}
.app_theme_h .uk-pagination > li > a:hover {
	background: #8dd4fe;
}
.app_theme_h .uk-pagination > li.uk-active > a,
.app_theme_h .uk-pagination > li.uk-active > span {
	background: #0277bd;
	color: #fff;
}
.app_theme_h .uk-subnav-pill > .uk-active > * {
	background: #0277bd;
}
.app_theme_h .uk-tab > li > a:hover,
.app_theme_h .uk-tab > li > a:focus {
	border-bottom-color: #eeadad;
}
.app_theme_h .uk-tab > li.uk-active > a {
	border-bottom-color: #d32f2f;
}
.app_theme_h .uk-tab-bottom li > a:hover,
.app_theme_h .uk-tab-bottom li > a:focus {
	border-top-color: #eeadad;
}
.app_theme_h .uk-tab-bottom li.uk-active > a {
	border-top-color: #d32f2f;
}
.app_theme_h .uk-tab-left li > a:hover,
.app_theme_h .uk-tab-left li > a:focus {
	border-right-color: #eeadad;
}
.app_theme_h .uk-tab-left li.uk-active > a {
	border-right-color: #d32f2f;
}
.app_theme_h .uk-tab-right li > a:hover,
.app_theme_h .uk-tab-right li > a:focus {
	border-left-color: #eeadad;
}
.app_theme_h .uk-tab-right li.uk-active > a {
	border-left-color: #d32f2f;
}
.app_theme_h .uk-tab-double-header li a:hover,
.app_theme_h .uk-tab-double-header li a:focus {
	border-bottom-color: #dc5959;
}
.app_theme_h .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #0277bd;
}
.app_theme_h #header_main {
	background: #d32f2f;
}
.app_theme_h .header_double_height:after {
	background: #d32f2f;
}
.app_theme_h #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #d32f2f;
}
.app_theme_h #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #d32f2f;
}
.app_theme_h .user_heading {
	background: #c62828;
}
.app_theme_h #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #0277bd;
}
.app_theme_h #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #0277bd;
}
.app_theme_h #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #0277bd;
}
.app_theme_h .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #0277bd;
	color: #fff;
}
.app_theme_h .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #0277bd;
}
.app_theme_h .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_h .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #0277bd;
}
.app_theme_h .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #0277bd;
}
.app_theme_h .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #0277bd;
}
.app_theme_h .DTTT_print_info h6 {
	color: #0277bd;
}
.app_theme_h .fc-unthemed .fc-button.fc-state-active:after {
	color: #0277bd;
}
.app_theme_h .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #d32f2f, inset 0 -1px 0 2px #d32f2f;
}
.app_theme_h .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #ffebee;
}
.app_theme_h .tablesorter-altair .headerSortUp,
.app_theme_h .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_h .tablesorter-altair .tablesorter-headerAsc,
.app_theme_h .tablesorter-altair .headerSortDown,
.app_theme_h .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_h .tablesorter-altair .tablesorter-headerDesc {
	color: #0277bd;
}
.app_theme_h .wizard > .steps {
	background: #d32f2f;
}
.app_theme_h .wizard > .steps > ul > li.current a,
.app_theme_h .wizard > .steps > ul > li.current a:hover,
.app_theme_h .wizard > .steps > ul > li.current a:active {
	background: #dc5959;
}
.app_theme_h .wizard > .steps > ul > li.done a,
.app_theme_h .wizard > .steps > ul > li.done a:hover,
.app_theme_h .wizard > .steps > ul > li.done a:active {
	background: #c62828;
}
.app_theme_h .md-card-primary {
	border-left-color: #d32f2f;
}
.app_theme_h .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_h .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(211, 47, 47, 0.4);
}
.app_theme_h .search_list_link {
	color: #0277bd;
}
.app_theme_h .chatbox.cb_active .chatbox_header {
	background: #c62828;
}
.app_theme_h .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #d32f2f;
}
.app_theme_h .uk-table tr.row_checked td,
.app_theme_h .uk-table-hover tbody tr:hover {
	background: #ffebee;
}

.app_theme_i .uk-alert {
	background: #fbc02d;
}
.app_theme_i .md-btn-primary,
.app_theme_i .md-btn-primary:hover,
.app_theme_i .md-btn-primary:focus,
.app_theme_i .md-btn-primary:active {
	background: #fbc02d;
	color: #fff;
}
.app_theme_i .md-btn-flat-primary,
.app_theme_i .md-btn-flat-primary:hover,
.app_theme_i .md-btn-flat-primary:focus,
.app_theme_i .md-btn-flat-primary:active {
	color: #f57f17;
}
.app_theme_i .md-btn-flat-primary:hover,
.app_theme_i .md-btn-flat-primary:focus,
.app_theme_i .md-btn-flat-primary:active {
	background: #ffffff;
}
.app_theme_i .uk-badge-primary {
	background: #fbc02d;
}
.app_theme_i .md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
	background: #fffde7;
}
.app_theme_i .md-card-list-wrapper .md-card-list .md-card-list-item-selected {
	background: #fffde7;
}
.app_theme_i .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown {
	background: #fff;
}
.app_theme_i .md-card-list-wrapper .md-card-list .md-card-list-item-selected.item-shown:before {
	background: #fffde7;
}
.app_theme_i .md-fab.md-fab-accent {
	background: #00acc1;
}
.app_theme_i .md-list .uk-nestable-list > li.md-list-item-active,
.app_theme_i .md-list > li.md-list-item-active {
	color: #00acc1;
}
.app_theme_i .md-list-addon > li.md-list-item-active .md-list-addon-element,
.app_theme_i .md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
	color: #00acc1;
}
.app_theme_i .uk-pagination > li > a:hover {
	background: #8ef3ff;
}
.app_theme_i .uk-pagination > li.uk-active > a,
.app_theme_i .uk-pagination > li.uk-active > span {
	background: #00acc1;
	color: #fff;
}
.app_theme_i .uk-subnav-pill > .uk-active > * {
	background: #00acc1;
}
.app_theme_i .uk-tab > li > a:hover,
.app_theme_i .uk-tab > li > a:focus {
	border-bottom-color: #feedc3;
}
.app_theme_i .uk-tab > li.uk-active > a {
	border-bottom-color: #fbc02d;
}
.app_theme_i .uk-tab-bottom li > a:hover,
.app_theme_i .uk-tab-bottom li > a:focus {
	border-top-color: #feedc3;
}
.app_theme_i .uk-tab-bottom li.uk-active > a {
	border-top-color: #fbc02d;
}
.app_theme_i .uk-tab-left li > a:hover,
.app_theme_i .uk-tab-left li > a:focus {
	border-right-color: #feedc3;
}
.app_theme_i .uk-tab-left li.uk-active > a {
	border-right-color: #fbc02d;
}
.app_theme_i .uk-tab-right li > a:hover,
.app_theme_i .uk-tab-right li > a:focus {
	border-left-color: #feedc3;
}
.app_theme_i .uk-tab-right li.uk-active > a {
	border-left-color: #fbc02d;
}
.app_theme_i .uk-tab-double-header li a:hover,
.app_theme_i .uk-tab-double-header li a:focus {
	border-bottom-color: #fccf5f;
}
.app_theme_i .uk-tab-double-header li.uk-active > a {
	border-bottom-color: #00acc1;
}
.app_theme_i #header_main {
	background: #fbc02d;
}
.app_theme_i .header_double_height:after {
	background: #fbc02d;
}
.app_theme_i #top_bar .top_bar_nav > li > a:hover {
	box-shadow: inset 0 -3px 0 #fbc02d;
}
.app_theme_i #top_bar .top_bar_nav > li.uk-active a {
	box-shadow: inset 0 -3px 0 #fbc02d;
}
.app_theme_i .user_heading {
	background: #f57f17;
}
.app_theme_i #sidebar_main .menu_section > ul > li ul li.act_item a {
	color: #00acc1;
}
.app_theme_i #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #00acc1;
}
.app_theme_i #sidebar_main .menu_section > ul > li.current_section > a .menu_title {
	color: #00acc1;
}
.app_theme_i .sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
	background: #00acc1;
	color: #fff;
}
.app_theme_i .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
	background: #00acc1;
}
.app_theme_i .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
	color: #fff;
}
.app_theme_i .sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu ul {
	border-left-color: #00acc1;
}
.app_theme_i .sidebar_mini #sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
	color: #00acc1;
}
.app_theme_i .clndr .clndr_days .clndr_days_grid .day.today > span {
	background: #00acc1;
}
.app_theme_i .DTTT_print_info h6 {
	color: #00acc1;
}
.app_theme_i .fc-unthemed .fc-button.fc-state-active:after {
	color: #00acc1;
}
.app_theme_i .fc-unthemed .fc-highlight {
	box-shadow: inset 0 0 0 2px #fbc02d, inset 0 -1px 0 2px #fbc02d;
}
.app_theme_i .tablesorter-altair tbody > tr.row_highlighted > td {
	background: #fffde7;
}
.app_theme_i .tablesorter-altair .headerSortUp,
.app_theme_i .tablesorter-altair .tablesorter-headerSortUp,
.app_theme_i .tablesorter-altair .tablesorter-headerAsc,
.app_theme_i .tablesorter-altair .headerSortDown,
.app_theme_i .tablesorter-altair .tablesorter-headerSortDown,
.app_theme_i .tablesorter-altair .tablesorter-headerDesc {
	color: #00acc1;
}
.app_theme_i .wizard > .steps {
	background: #fbc02d;
}
.app_theme_i .wizard > .steps > ul > li.current a,
.app_theme_i .wizard > .steps > ul > li.current a:hover,
.app_theme_i .wizard > .steps > ul > li.current a:active {
	background: #fccf5f;
}
.app_theme_i .wizard > .steps > ul > li.done a,
.app_theme_i .wizard > .steps > ul > li.done a:hover,
.app_theme_i .wizard > .steps > ul > li.done a:active {
	background: #f57f17;
}
.app_theme_i .md-card-primary {
	border-left-color: #fbc02d;
}
.app_theme_i .waves-effect.md-btn-flat-primary {
	background: none;
}
.app_theme_i .waves-effect.md-btn-flat-primary .waves-ripple {
	background: rgba(251, 192, 45, 0.4);
}
.app_theme_i .search_list_link {
	color: #00acc1;
}
.app_theme_i .chatbox.cb_active .chatbox_header {
	background: #f57f17;
}
.app_theme_i .chatbox_content .chatbox_message.own .chatbox_message_content li > span {
	background: #fbc02d;
}
.app_theme_i .uk-table tr.row_checked td,
.app_theme_i .uk-table-hover tbody tr:hover {
	background: #fffde7;
}
.rotate-90 {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg)
}

.rotate-180 {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg)
}

.rotate-270 {
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg)
}

.mirror {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1)
}

.mirror.rotate-90 {
	-webkit-transform: scaleX(-1) rotate(90deg);
	-moz-transform: scaleX(-1) rotate(90deg);
	-ms-transform: scaleX(-1) rotate(90deg);
	-o-transform: scaleX(-1) rotate(90deg);
	transform: scaleX(-1) rotate(90deg)
}

.mirror.rotate-180 {
	-webkit-transform: scaleX(-1) rotate(180deg);
	-moz-transform: scaleX(-1) rotate(180deg);
	-ms-transform: scaleX(-1) rotate(180deg);
	-o-transform: scaleX(-1) rotate(180deg);
	transform: scaleX(-1) rotate(180deg)
}

.mirror.rotate-270 {
	-webkit-transform: scaleX(-1) rotate(270deg);
	-moz-transform: scaleX(-1) rotate(270deg);
	-ms-transform: scaleX(-1) rotate(270deg);
	-o-transform: scaleX(-1) rotate(270deg);
	transform: scaleX(-1) rotate(270deg)
}

.cm-s-3024-day.CodeMirror {
	background: #f7f7f7;
	color: #3a3432
}

.cm-s-3024-day div.CodeMirror-selected {
	background: #d6d5d4 !important
}

.cm-s-3024-day .CodeMirror-line::selection, .cm-s-3024-day .CodeMirror-line > span::selection, .cm-s-3024-day .CodeMirror-line > span > span::selection {
	background: #d6d5d4
}

.cm-s-3024-day .CodeMirror-line::-moz-selection, .cm-s-3024-day .CodeMirror-line > span::-moz-selection, .cm-s-3024-day .CodeMirror-line > span > span::selection {
	background: #d9d9d9
}

.cm-s-3024-day .CodeMirror-gutters {
	background: #f7f7f7;
	border-right: 0
}

.cm-s-3024-day .CodeMirror-guttermarker {
	color: #db2d20
}

.cm-s-3024-day .CodeMirror-guttermarker-subtle {
	color: #807d7c
}

.cm-s-3024-day .CodeMirror-linenumber {
	color: #807d7c
}

.cm-s-3024-day .CodeMirror-cursor {
	border-left: 1px solid #5c5855 !important
}

.cm-s-3024-day span.cm-comment {
	color: #cdab53
}

.cm-s-3024-day span.cm-atom {
	color: #a16a94
}

.cm-s-3024-day span.cm-number {
	color: #a16a94
}

.cm-s-3024-day span.cm-attribute, .cm-s-3024-day span.cm-property {
	color: #01a252
}

.cm-s-3024-day span.cm-keyword {
	color: #db2d20
}

.cm-s-3024-day span.cm-string {
	color: #fded02
}

.cm-s-3024-day span.cm-variable {
	color: #01a252
}

.cm-s-3024-day span.cm-variable-2 {
	color: #01a0e4
}

.cm-s-3024-day span.cm-def {
	color: #e8bbd0
}

.cm-s-3024-day span.cm-bracket {
	color: #3a3432
}

.cm-s-3024-day span.cm-tag {
	color: #db2d20
}

.cm-s-3024-day span.cm-link {
	color: #a16a94
}

.cm-s-3024-day span.cm-error {
	background: #db2d20;
	color: #5c5855
}

.cm-s-3024-day .CodeMirror-activeline-background {
	background: #e8f2ff !important
}

.cm-s-3024-day .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #a16a94 !important
}

.cm-s-3024-night.CodeMirror {
	background: #090300;
	color: #d6d5d4
}

.cm-s-3024-night div.CodeMirror-selected {
	background: #3a3432 !important
}

.cm-s-3024-night .CodeMirror-line::selection, .cm-s-3024-night .CodeMirror-line > span::selection, .cm-s-3024-night .CodeMirror-line > span > span::selection {
	background: rgba(58, 52, 50, .99)
}

.cm-s-3024-night .CodeMirror-line::-moz-selection, .cm-s-3024-night .CodeMirror-line > span::-moz-selection, .cm-s-3024-night .CodeMirror-line > span > span::-moz-selection {
	background: rgba(58, 52, 50, .99)
}

.cm-s-3024-night .CodeMirror-gutters {
	background: #090300;
	border-right: 0
}

.cm-s-3024-night .CodeMirror-guttermarker {
	color: #db2d20
}

.cm-s-3024-night .CodeMirror-guttermarker-subtle {
	color: #5c5855
}

.cm-s-3024-night .CodeMirror-linenumber {
	color: #5c5855
}

.cm-s-3024-night .CodeMirror-cursor {
	border-left: 1px solid #807d7c !important
}

.cm-s-3024-night span.cm-comment {
	color: #cdab53
}

.cm-s-3024-night span.cm-atom {
	color: #a16a94
}

.cm-s-3024-night span.cm-number {
	color: #a16a94
}

.cm-s-3024-night span.cm-attribute, .cm-s-3024-night span.cm-property {
	color: #01a252
}

.cm-s-3024-night span.cm-keyword {
	color: #db2d20
}

.cm-s-3024-night span.cm-string {
	color: #fded02
}

.cm-s-3024-night span.cm-variable {
	color: #01a252
}

.cm-s-3024-night span.cm-variable-2 {
	color: #01a0e4
}

.cm-s-3024-night span.cm-def {
	color: #e8bbd0
}

.cm-s-3024-night span.cm-bracket {
	color: #d6d5d4
}

.cm-s-3024-night span.cm-tag {
	color: #db2d20
}

.cm-s-3024-night span.cm-link {
	color: #a16a94
}

.cm-s-3024-night span.cm-error {
	background: #db2d20;
	color: #807d7c
}

.cm-s-3024-night .CodeMirror-activeline-background {
	background: #2F2F2F !important
}

.cm-s-3024-night .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-ambiance.CodeMirror {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none
}

.cm-s-ambiance .cm-header {
	color: #00f
}

.cm-s-ambiance .cm-quote {
	color: #24C2C7
}

.cm-s-ambiance .cm-keyword {
	color: #cda869
}

.cm-s-ambiance .cm-atom {
	color: #CF7EA9
}

.cm-s-ambiance .cm-number {
	color: #78CF8A
}

.cm-s-ambiance .cm-def {
	color: #aac6e3
}

.cm-s-ambiance .cm-variable {
	color: #ffb795
}

.cm-s-ambiance .cm-variable-2 {
	color: #eed1b3
}

.cm-s-ambiance .cm-variable-3 {
	color: #faded3
}

.cm-s-ambiance .cm-property {
	color: #eed1b3
}

.cm-s-ambiance .cm-operator {
	color: #fa8d6a
}

.cm-s-ambiance .cm-comment {
	color: #555;
	font-style: italic
}

.cm-s-ambiance .cm-string {
	color: #8f9d6a
}

.cm-s-ambiance .cm-string-2 {
	color: #9d937c
}

.cm-s-ambiance .cm-meta {
	color: #D2A8A1
}

.cm-s-ambiance .cm-qualifier {
	color: #ff0
}

.cm-s-ambiance .cm-builtin {
	color: #99c
}

.cm-s-ambiance .cm-bracket {
	color: #24C2C7
}

.cm-s-ambiance .cm-tag {
	color: #fee4ff
}

.cm-s-ambiance .cm-attribute {
	color: #9B859D
}

.cm-s-ambiance .cm-hr {
	color: pink
}

.cm-s-ambiance .cm-link {
	color: #F4C20B
}

.cm-s-ambiance .cm-special {
	color: #FF9D00
}

.cm-s-ambiance .cm-error {
	color: #AF2018
}

.cm-s-ambiance .CodeMirror-matchingbracket {
	color: #0f0
}

.cm-s-ambiance .CodeMirror-nonmatchingbracket {
	color: #f22
}

.cm-s-ambiance .CodeMirror-selected {
	background: rgba(255, 255, 255, .15)
}

.cm-s-ambiance.CodeMirror-focused .CodeMirror-selected {
	background: rgba(255, 255, 255, .1)
}

.cm-s-ambiance .CodeMirror-line::selection, .cm-s-ambiance .CodeMirror-line > span::selection, .cm-s-ambiance .CodeMirror-line > span > span::selection {
	background: rgba(255, 255, 255, .1)
}

.cm-s-ambiance .CodeMirror-line::-moz-selection, .cm-s-ambiance .CodeMirror-line > span::-moz-selection, .cm-s-ambiance .CodeMirror-line > span > span::-moz-selection {
	background: rgba(255, 255, 255, .1)
}

.cm-s-ambiance.CodeMirror {
	line-height: 1.4em;
	color: #E6E1DC;
	background-color: #202020;
	-webkit-box-shadow: inset 0 0 10px #000;
	-moz-box-shadow: inset 0 0 10px #000;
	box-shadow: inset 0 0 10px #000
}

.cm-s-ambiance .CodeMirror-gutters {
	background: #3D3D3D;
	border-right: 1px solid #4D4D4D;
	box-shadow: 0 10px 20px #000
}

.cm-s-ambiance .CodeMirror-linenumber {
	text-shadow: 0 1px 1px #4d4d4d;
	color: #111;
	padding: 0 5px
}

.cm-s-ambiance .CodeMirror-guttermarker {
	color: #aaa
}

.cm-s-ambiance .CodeMirror-guttermarker-subtle {
	color: #111
}

.cm-s-ambiance .CodeMirror-lines .CodeMirror-cursor {
	border-left: 1px solid #7991E8
}

.cm-s-ambiance .CodeMirror-activeline-background {
	background: none repeat scroll 0 0 rgba(255, 255, 255, .031)
}

.cm-s-ambiance .CodeMirror-gutters, .cm-s-ambiance.CodeMirror {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAQAAAAHUWYVAABFFUlEQVQYGbzBCeDVU/74/6fj9HIcx/FRHx9JCFmzMyGRURhLZIkUsoeRfUjS2FNDtr6WkMhO9sm+S8maJfu+Jcsg+/o/c+Z4z/t97/vezy3z+z8ekGlnYICG/o7gdk+wmSHZ1z4pJItqapjoKXWahm8NmV6eOTbWUOp6/6a/XIg6GQqmenJ2lDHyvCFZ2cBDbmtHA043VFhHwXxClWmeYAdLhV00Bd85go8VmaFCkbVkzlQENzfBDZ5gtN7HwF0KDrTwJ0dypSOzpaKCMwQHKTIreYIxlmhXTzTWkVm+LTynZhiSBT3RZQ7aGfjGEd3qyXQ1FDymqbKxpspERQN2MiRjNZlFFQXfCNFm9nM1zpAsoYjmtRTc5ajwuaXc5xrWskT97RaKzAGe5ARHhVUsDbjKklziiX5WROcJwSNCNI+9w1Jwv4Zb2r7lCMZ4oq5C0EdTx+2GzNuKpJ+iFf38JEWkHJn9DNF7mmBDITrWEg0VWL3pHU20tSZnuqWu+R3BtYa8XxV1HO7GyD32UkOpL/yDloINFTmvtId+nmAjxRw40VMwVKiwrKLE4bK5UOVntYwhOcSSXKrJHKPJedocpGjVz/ZMIbnYUPB10/eKCrs5apqpgVmWzBYWpmtKHecJPjaUuEgRDDaU0oZghCJ6zNMQ5ZhDYx05r5v2muQdM0EILtXUsaKiQX9WMEUotagQzFbUNN6NUPC2nm5pxEWGCjMc3GdJHjSU2kORLK/JGSrkfGEIjncU/CYUnOipoYemwj8tST9NsJmB7TUVXtbUtXATJVZXBMvYeTXJfobgJUPmGMP/yFaWonaa6BcFO3nqcIqCozSZoZoSr1g4zJOzuyGnxTEX3lUEJ7WcZgme8ddaWvWJo2AJR9DZU3CUIbhCSG6ybSwN6qtJVnCU2svDTP2ZInOw2cBTrqtQahtNZn9NcJ4l2NaSmSkkP1noZWnVwkLmdUPOwLZEwy2Z3S3R+4rIG9hcbpPXHFVWcQdZkn2FOta3cKWQnNRC5g1LsJah4GCzSVsKnCOY5OAFRTBekyyryeyilhFKva75r4Mc0aWanGEaThcy31s439KKxTzJYY5WTHPU1FtIHjQU3Oip4xlNzj/lBw23dYZVliQa7WAXf4shetcQfatI+jWRDBPmyNeW6A1P5kdDgyYJlba0BIM8BZu1JfrFwItyjcAMR3K0BWOIrtMEXyhyrlVEx3ui5dUBjmB/Q3CXW85R4mBD0s7B+4q5tKUjOlb9qqmhi5AZ6GFIC5HXtOobdYGlVdMVbNJ8toNTFcHxnoL+muBagcctjWnbNMuR00uI7nQESwg5q2qqrKWIfrNUmeQocY6HuyxJV02wj36w00yhpmUFenv4p6fUkZYqLyuinx2RGOjhCXYyJF84oiU00YMOOhhquNdfbOB7gU88pY4xJO8LVdp6/q2voeB4R04vIdhSE40xZObx1HGGJ/ja0LBthFInKaLPPFzuCaYaoj8JjPME8yoyxo6zlBqkiUZYgq00OYMswbWO5NGmq+xhipxHLRW29ARjNKXO0wRnear8XSg4XFPLKEPUS1GqvyLwiuBUoa7zpZ0l5xxFwWmWZC1H5h5FwU8eQ7K+g8UcVY6TMQreVQT/8uQ8Z+ALIXnSEa2pYZQneE9RZbSBNYXfWYJzW/h/4j4Dp1tYVcFIC5019Vyi4ThPqSFCzjGWaHQTBU8q6vrVwgxP9Lkm840imWKpcLCjYTtrKuwvsKSnrvHCXGkSMk9p6lhckfRpIeis+N2PiszT+mFLspyGleUhDwcLrZqmyeylxwjBcKHEapqkmyangyLZRVOijwOtCY5SsG5zL0OwlCJ4y5KznF3EUNDDrinwiyLZRzOXtlBbK5ITHFGLp8Q0R6ab6mS7enI2cFrxOyHvOCFaT1HThS1krjCwqWeurCkk+willhCC+RSZnRXBiZaC5RXRIZYKp2lyfrHwiKPKR0JDzrdU2EFgpidawlFDR6FgXUMNa+g1FY3bUQh2cLCwosRdnuQTS/S+JVrGLeWIvtQUvONJxlqSQYYKpwoN2kaocLjdVsis4Mk80ESF2YpSkzwldjHkjFCUutI/r+EHDU8oCs6yzL3PhWiEooZdFMkymlas4AcI3KmoMMNSQ3tHzjGWCrcJJdYyZC7QFGwjRL9p+MrRkAGWzIaWCn9W0F3TsK01c2ZvQw0byvxuQU0r1lM0qJO7wW0kRIMdDTtXEdzi4VIh+EoIHm0mWtAtpCixlabgn83fKTI7anJe9ST7WIK1DMGpQmYeA58ImV6ezOGOzK2Kgq01pd60cKWiUi9Lievb/0vIDPHQ05Kzt4ddPckQBQtoaurjyHnek/nKzpQLrVgKPjIkh2v4uyezpv+Xoo7fPFXaGFp1vaLKxQ4uUpQQS5VuQs7BCq4xRJv7fwpVvvFEB3j+620haOuocqMhWd6TTPAEx+mdFNGHdranFe95WrWmIvlY4F1Dle2ECgc6cto7SryuqGGGha0tFQ5V53migUKmg6XKAo4qS3mik+0OZpAhOLeZKicacgaYcyx5hypYQE02ZA4xi/pNhOQxR4klNKyqacj+mpxnLTnnGSo85++3ZCZq6lrZkXlGEX3o+C9FieccJbZWVFjC0Yo1FZnJhoYMFoI1hEZ9r6hwg75HwzBNhbZCdJEfJwTPGzJvaKImw1yYX1HDAmpXR+ZJQ/SmgqMNVQb5vgamGwLtt7VwvP7Qk1xpiM5x5Cyv93E06MZmgs0Nya2azIKOYKCGBQQW97RmhKNKF02JZqHEJ4o58qp7X5EcZmc56trXEqzjCBZ1MFGR87Ql2tSTs6CGxS05PTzRQorkbw7aKoKXFDXsYW42VJih/q+FP2BdTzDTwVqOYB13liM50vG7wy28qagyuIXMeQI/Oqq8bcn5wJI50xH00CRntyfpL1T4hydYpoXgNiFzoIUTDZnLNRzh4TBHwbYGDvZkxmlyJloyr6tRihpeUG94GnKtIznREF0tzJG/OOr73JBcrSh1k6WuTprgLU+mnSGnv6Zge0NNz+kTDdH8nuAuTdJDCNb21LCiIuqlYbqGzT3RAoZofQfjFazkqeNWdYaGvYTM001EW2oKPvVk1ldUGSgUtHFwjKM1h9jnFcmy5lChoLNaQMGGDsYbKixlaMBmmsx1QjCfflwTfO/gckW0ruZ3jugKR3R5W9hGUWqCgxuFgsuaCHorotGKzGaeZB9DMsaTnKCpMtwTvOzhYk0rdrArKCqcaWmVk1+F372ur1YkKxgatI8Qfe1gIX9wE9FgS8ESmuABIXnRUbCapcKe+nO7slClSZFzpV/LkLncEb1qiO42fS3R855Su2mCLh62t1SYZZYVmKwIHjREF2uihTzB20JOkz7dkxzYQnK0UOU494wh+VWRc6Un2kpTaVgLDFEkJ/uhzRcI0YKGgpGWOlocBU/a4fKoJ/pEaNV6jip3+Es9VXY078rGnmAdf7t9ylPXS34RBSuYPs1UecZTU78WanhBCHpZ5sAoTz0LGZKjPf9TRypqWEiTvOFglL1fCEY3wY/++rbk7C8bWebA6p6om6PgOL2kp44TFJlVNBXae2rqqdZztOJpT87GQsE9jqCPIe9VReZuQ/CIgacsyZdCpIScSYqcZk8r+nsyCzhyfhOqHGOIvrLknC8wTpFcaYiGC/RU1NRbUeUpocQOnkRpGOrIOcNRx+1uA0UrzhSSt+VyS3SJpnFWkzNDqOFGIWcfR86DnmARTQ1HKIL33ExPiemeOhYSSjzlSUZZuE4TveoJLnBUOFof6KiysCbnAEcZgcUNTDOwkqWu3RWtmGpZwlHhJENdZ3miGz0lJlsKnjbwqSHQjpxnFDlTLLwqJPMZMjd7KrzkSG7VsxXBZE+F8YZkb01Oe00yyRK9psh5SYh29ySPKBo2ylNht7ZkZnsKenjKNJu9PNEyZpaCHv4Kt6RQsLvAVp7M9kIimmCUwGeWqLMmGuIotYMmWNpSahkhZw9FqZsVnKJhsjAHvtHMsTM9fCI06Dx/u3vfUXCqfsKRc4oFY2jMsoo/7DJDwZ1CsIKnJu+J9ldkpmiCxQx1rWjI+T9FwcWWzOuaYH0Hj7klNRVWEQpmaqosakiGNTFHdjS/qnUdmf0NJW5xsL0HhimCCZZSRzmSPTXJQ4aaztAwtZnoabebJ+htCaZ7Cm535ByoqXKbX1WRc4Eh2MkRXWzImVc96Cj4VdOKVxR84VdQsIUM8Psoou2byVHyZFuq7O8otbSQ2UAoeEWTudATLGSpZzVLlXVkPU2Jc+27lsw2jmg5T5VhbeE3BT083K9WsTTkFU/Osi0rC5lRlpwRHUiesNS0sOvmqGML1aRbPAxTJD9ZKtxuob+hhl8cwYGWpJ8nub7t5p6coYbMovZ1BTdaKn1jYD6h4GFDNFyT/Kqe1XCXphXHOKLZmuRSRdBPEfVUXQzJm5YGPGGJdvAEr7hHNdGZnuBvrpciGmopOLf5N0uVMy0FfYToJk90uUCbJupaVpO53UJXR2bVpoU00V2KOo4zMFrBd0Jtz2pa0clT5Q5L8IpQ177mWQejPMEJhuQjS10ref6HHjdEhy1P1EYR7GtO0uSsKJQYLiTnG1rVScj5lyazpqWGl5uBbRWl7m6ixGOOnEsMJR7z8J0n6KMnCdxhiNYQCoZ6CmYLnO8omC3MkW3bktlPmEt/VQQHejL3+dOE5FlPdK/Mq8hZxxJtLyRrepLThYKbLZxkSb5W52vYxNOaOxUF0yxMUPwBTYqCzy01XayYK0sJyWBLqX0MwU5CzoymRzV0EjjeUeLgDpTo6ij42ZAzvD01dHUUTPLU96MdLbBME8nFBn7zJCMtJcZokn8YoqU0FS5WFKyniHobguMcmW8N0XkWZjkyN3hqOMtS08r+/xTBwpZSZ3qiVRX8SzMHHjfUNFjgHEPmY9PL3ykEzxkSre/1ZD6z/NuznuB0RcE1TWTm9zRgfUWVJiG6yrzgmWPXC8EAR4Wxhlad0ZbgQyEz3pG5RVEwwDJH2mgKpjcTiCOzn1lfUWANFbZ2BA8balnEweJC9J0iuaeZoI+ippFCztEKVvckR2iice1JvhVytrQwUAZpgsubCPaU7xUe9vWnaOpaSBEspalykhC9bUlOMpT42ZHca6hyrqKmw/wMR8H5ZmdFoBVJb03O4UL0tSNnvIeRmkrLWqrs78gcrEn2tpcboh0UPOW3UUR9PMk4T4nnNKWmCjlrefhCwxRNztfmIQVdDElvS4m1/WuOujoZCs5XVOjtKPGokJzsYCtFYoWonSPT21DheU/wWhM19FcElwqNGOsp9Q8N/cwXaiND1MmeL1Q5XROtYYgGeFq1aTMsoMmcrKjQrOFQTQ1fmBYhmW6o8Jkjc7iDJRTBIo5kgJD5yMEYA3srCg7VFKwiVJkmRCc5ohGOKhsYMn/XBLdo5taZjlb9YAlGWRimqbCsoY7HFAXLa5I1HPRxMMsQDHFkWtRNniqT9UEeNjcE7RUlrCJ4R2CSJuqlKHWvJXjAUNcITYkenuBRB84TbeepcqTj3zZyFJzgYQdHnqfgI0ddUwS6GqWpsKWhjq9cV0vBAEMN2znq+EBfIWT+pClYw5xsTlJU6GeIBsjGmmANTzJZiIYpgrM0Oa8ZMjd7NP87jxhqGOhJlnQtjuQpB+8aEE00wZFznSJPyHxgH3HkPOsJFvYk8zqCHzTs1BYOa4J3PFU+UVRZxlHDM4YavlNUuMoRveiZA2d7grMNc2g+RbSCEKzmgYsUmWmazFJyoiOZ4KnyhKOGRzWJa0+moyV4TVHDzn51Awtqaphfk/lRQ08FX1iiqxTB/kLwd0VynKfEvI6cd4XMV5bMhZ7gZUWVzYQ6Nm2BYzxJbw3bGthEUUMfgbGeorae6DxHtJoZ6alhZ0+ytiVoK1R4z5PTrOECT/SugseEOlb1MMNR4VRNcJy+V1Hg9ONClSZFZjdHlc6W6FBLdJja2MC5hhpu0DBYEY1TFGwiFAxRRCsYkiM9JRb0JNMVkW6CZYT/2EiTGWmo8k+h4FhDNE7BvppoTSFnmCV5xZKzvcCdDo7VVPnIU+I+Rc68juApC90MwcFCsJ5hDqxgScYKreruyQwTqrzoqDCmhWi4IbhB0Yrt3RGa6GfDv52rKXWhh28dyZaWUvcZeMTBaZoSGyiCtRU5J8iviioHaErs7Jkj61syVzTTgOcUOQ8buFBTYWdL5g3T4qlpe0+wvD63heAXRfCCIed9RbCsp2CiI7raUOYOTU13N8PNHvpaGvayo4a3LLT1lDrVEPT2zLUlheB1R+ZTRfKWJ+dcocLJfi11vyJ51lLqJ0WD7tRwryezjiV5W28uJO9qykzX8JDe2lHl/9oyBwa2UMfOngpXCixvKdXTk3wrsKmiVYdZIqsoWEERjbcUNDuiaQomGoIbFdEHmsyWnuR+IeriKDVLnlawlyNHKwKlSU631PKep8J4Q+ayjkSLKYLhalNHlYvttb6fHm0p6OApsZ4l2VfdqZkjuysy6ysKLlckf1KUutCTs39bmCgEyyoasIWlVaMF7mgmWtBT8Kol5xpH9IGllo8cJdopcvZ2sImlDmMIbtDk3KIpeNiS08lQw11NFPTwVFlPP6pJ2gvRfI7gQUfmNAtf6Gs0wQxDsKGlVBdF8rCa3jzdwMaGHOsItrZk7hAyOzpK9VS06j5F49b0VNGOOfKs3lDToMsMBe9ZWtHFEgxTJLs7qrygKZjUnmCYoeAqeU6jqWuLJup4WghOdvCYJnrSkSzoyRkm5M2StQwVltPkfCAk58tET/CSg+8MUecmotMEnhBKfWBIZsg2ihruMJQaoIm+tkTLKEqspMh00w95gvFCQRtDwTT1gVDDSEVdlwqZfxoQRbK0g+tbiBZxzKlpnpypejdDwTaeOvorMk/IJE10h9CqRe28hhLbe0pMsdSwv4ZbhKivo2BjDWfL8UKJgeavwlwb5KlwhyE4u4XkGE2ytZCznKLCDZZq42VzT8HLCrpruFbIfOIINmh/qCdZ1ZBc65kLHR1Bkyf5zn6pN3SvGKIlFNGplhrO9QSXanLOMQTLCa0YJCRrCZm/CZmrLTm7WzCK4GJDiWUdFeYx1LCFg3NMd0XmCuF3Y5rITLDUsYS9zoHVzwnJoYpSTQoObyEzr4cFBNqYTopoaU/wkyLZ2lPhX/5Y95ulxGTV7KjhWrOZgl8MyUUafjYraNjNU1N3IWcjT5WzWqjwtoarHSUObGYO3GCJZpsBlnJGPd6ZYLyl1GdCA2625IwwJDP8GUKymbzuyPlZlvTUsaUh5zFDhRWFzPKKZLAlWdcQbObgF9tOqOsmB1dqcqYJmWstFbZRRI9poolmqiLnU0POvxScpah2iSL5UJNzgScY5+AuIbpO0YD3NCW+dLMszFSdFCWGqG6eVq2uYVNDdICGD6W7EPRWZEY5gpsE9rUkS3mijzzJnm6UpUFXG1hCUeVoS5WfNcFpblELL2qqrCvMvRfd45oalvKU2tiQ6ePJOVMRXase9iTtLJztPxJKLWpo2CRDcJwn2sWSLKIO1WQWNTCvpVUvOZhgSC40JD0dOctaSqzkCRbXsKlb11Oip6PCJ0IwSJM31j3akRxlP7Rwn6aGaUL0qiLnJkvB3xWZ2+Q1TfCwpQH3G0o92UzmX4o/oJNQMMSQc547wVHhdk+VCw01DFYEnTxzZKAm74QmeNNR1w6WzEhNK15VJzuCdxQ53dRUDws5KvwgBMOEgpcVNe0hZI6RXT1Jd0cyj5nsaEAHgVmGaJIlWdsc5Ui2ElrRR6jrRAttNMEAIWrTDFubkZaok7/AkzfIwfuWVq0jHzuCK4QabtLUMVPB3kJ0oyHTSVFlqMALilJf2Rf8k5aaHtMfayocLBS8L89oKoxpJvnAkDPa0qp5DAUTHKWmCcnthlou8iCKaFFLHWcINd1nyIwXqrSxMNmSs6KmoL2QrKuWtlQ5V0120xQ5vRyZS1rgFkWwhiOwiuQbR0OOVhQM9iS3tiXp4RawRPMp5tDletOOBL95MpM01dZTBM9pkn5qF010rIeHFcFZhmSGpYpTsI6nwhqe5C9ynhlpp5ophuRb6WcJFldkVnVEwwxVfrVkvnWUuNLCg5bgboFHPDlDPDmnK7hUrWiIbjadDclujlZcaokOFup4Ri1kacV6jmrrK1hN9bGwpKEBQ4Q6DvIUXOmo6U5LqQM6EPyiKNjVkPnJkDPNEaxhiFay5ExW1NXVUGqcpYYdPcGiCq7z/TSlbhL4pplWXKd7NZO5QQFrefhRQW/NHOsqcIglc4UhWklR8K0QzbAw08CBDnpbgqXdeD/QUsM4RZXDFBW6WJKe/mFPdH0LtBgiq57wFLzlyQzz82qYx5D5WJP5yVJDW01BfyHnS6HKO/reZqId1WGa4Hkh2kWodJ8i6KoIPlAj2hPt76CzXsVR6koPRzWTfKqIentatYpQw2me4AA3y1Kind3SwoOKZDcFXTwl9tWU6mfgRk9d71sKtlNwrjnYw5tC5n5LdKiGry3JKNlHEd3oaMCFHrazBPMp/uNJ+V7IudcSbeOIdjUEdwl0VHCOZo5t6YluEuaC9mQeMgSfOyKnYGFHcIeQ84yQWbuJYJpZw5CzglDH7gKnWqqM9ZTaXcN0TeYhR84eQtJT76JJ1lREe7WnnvsMmRc9FQ7SBBM9mV3lCUdmHk/S2RAMt0QjFNFqQpWjDPQ01DXWUdDBkXziKPjGEP3VP+zIWU2t7im41FOloyWzn/L6dkUy3VLDaZ6appgDLHPjJEsyvJngWEPUyVBiAaHCTEXwrLvSEbV1e1gKJniicWorC1MUrVjB3uDhJE/wgSOzk1DXpk0k73qCM8xw2UvD5kJmDUfOomqMpWCkJRlvKXGmoeBm18USjVIk04SClxTB6YrgLAPLWYK9HLUt5cmc0vYES8GnTeRc6skZbQkWdxRsIcyBRzx1DbTk9FbU0caTPOgJHhJKnOGIVhQqvKmo0llRw9sabrZkDtdg3PqaKi9oatjY8B+G371paMg6+mZFNNtQ04mWBq3rYLOmtWWQp8KJnpy9DdFensyjdqZ+yY40VJlH8wcdLzC8PZnvHMFUTZUrDTkLyQaGus5X5LzpYAf3i+e/ZlhqGqWhh6Ou6xTR9Z6oi5AZZtp7Mj2EEm8oSpxiYZCHU/1fbGdNNNRRoZMhmilEb2gqHOEJDtXkHK/JnG6IrvbPCwV3NhONVdS1thBMs1T4QOBcTWa2IzhMk2nW5Kyn9tXUtpv9RsG2msxk+ZsQzRQacJncpgke0+T8y5Fzj8BiGo7XlJjaTIlpQs7KFjpqGnKuoyEPeIKnFMkZHvopgh81ySxNFWvJWcKRs70j2FOT012IllEEO1n4pD1513Yg2ssQPOThOkvyrqHUdEXOSEsihmBbTbKX1kLBPWqWkLOqJbjB3GBIZmoa8qWl4CG/iZ7oiA72ZL7TJNeZUY7kFQftDcHHluBzRbCegzMtrRjVQpX2lgoPKKLJAkcbMl01XK2p7yhL8pCBbQ3BN2avJgKvttcrWDK3CiUOVxQ8ZP+pqXKyIxnmBymCg5vJjNfkPK4+c8cIfK8ocVt7kmfd/I5SR1hKvCzUtb+lhgc00ZaO6CyhIQP1Uv4yIZjload72PXX0OIJvnFU+0Zf6MhsJwTfW0r0UwQfW4LNLZl5HK261JCZ4qnBaAreVAS3WrjV0LBnNDUNNDToCEeFfwgcb4gOEqLRhirWkexrCEYKVV711DLYEE1XBEsp5tpTGjorkomKYF9FDXv7fR3BGwbettSxnyL53MBPjsxDZjMh+VUW9NRxq1DhVk+FSxQcaGjV9Pawv6eGByw5qzoy7xk4RsOShqjJwWKe/1pEEfzkobeD/dQJmpqedcyBTy2sr4nGNRH0c0SPWTLrqAc0OQcb/gemKgqucQT7ySWKCn2EUotoCvpZct7RO2sy/QW0IWcXd7pQRQyZVwT2USRO87uhjioTLKV2brpMUcMQRbKH/N2T+UlTpaMls6cmc6CCNy3JdYYSUzzJQ4oSD3oKLncULOiJvjBEC2oqnCJkJluCYy2ZQ5so9YYlZ1VLlQU1mXEW1jZERwj/MUSRc24TdexlqLKfQBtDTScJUV8FszXBEY5ktpD5Ur9hYB4Nb1iikw3JoYpkKX+RodRKFt53MMuRnKSpY31PwYaGaILh3wxJGz9TkTPEETxoCWZrgvOlmyMzxFEwVJE5xZKzvyJ4WxEc16Gd4Xe3Weq4XH2jKRikqOkGQ87hQnC7wBmGYLAnesX3M+S87eFATauuN+Qcrh7xIxXJbUIdMw3JGE3ylCWzrieaqCn4zhGM19TQ3z1oH1AX+pWEqIc7wNGAkULBo/ZxRaV9NNyh4Br3rCHZzbzmSfawBL0dNRwpW1kK9mxPXR9povcdrGSZK9c2k0xwFGzjuniCtRSZCZ6ccZ7gaktmgAOtKbG/JnOkJrjcQTdFMsxRQ2cLY3WTIrlCw1eWKn8R6pvt4GFDso3QoL4a3nLk3G6JrtME3dSenpx7PNFTmga0EaJTLQ061sEeQoWXhSo9LTXsaSjoJQRXeZLtDclbCrYzfzHHeaKjHCVOUkQHO3JeEepr56mhiyaYYKjjNU+Fed1wS5VlhWSqI/hYUdDOkaxiKehoyOnrCV5yBHtbWFqTHCCwtpDcYolesVR5yUzTZBb3RNMd0d6WP+SvhuBmRcGxnuQzT95IC285cr41cLGQ6aJJhmi4TMGempxeimBRQw1tFKV+8jd6KuzoSTqqDxzRtpZkurvKEHxlqXKRIjjfUNNXQsNOsRScoWFLT+YeRZVD3GRN0MdQcKqQjHDMrdGGVu3iYJpQx3WGUvfbmxwFfR20WBq0oYY7LMFhhgYtr8jpaEnaOzjawWWaTP8mMr0t/EPDPoqcnxTBI5o58L7uoWnMrpoqPwgVrlAUWE+V+TQl9rawoyP6QGAlQw2TPRX+YSkxyBC8Z6jhHkXBgQL7WII3DVFnRfCrBfxewv9D6xsyjys4VkhWb9pUU627JllV0YDNHMku/ldNMMXDEo4aFnAkk4U6frNEU4XgZUPmEKHUl44KrzmYamjAbh0JFvGnaTLPu1s9jPCwjFpYiN7z1DTOk/nc07CfDFzmCf7i+bfNHXhDtLeBXzTBT5rkMvWOIxpl4EMh2LGJBu2syDnAEx2naEhHDWMMzPZEhygyS1mS5RTJr5ZkoKbEUoYqr2kqdDUE8ztK7OaIntJkFrIECwv8LJTaVx5XJE86go8dFeZ3FN3rjabCAYpoYEeC9zzJVULBbmZhDyd7ko09ydpNZ3nm2Kee4FPPXHnYEF1nqOFEC08LUVcDvYXkJHW8gTaKCk9YGOeIJhqiE4ToPEepdp7IWFjdwnWaufGMwJJCMtUTTBBK9BGCOy2tGGrJTHIwyEOzp6aPzNMOtlZkDvcEWpP5SVNhfkvDxhmSazTJXYrM9U1E0xwFVwqZQwzJxw6+kGGGUj2FglGGmnb1/G51udRSMNlTw6GGnCcUwVcOpmsqTHa06o72sw1RL02p9z0VbnMLOaIX3QKaYKSCFQzBKEUNHTSc48k53RH9wxGMtpQa5KjjW0W0n6XCCCG4yxNNdhQ4R4l1Ff+2sSd6UFHiIEOyqqFgT01mEUMD+joy75jPhOA+oVVLm309FR4yVOlp4RhLiScNmSmaYF5Pw0STrOIoWMSR2UkRXOMp+M4SHW8o8Zoi6OZgjKOaFar8zZDzkWzvKOjkKBjmCXby8JahhjXULY4KlzgKLvAwxVGhvyd4zxB1d9T0piazmKLCVZY5sKiD0y2ZSYrkUEPUbIk+dlQ4SJHTR50k1DPaUWIdTZW9NJwnJMOECgd7ou/MnppMJ02O1VT4Wsh85MnZzcFTngpXGKo84qmwgKbCL/orR/SzJ2crA+t6Mp94KvxJUeIbT3CQu1uIdlQEOzlKfS3UMcrTiFmOuroocrZrT2AcmamOKg8YomeEKm/rlT2sociMaybaUlFhuqHCM2qIJ+rg4EcDFymiDSxzaHdPcpE62pD5kyM5SBMoA1PaUtfIthS85ig1VPiPPYXgYEMNk4Qq7TXBgo7oT57gPUdwgCHzhIVFPFU6OYJzHAX9m5oNrVjeE61miDrqQ4VSa1oiURTsKHC0IfjNwU2WzK6eqK8jWln4g15TVBnqmDteCJ501PGAocJhhqjZdtBEB6lnhLreFJKxmlKbeGrqLiSThVIbCdGzloasa6lpMQXHCME2boLpJgT7yWaemu6wBONbqGNVRS0PKIL7LckbjmQtR7K8I5qtqel+T/ChJTNIKLjdUMNIRyvOEko9YYl2cwQveBikCNawJKcLBbc7+JM92mysNvd/Fqp8a0k6CNEe7cnZrxlW0wQXaXjaktnRwNOGZKYiONwS7a1JVheq3WgJHlQUGKHKmp4KAxXR/ULURcNgoa4zhKSLpZR3kxRRb0NmD0OFn+UCS7CzI1nbP6+o4x47QZE5xRCt3ZagnYcvmpYQktXdk5YKXTzBC57kKEe0VVuiSYqapssMS3C9p2CKkHOg8B8Pa8p5atrIw3qezIWanMGa5HRDNF6RM9wcacl0N+Q8Z8hsIkSnaIIdHRUOEebAPy1zbCkhM062FCJtif7PU+UtoVXzWKqM1PxXO8cfdruhFQ/a6x3JKYagvVDhQEtNiyiiSQ7OsuRsZUku0CRNDs4Sog6KKjsZgk2bYJqijgsEenoKeniinRXBn/U3lgpPdyDZynQx8IiioMnCep5Ky8mjGs6Wty0l1hUQTcNWswS3WRp2kCNZwJG8omG8JphPUaFbC8lEfabwP7VtM9yoaNCAjpR41VNhrD9LkbN722v0CoZMByFzhaW+MyzRYEWFDQwN2M4/JiT76PuljT3VU/A36eaIThb+R9oZGOAJ9tewkgGvqOMNRWYjT/Cwu99Q8LqDE4TgbLWxJ1jaDDAERsFOFrobgjUsBScaguXU8kKm2RL19tRypSHnHNlHiIZqgufs4opgQdVdwxBNNFBR6kVFqb8ogimOzB6a6HTzrlDHEpYaxjiiA4TMQobkDg2vejjfwJGWmnbVFAw3H3hq2NyQfG7hz4aC+w3BbwbesG0swYayvpAs6++Ri1Vfzx93mFChvyN5xVHTS+0p9aqCAxyZ6ZacZyw5+7uuQkFPR9DDk9NOiE7X1PCYJVjVUqq7JlrHwWALF5nfHNGjApdpqgzx5OwilDhCiDYTgnc9waGW4BdLNNUQvOtpzDOWHDH8D7TR/A/85KljEQu3NREc4Pl/6B1Hhc8Umb5CsKMmGC9EPcxoT2amwHNCmeOEnOPbklnMkbOgIvO5UMOpQrS9UGVdt6iH/fURjhI/WOpaW9OKLYRod6HCUEdOX000wpDZQ6hwg6LgZfOqo1RfT/CrJzjekXOGhpc1VW71ZLbXyyp+93ILbC1kPtIEYx0FIx1VDrLoVzXRKRYWk809yYlC9ImcrinxtabKnzRJk3lAU1OLEN1j2zrYzr2myHRXJFf4h4QKT1qSTzTB5+ZNTzTRkAxX8FcLV2uS8eoQQ2aAkFzvCM72sJIcJET3WPjRk5wi32uSS9rfZajpWEvj9hW42F4o5NytSXYy8IKHay10VYdrcl4SkqscrXpMwyGOgtkajheSxdQqmpxP1L3t4R5PqasFnrQEjytq6qgp9Y09Qx9o4S1FzhUCn1kyHSzBWLemoSGvOqLNhZyBjmCaAUYpMgt4Ck7wBBMMwWKWgjsUwTaGVsxWC1mYoKiyqqeGKYqonSIRQ3KIkHO0pmAxTdBHkbOvfllfr+AA+7gnc50huVKYK393FOyg7rbPO/izI7hE4CnHHHnJ0ogNPRUGeUpsrZZTBJcrovUcJe51BPsr6GkJdhCCsZ6aTtMEb2pqWkqeVtDXE/QVggsU/Nl86d9RMF3DxvZTA58agu810RWawCiSzzXBeU3MMW9oyJUedvNEvQyNu1f10BSMddR1vaLCYpYa/mGocLSiYDcLbQz8aMn5iyF4xBNMs1P0QEOV7o5gaWGuzSeLue4tt3ro7y4Tgm4G/mopdZgl6q0o6KzJWE3mMksNr3r+a6CbT8g5wZNzT9O7fi/zpaOmnz3BRoqos+tv9zMbdpxsqDBOEewtJLt7cg5wtKKbvldpSzRRCD43VFheCI7yZLppggMVBS/KMAdHODJvOwq2NQSbKKKPLdFWQs7Fqo+mpl01JXYRgq8dnGLhTiFzqmWsUMdpllZdbKlyvSdYxhI9YghOtxR8LgSLWHK62mGGVoxzBE8LNWzqH9CUesQzFy5RQzTc56mhi6fgXEWwpKfE5Z7M05ZgZUPmo6auiv8YKzDYwWBLMErIbKHJvOwIrvEdhOBcQ9JdU1NHQ7CXn2XIDFBKU2WAgcX9UAUzDXWd5alwuyJ41Z9rjKLCL4aCp4WarhPm2rH+SaHUYE001JDZ2ZAzXPjdMpZWvC9wmqIB2lLhQ01D5jO06hghWMndbM7yRJMsoCj1vYbnFQVrW9jak3OlEJ3s/96+p33dEPRV5GxiqaGjIthUU6FFEZyqCa5qJrpBdzSw95IUnOPIrCUUjRZQFrbw5PR0R1qiYx3cb6nrWUMrBmmiBQxVHtTew5ICP/ip6g4hed/Akob/32wvBHsIOX83cI8hGeNeNPCIkPmXe8fPKx84OMSRM1MTdXSwjCZ4S30jVGhvqTRak/OVhgGazHuOCud5onEO1lJr6ecVyaOK6H7zqlBlIaHE0oroCgfvGJIdPcmfLNGLjpz7hZwZQpUbFME0A1cIJa7VNORkgfsMBatbKgwwJM9bSvQXeNOvbIjelg6WWvo5kvbKaJJNHexkKNHL9xRyFlH8Ti2riB5wVPhUk7nGkJnoCe428LR/wRGdYIlmWebCyxou1rCk4g/ShugBDX0V0ZQWkh0dOVsagkM0yV6OoLd5ye+pRlsCr0n+KiQrGuq5yJDzrTAXHtLUMduTDBVKrSm3eHL+6ijxhFDX9Z5gVU/wliHYTMiMFpKLNMEywu80wd3meoFmt6VbRMPenhrOc6DVe4pgXU8DnnHakLOIIrlF4FZPIw6R+zxBP0dyq6OOZ4Q5sLKCcz084ok+VsMMyQhNZmmBgX5xIXOEJTmi7VsGTvMTNdHHhpzdbE8Du2oKxgvBqQKdDDnTFOylCFaxR1syz2iqrOI/FEpNc3C6f11/7+ASS6l2inq2ciTrCCzgyemrCL5SVPjQkdPZUmGy2c9Sw9FtR1sS30RmsKPCS4rkIC/2U0MduwucYolGaPjKEyhzmiPYXagyWbYz8LWBDdzRimAXzxx4z8K9hpzlhLq+NiQ97HuKorMUfK/OVvC2JfiHUPCQI/q7J2gjK+tTDNxkCc4TMssqCs4TGtLVwQihyoAWgj9bosU80XGW6Ac9TJGziaUh5+hnFcHOnlaM1iRn29NaqGENTTTSUHCH2tWTeV0osUhH6psuVLjRUmGWhm6OZEshGeNowABHcJ2Bpy2ZszRcKkRXd2QuKVEeXnbfaEq825FguqfgfE2whlChSRMdron+LATTPQ2Z369t4B9C5gs/ylzv+CMmepIDPclFQl13W0rspPd1JOcbghGOEutqCv5qacURQl3dDKyvyJlqKXGPgcM9FfawJAMVmdcspcYKOZc4GjDYkFlK05olNMHyHn4zFNykyOxt99RkHlfwmiHo60l2EKI+mhreEKp080Tbug08BVPcgoqC5zWt+NLDTZ7oNSF51N1qie7Va3uCCwyZbkINf/NED6jzOsBdZjFN8oqG3wxVunqCSYYKf3EdhJyf9YWGf7tRU2oH3VHgPr1fe5J9hOgHd7xQ0y7qBwXr23aGErP0cm64JVjZwsOGqL+mhNgZmhJLW2oY4UhedsyBgzrCKrq7BmcpNVhR6jBPq64Vgi+kn6XE68pp8J5/+0wRHGOpsKenQn9DZntPzjRLZpDAdD2fnSgkG9tmIXnUwQ6WVighs7Yi2MxQ0N3CqYaCXkJ0oyOztMDJjmSSpcpvlrk0RMMOjmArQ04PRV1DO1FwhCVaUVPpKUM03JK5SxPsIWRu8/CGHi8UHChiqGFDTbSRJWeYUDDcH6vJWUxR4k1FXbMUwV6e4AJFXS8oMqsZKqzvYQ9DDQdZckY4aGsIhtlubbd2r3j4QBMoTamdPZk7O/Bf62lacZwneNjQoGcdVU7zJOd7ghsUHOkosagic6cnWc8+4gg285R6zZP5s1/LUbCKIznTwK36PkdwlOrl4U1LwfdCCa+IrvFkmgw1PCAUXKWo0sURXWcI2muKJlgyFzhynCY4RBOsqCjoI1R5zREco0n2Vt09BQtYSizgKNHfUmUrQ5UOCh51BFcLmY7umhYqXKQomOop8bUnWNNQcIiBcYaC6xzMNOS8JQQfeqKBmmglB+97ok/lfk3ygaHSyZaCRTzRxQo6GzLfa2jWBPepw+UmT7SQEJyiyRkhBLMVOfcoMjcK0eZChfUNzFAUzCsEN5vP/X1uP/n/aoMX+K+nw/Hjr/9xOo7j7Pju61tLcgvJpTWXNbfN5jLpi6VfCOviTktKlFusQixdEKWmEBUKNaIpjZRSSOXSgzaaKLdabrm1/9nZ+/f+vd/vz/v9+Xy+zZ7PRorYoZqyLrCwQdEAixxVOEXNNnjX2nUSRlkqGmWowk8lxR50JPy9Bo6qJXaXwNvREBvnThPEPrewryLhcAnj5WE15Fqi8W7R1sAuEu86S4ENikItFN4xkv9Af4nXSnUVcLiA9xzesFpivRRVeFKtsMRaKBhuSbjOELnAUtlSQUpXgdfB4Z1oSbnFEetbQ0IrAe+Y+pqnDcEJFj6S8LDZzZHwY4e3XONNlARraomNEt2bkvGsosA3ioyHm+6jCMbI59wqt4eeara28IzEmyPgoRaUOEDhTVdEJhmCoTWfC0p8aNkCp0oYqih2iqGi4yXeMkOsn4LdLLnmKfh/YogjNsPebeFGR4m9BJHLzB61XQ3BtpISfS2FugsK9FAtLWX1dCRcrCnUp44CNzuCowUZmxSRgYaE6Za0W2u/E7CVXCiI/UOR8aAm1+OSyE3mOUcwyc1zBBeoX1kiKy0Zfxck1Gsyulti11i83QTBF5Kg3pDQThFMVHiPSlK+0cSedng/VaS8bOZbtsBcTcZAR8JP5KeqQ1OYKAi20njdNNRpgnsU//K+JnaXJaGTomr7aYIphoRn9aeShJWKEq9LcozSF7QleEfDI5LYm5bgVkFkRwVDBCVu0DDIkGupo8TZBq+/pMQURYErJQmPKGKjNDkWOLx7Jd5QizdUweIaKrlP7SwJDhZvONjLkOsBBX9UpGxnydhXkfBLQ8IxgojQbLFnJf81JytSljclYYyEFyx0kVBvKWOFJmONpshGAcsduQY5giVNCV51eOdJYo/pLhbvM0uDHSevNKRcrKZIqnCtJeEsO95RoqcgGK4ocZcho1tTYtcZvH41pNQ7vA0WrhIfOSraIIntIAi+NXWCErdbkvrWwjRLrt0NKUdL6KSOscTOdMSOUtBHwL6OLA0vNSdynaWQEnCpIvKaIrJJEbvHkmuNhn6OjM8VkSGSqn1uYJCGHnq9I3aLhNME3t6GjIkO7xrNFumpyTNX/NrwX7CrIRiqqWijI9JO4d1iieykyfiposQIQ8YjjsjlBh6oHWbwRjgYJQn2NgSnNycmJAk3NiXhx44Sxykihxm8ybUwT1OVKySc7vi3OXVkdBJ4AyXBeksDXG0IhgtYY0lY5ahCD0ehborIk5aUWRJviMA7Xt5kyRjonrXENkm8yYqgs8VzgrJmClK20uMM3jRJ0FiQICQF9hdETlLQWRIb5ki6WDfWRPobvO6a4GP5mcOrNzDFELtTkONLh9dXE8xypEg7z8A9jkhrQ6Fhjlg/QVktJXxt4WXzT/03Q8IaQWSqIuEvloQ2mqC9Jfi7wRul4RX3pSPlzpoVlmCtI2jvKHCFhjcM3sN6lqF6HxnKelLjXWbwrpR4xzuCrTUZx2qq9oAh8p6ixCUGr78g8oyjRAtB5CZFwi80VerVpI0h+IeBxa6Zg6kWvpDHaioYYuEsRbDC3eOmC2JvGYLeioxGknL2UATNJN6hmtj1DlpLvDVmocYbrGCVJKOrg4X6DgddLA203BKMFngdJJFtFd7vJLm6KEpc5yjQrkk7M80SGe34X24nSex1Ra5Omgb71JKyg8SrU3i/kARKwWpH0kOGhKkObyfd0ZGjvyXlAkVZ4xRbYJ2irFMkFY1SwyWxr2oo4zlNiV+7zmaweFpT4kR3kaDAFW6xpSqzJay05FtYR4HmZhc9UxKbbfF2V8RG1MBmSaE+kmC6JnaRXK9gsiXhJHl/U0qM0WTcbyhwkYIvFGwjSbjfwhiJt8ZSQU+Bd5+marPMOkVkD0muxYLIfEuhh60x/J92itguihJSEMySVPQnTewnEm+620rTQEMsOfo4/kP/0ARvWjitlpSX7GxBgcMEsd3EEeYWvdytd+Saawi6aCIj1CkGb6Aj9rwhx16Cf3vAwFy5pyLhVonXzy51FDpdEblbkdJbUcEPDEFzQ8qNmhzzLTmmKWKbFCXeEuRabp6rxbvAtLF442QjQ+wEA9eL1xSR7Q0JXzlSHjJ4exq89yR0laScJ/FW6z4a73pFMEfDiRZvuvijIt86RaSFOl01riV2mD1UEvxGk/Geg5aWwGki1zgKPG9J2U8PEg8qYvMsZeytiTRXBMslCU8JSlxi8EabjwUldlDNLfzTUmCgxWsjqWCOHavYAqsknKFIO0yQ61VL5AVFxk6WhEaCAkdJgt9aSkzXlKNX2jEa79waYuc7gq0N3GDJGCBhoiTXUEPsdknCUE1CK0fwsiaylSF2uiDyO4XX3pFhNd7R4itFGc0k/ElBZwWvq+GC6szVeEoS/MZ+qylwpKNKv9Z469UOjqCjwlusicyTxG6VpNxcQ8IncoR4RhLbR+NdpGGmJWOcIzJGUuKPGpQg8rrG21dOMqQssJQ4RxH5jaUqnZuQ0F4Q+cjxLwPtpZbIAk3QTJHQWBE5S1BokoVtDd6lhqr9UpHSUxMcIYl9pojsb8h4SBOsMQcqvOWC2E8EVehqiJ1hrrAEbQxeK0NGZ0Gkq+guSRgniM23bIHVkqwx4hiHd7smaOyglyIyQuM978j4VS08J/A2G1KeMBRo4fBaSNhKUEZfQewVQ/C1I+MgfbEleEzCUw7mKXI0M3hd1EESVji8x5uQ41nxs1q4RMJCCXs7Iq9acpxn22oSDnQ/sJTxsCbHIYZiLyhY05TY0ZLIOQrGaSJDDN4t8pVaIrsqqFdEegtizc1iTew5Q4ayBDMUsQMkXocaYkc0hZua412siZ1rSXlR460zRJ5SlHGe5j801RLMlJTxtaOM3Q1pvxJ45zUlWFD7rsAbpfEm1JHxG0eh8w2R7QQVzBUw28FhFp5QZzq8t2rx2joqulYTWSuJdTYfWwqMFMcovFmSyJPNyLhE4E10pHzYjOC3huArRa571ZsGajQpQx38SBP5pyZB6lMU3khDnp0MBV51BE9o2E+TY5Ml2E8S7C0o6w1xvCZjf0HkVEHCzFoyNmqC+9wdcqN+Tp7jSDheE9ws8Y5V0NJCn2bk2tqSY4okdrEhx1iDN8cSudwepWmAGXKcJXK65H9to8jYQRH7SBF01ESUJdd0TayVInaWhLkOjlXE5irKGOnI6GSWGCJa482zBI9rCr0jyTVcEuzriC1vcr6mwFGSiqy5zMwxBH/TJHwjSPhL8+01kaaSUuMFKTcLEvaUePcrSmwn8DZrgikWb7CGPxkSjhQwrRk57tctmxLsb9sZvL9LSlyuSLlWkqOjwduo8b6Uv1DkmudIeFF2dHCgxVtk8dpIvHpBxhEOdhKk7OLIUSdJ+cSRY57B+0DgGUUlNfpthTfGkauzxrvTsUUaCVhlKeteTXCoJDCa2NOKhOmC4G1H8JBd4OBZReSRGkqcb/CO1PyLJTLB4j1q8JYaIutEjSLX8YKM+a6phdMsdLFUoV5RTm9JSkuDN8WcIon0NZMNZWh1q8C7SJEwV5HxrmnnTrf3KoJBlmCYI2ilSLlfEvlE4011NNgjgthzEua0oKK7JLE7HZHlEl60BLMVFewg4EWNt0ThrVNEVkkiTwpKXSWJzdRENgvKGq4IhjsiezgSFtsfCUq8qki5S1LRQeYQQ4nemmCkImWMw3tFUoUBZk4NOeZYEp4XRKTGa6wJjrWNHBVJR4m3FCnbuD6aak2WsMTh3SZImGCIPKNgsDpVwnsa70K31lCFJZYcwwSMFcQulGTsZuEaSdBXkPGZhu0FsdUO73RHjq8MPGGIfaGIbVTk6iuI3GFgucHrIQkmWSJdBd7BBu+uOryWAhY7+Lki9rK5wtEQzWwvtbqGhIMFwWRJsElsY4m9IIg9L6lCX0VklaPAYkfkZEGDnOWowlBJjtMUkcGK4Lg6EtoZInMUBVYLgn0UsdmCyCz7gIGHFfk+k1QwTh5We7A9x+IdJ6CvIkEagms0hR50eH9UnTQJ+2oiKyVlLFUE+8gBGu8MQ3CppUHesnjTHN4QB/UGPhCTHLFPHMFrCqa73gqObUJGa03wgbhHkrCfpEpzNLE7JDS25FMKhlhKKWKfCgqstLCPu1zBXy0J2ztwjtixBu8UTRn9LVtkmCN2iyFhtME70JHRQ1KVZXqKI/KNIKYMCYs1GUMEKbM1bKOI9LDXC7zbHS+bt+1MTWS9odA9DtrYtpbImQJ2VHh/lisEwaHqUk1kjKTAKknkBEXkbkdMGwq0dnhzLJF3NJH3JVwrqOB4Sca2hti75nmJN0WzxS6UxDYoEpxpa4htVlRjkYE7DZGzJVU72uC9IyhQL4i8YfGWSYLLNcHXloyz7QhNifmKSE9JgfGmuyLhc403Xm9vqcp6gXe3xuuv8F6VJNxkyTHEkHG2g0aKXL0MsXc1bGfgas2//dCONXiNLCX+5mB7eZIl1kHh7ajwpikyzlUUWOVOsjSQlsS+M0R+pPje/dzBXRZGO0rMtgQrLLG9VSu9n6CMXS3BhwYmSoIBhsjNBmZbgusE9BCPCP5triU4VhNbJfE+swSP27aayE8tuTpYYjtrYjMVGZdp2NpS1s6aBnKSHDsbKuplKbHM4a0wMFd/5/DmGyKrJSUaW4IBrqUhx0vyfzTBBLPIUcnZdrAkNsKR0sWRspumSns6Ch0v/qqIbBYUWKvPU/CFoyrDJGwSNFhbA/MlzKqjrO80hRbpKx0Jewsi/STftwGSlKc1JZyAzx05dhLEdnfQvhZOqiHWWEAHC7+30FuRcZUgaO5gpaIK+xsiHRUsqaPElTV40xQZQ107Q9BZE1nryDVGU9ZSQ47bmhBpLcYpUt7S+xuK/FiT8qKjwXYw5ypS2iuCv7q1gtgjhuBuB8LCFY5cUuCNtsQOFcT+4Ih9JX+k8Ea6v0iCIRZOtCT0Et00JW5UeC85Cg0ScK0k411HcG1zKtre3SeITBRk7WfwDhEvaYLTHP9le0m8By0JDwn4TlLW/aJOvGHxdjYUes+ScZigCkYQdNdEOhkiezgShqkx8ueKjI8lDfK2oNiOFvrZH1hS+tk7NV7nOmLHicGWEgubkXKdwdtZknCLJXaCpkrjZBtLZFsDP9CdxWsSr05Sxl6CMmoFbCOgryX40uDtamB7SVmXW4Ihlgpmq+00tBKUUa83WbjLUNkzDmY7cow1JDygyPGlhgGKYKz4vcV7QBNbJIgM11TUqZaMdwTeSguH6rOaw1JRKzaaGyxVm2EJ/uCIrVWUcZUkcp2grMsEjK+DMwS59jQk3Kd6SEq1d0S6uVmO4Bc1lDXTUcHjluCXEq+1OlBDj1pi9zgiXxnKuE0SqTXwhqbETW6RggMEnGl/q49UT2iCzgJvRwVXS2K/d6+ZkyUl7jawSVLit46EwxVljDZwoSQ20sDBihztHfk2yA8NVZghiXwrYHQdfKAOtzsayjhY9bY0yE2CWEeJ9xfzO423xhL5syS2TFJofO2pboHob0nY4GiAgRrvGQEDa/FWSsoaaYl0syRsEt3kWoH3B01shCXhTUWe9w3Bt44SC9QCh3eShQctwbaK2ApLroGCMlZrYqvlY3qYhM0aXpFkPOuoqJ3Dm6fxXrGwVF9gCWZagjPqznfkuMKQ8DPTQRO8ZqG1hPGKEm9IgpGW4DZDgTNriTxvFiq+Lz+0cKfp4wj6OCK9JSnzNSn9LFU7UhKZZMnYwcJ8s8yRsECScK4j5UOB95HFO0CzhY4xJxuCix0lDlEUeMdS6EZBkTsUkZ4K74dugyTXS7aNgL8aqjDfkCE0ZbwkCXpaWCKhl8P7VD5jxykivSyxyZrYERbe168LYu9ZYh86IkscgVLE7tWPKmJv11CgoyJltMEbrohtVAQfO4ImltiHEroYEs7RxAarVpY8AwXMcMReFOTYWe5iiLRQxJ5Q8DtJ8LQhWOhIeFESPGsILhbNDRljNbHzNRlTFbk2S3L0NOS6V1KFJYKUbSTcIIhM0wQ/s2TM0SRMNcQmSap3jCH4yhJZKSkwyRHpYYgsFeQ4U7xoCB7VVOExhXepo9ABBsYbvGWKXPME3lyH95YioZ0gssQRWWbI+FaSMkXijZXwgiTlYdPdkNLaETxlyDVIwqeaEus0aTcYcg0RVOkpR3CSJqIddK+90JCxzsDVloyrFd5ZAr4TBKfaWa6boEA7C7s6EpYaeFPjveooY72mjIccLHJ9HUwVlDhKkmutJDJBwnp1rvulJZggKDRfbXAkvC/4l3ozQOG9a8lxjx0i7nV4jSXc7vhe3OwIxjgSHjdEhhsif9YkPGlus3iLFDnWOFhtCZbJg0UbQcIaR67JjthoCyMEZRwhiXWyxO5QxI6w5NhT4U1WsJvDO60J34fW9hwzwlKij6ZAW9ne4L0s8C6XeBMEkd/LQy1VucBRot6QMlbivaBhoBgjqGiCJNhsqVp/S2SsG6DIONCR0dXhvWbJ+MRRZJkkuEjgDXJjFQW6SSL7GXK8Z2CZg7cVsbWGoKmEpzQ5elpiy8Ryg7dMkLLUEauzeO86CuwlSOlgYLojZWeJ9xM3S1PWfEfKl5ISLQ0MEKR8YOB2QfCxJBjrKPCN4f9MkaSsqoVXJBmP7EpFZ9UQfOoOFwSzBN4MQ8LsGrymlipcJQhmy0GaQjPqCHaXRwuCZwRbqK2Fg9wlClZqYicrIgMdZfxTQ0c7TBIbrChxmuzoKG8XRaSrIhhiyNFJkrC7oIAWMEOQa5aBekPCRknCo4IKPrYkvCDI8aYmY7WFtprgekcJZ3oLIqssCSMtFbQTJKwXYy3BY5oCh2iKPCpJOE+zRdpYgi6O2KmOAgvVCYaU4ySRek1sgyFhJ403QFHiVEmJHwtybO1gs8Hr5+BETQX3War0qZngYGgtVZtoqd6vFSk/UwdZElYqyjrF4HXUeFspIi9IGKf4j92pKGAdCYMVsbcV3kRF0N+R8LUd5PCsIGWoxDtBkCI0nKofdJQxT+LtZflvuc8Q3CjwWkq8KwUpHzkK/NmSsclCL0nseQdj5FRH5CNHSgtLiW80Of5HU9Hhlsga9bnBq3fEVltKfO5IaSTmGjjc4J0otcP7QsJUSQM8pEj5/wCuUuC2DWz8AAAAAElFTkSuQmCC)
}

.cm-s-base16-dark.CodeMirror {
	background: #151515;
	color: #e0e0e0
}

.cm-s-base16-dark div.CodeMirror-selected {
	background: #303030 !important
}

.cm-s-base16-dark .CodeMirror-line::selection, .cm-s-base16-dark .CodeMirror-line > span::selection, .cm-s-base16-dark .CodeMirror-line > span > span::selection {
	background: rgba(48, 48, 48, .99)
}

.cm-s-base16-dark .CodeMirror-line::-moz-selection, .cm-s-base16-dark .CodeMirror-line > span::-moz-selection, .cm-s-base16-dark .CodeMirror-line > span > span::-moz-selection {
	background: rgba(48, 48, 48, .99)
}

.cm-s-base16-dark .CodeMirror-gutters {
	background: #151515;
	border-right: 0
}

.cm-s-base16-dark .CodeMirror-guttermarker {
	color: #ac4142
}

.cm-s-base16-dark .CodeMirror-guttermarker-subtle {
	color: #505050
}

.cm-s-base16-dark .CodeMirror-linenumber {
	color: #505050
}

.cm-s-base16-dark .CodeMirror-cursor {
	border-left: 1px solid #b0b0b0 !important
}

.cm-s-base16-dark span.cm-comment {
	color: #8f5536
}

.cm-s-base16-dark span.cm-atom {
	color: #aa759f
}

.cm-s-base16-dark span.cm-number {
	color: #aa759f
}

.cm-s-base16-dark span.cm-attribute, .cm-s-base16-dark span.cm-property {
	color: #90a959
}

.cm-s-base16-dark span.cm-keyword {
	color: #ac4142
}

.cm-s-base16-dark span.cm-string {
	color: #f4bf75
}

.cm-s-base16-dark span.cm-variable {
	color: #90a959
}

.cm-s-base16-dark span.cm-variable-2 {
	color: #6a9fb5
}

.cm-s-base16-dark span.cm-def {
	color: #d28445
}

.cm-s-base16-dark span.cm-bracket {
	color: #e0e0e0
}

.cm-s-base16-dark span.cm-tag {
	color: #ac4142
}

.cm-s-base16-dark span.cm-link {
	color: #aa759f
}

.cm-s-base16-dark span.cm-error {
	background: #ac4142;
	color: #b0b0b0
}

.cm-s-base16-dark .CodeMirror-activeline-background {
	background: #202020 !important
}

.cm-s-base16-dark .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-base16-light.CodeMirror {
	background: #f5f5f5;
	color: #202020
}

.cm-s-base16-light div.CodeMirror-selected {
	background: #e0e0e0 !important
}

.cm-s-base16-light .CodeMirror-line::selection, .cm-s-base16-light .CodeMirror-line > span::selection, .cm-s-base16-light .CodeMirror-line > span > span::selection {
	background: #e0e0e0
}

.cm-s-base16-light .CodeMirror-line::-moz-selection, .cm-s-base16-light .CodeMirror-line > span::-moz-selection, .cm-s-base16-light .CodeMirror-line > span > span::-moz-selection {
	background: #e0e0e0
}

.cm-s-base16-light .CodeMirror-gutters {
	background: #f5f5f5;
	border-right: 0
}

.cm-s-base16-light .CodeMirror-guttermarker {
	color: #ac4142
}

.cm-s-base16-light .CodeMirror-guttermarker-subtle {
	color: #b0b0b0
}

.cm-s-base16-light .CodeMirror-linenumber {
	color: #b0b0b0
}

.cm-s-base16-light .CodeMirror-cursor {
	border-left: 1px solid #505050 !important
}

.cm-s-base16-light span.cm-comment {
	color: #8f5536
}

.cm-s-base16-light span.cm-atom {
	color: #aa759f
}

.cm-s-base16-light span.cm-number {
	color: #aa759f
}

.cm-s-base16-light span.cm-attribute, .cm-s-base16-light span.cm-property {
	color: #90a959
}

.cm-s-base16-light span.cm-keyword {
	color: #ac4142
}

.cm-s-base16-light span.cm-string {
	color: #f4bf75
}

.cm-s-base16-light span.cm-variable {
	color: #90a959
}

.cm-s-base16-light span.cm-variable-2 {
	color: #6a9fb5
}

.cm-s-base16-light span.cm-def {
	color: #d28445
}

.cm-s-base16-light span.cm-bracket {
	color: #202020
}

.cm-s-base16-light span.cm-tag {
	color: #ac4142
}

.cm-s-base16-light span.cm-link {
	color: #aa759f
}

.cm-s-base16-light span.cm-error {
	background: #ac4142;
	color: #505050
}

.cm-s-base16-light .CodeMirror-activeline-background {
	background: #DDDCDC !important
}

.cm-s-base16-light .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-blackboard.CodeMirror {
	background: #0C1021;
	color: #F8F8F8
}

.cm-s-blackboard .CodeMirror-selected {
	background: #253B76 !important
}

.cm-s-blackboard .CodeMirror-line::selection, .cm-s-blackboard .CodeMirror-line > span::selection, .cm-s-blackboard .CodeMirror-line > span > span::selection {
	background: rgba(37, 59, 118, .99)
}

.cm-s-blackboard .CodeMirror-line::-moz-selection, .cm-s-blackboard .CodeMirror-line > span::-moz-selection, .cm-s-blackboard .CodeMirror-line > span > span::-moz-selection {
	background: rgba(37, 59, 118, .99)
}

.cm-s-blackboard .CodeMirror-gutters {
	background: #0C1021;
	border-right: 0
}

.cm-s-blackboard .CodeMirror-guttermarker {
	color: #FBDE2D
}

.cm-s-blackboard .CodeMirror-guttermarker-subtle {
	color: #888
}

.cm-s-blackboard .CodeMirror-linenumber {
	color: #888
}

.cm-s-blackboard .CodeMirror-cursor {
	border-left: 1px solid #A7A7A7 !important
}

.cm-s-blackboard .cm-keyword {
	color: #FBDE2D
}

.cm-s-blackboard .cm-atom {
	color: #D8FA3C
}

.cm-s-blackboard .cm-number {
	color: #D8FA3C
}

.cm-s-blackboard .cm-def {
	color: #8DA6CE
}

.cm-s-blackboard .cm-variable {
	color: #FF6400
}

.cm-s-blackboard .cm-operator {
	color: #FBDE2D
}

.cm-s-blackboard .cm-comment {
	color: #AEAEAE
}

.cm-s-blackboard .cm-string {
	color: #61CE3C
}

.cm-s-blackboard .cm-string-2 {
	color: #61CE3C
}

.cm-s-blackboard .cm-meta {
	color: #D8FA3C
}

.cm-s-blackboard .cm-builtin {
	color: #8DA6CE
}

.cm-s-blackboard .cm-tag {
	color: #8DA6CE
}

.cm-s-blackboard .cm-attribute {
	color: #8DA6CE
}

.cm-s-blackboard .cm-header {
	color: #FF6400
}

.cm-s-blackboard .cm-hr {
	color: #AEAEAE
}

.cm-s-blackboard .cm-link {
	color: #8DA6CE
}

.cm-s-blackboard .cm-error {
	background: #9D1E15;
	color: #F8F8F8
}

.cm-s-blackboard .CodeMirror-activeline-background {
	background: #3C3636 !important
}

.cm-s-blackboard .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-cobalt.CodeMirror {
	background: #002240;
	color: #fff
}

.cm-s-cobalt div.CodeMirror-selected {
	background: #b36539 !important
}

.cm-s-cobalt .CodeMirror-line::selection, .cm-s-cobalt .CodeMirror-line > span::selection, .cm-s-cobalt .CodeMirror-line > span > span::selection {
	background: rgba(179, 101, 57, .99)
}

.cm-s-cobalt .CodeMirror-line::-moz-selection, .cm-s-cobalt .CodeMirror-line > span::-moz-selection, .cm-s-cobalt .CodeMirror-line > span > span::-moz-selection {
	background: rgba(179, 101, 57, .99)
}

.cm-s-cobalt .CodeMirror-gutters {
	background: #002240;
	border-right: 1px solid #aaa
}

.cm-s-cobalt .CodeMirror-guttermarker {
	color: #ffee80
}

.cm-s-cobalt .CodeMirror-guttermarker-subtle {
	color: #d0d0d0
}

.cm-s-cobalt .CodeMirror-linenumber {
	color: #d0d0d0
}

.cm-s-cobalt .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-cobalt span.cm-comment {
	color: #08f
}

.cm-s-cobalt span.cm-atom {
	color: #845dc4
}

.cm-s-cobalt span.cm-attribute, .cm-s-cobalt span.cm-number {
	color: #ff80e1
}

.cm-s-cobalt span.cm-keyword {
	color: #ffee80
}

.cm-s-cobalt span.cm-string {
	color: #3ad900
}

.cm-s-cobalt span.cm-meta {
	color: #ff9d00
}

.cm-s-cobalt span.cm-tag, .cm-s-cobalt span.cm-variable-2 {
	color: #9effff
}

.cm-s-cobalt span.cm-def, .cm-s-cobalt span.cm-variable-3 {
	color: #fff
}

.cm-s-cobalt span.cm-bracket {
	color: #d8d8d8
}

.cm-s-cobalt span.cm-builtin, .cm-s-cobalt span.cm-special {
	color: #ff9e59
}

.cm-s-cobalt span.cm-link {
	color: #845dc4
}

.cm-s-cobalt span.cm-error {
	color: #9d1e15
}

.cm-s-cobalt .CodeMirror-activeline-background {
	background: #002D57 !important
}

.cm-s-cobalt .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-colorforth.CodeMirror {
	background: #000;
	color: #f8f8f8
}

.cm-s-colorforth .CodeMirror-gutters {
	background: #0a001f;
	border-right: 1px solid #aaa
}

.cm-s-colorforth .CodeMirror-guttermarker {
	color: #FFBD40
}

.cm-s-colorforth .CodeMirror-guttermarker-subtle {
	color: #78846f
}

.cm-s-colorforth .CodeMirror-linenumber {
	color: #bababa
}

.cm-s-colorforth .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-colorforth span.cm-comment {
	color: #ededed
}

.cm-s-colorforth span.cm-def {
	color: #ff1c1c;
	font-weight: 700
}

.cm-s-colorforth span.cm-keyword {
	color: #ffd900
}

.cm-s-colorforth span.cm-builtin {
	color: #00d95a
}

.cm-s-colorforth span.cm-variable {
	color: #73ff00
}

.cm-s-colorforth span.cm-string {
	color: #007bff
}

.cm-s-colorforth span.cm-number {
	color: #00c4ff
}

.cm-s-colorforth span.cm-atom {
	color: #606060
}

.cm-s-colorforth span.cm-variable-2 {
	color: #EEE
}

.cm-s-colorforth span.cm-variable-3 {
	color: #DDD
}

.cm-s-colorforth span.cm-meta {
	color: #ff0
}

.cm-s-colorforth span.cm-qualifier {
	color: #FFF700
}

.cm-s-colorforth span.cm-bracket {
	color: #cc7
}

.cm-s-colorforth span.cm-tag {
	color: #FFBD40
}

.cm-s-colorforth span.cm-attribute {
	color: #FFF700
}

.cm-s-colorforth span.cm-error {
	color: red
}

.cm-s-colorforth .CodeMirror-selected {
	background: #333d53 !important
}

.cm-s-colorforth span.cm-compilation {
	background: rgba(255, 255, 255, .12)
}

.cm-s-colorforth .CodeMirror-activeline-background {
	background: #253540 !important
}

.cm-s-dracula .CodeMirror-gutters, .cm-s-dracula.CodeMirror {
	background-color: #282a36 !important;
	color: #f8f8f2 !important;
	border: none
}

.cm-s-dracula .CodeMirror-gutters {
	color: #282a36
}

.cm-s-dracula .CodeMirror-cursor {
	border-left: solid thin #f8f8f0 !important
}

.cm-s-dracula .CodeMirror-linenumber {
	color: #6D8A88
}

.cm-s-dracula.CodeMirror-focused .CodeMirror-selected {
	background: rgba(255, 255, 255, .1)
}

.cm-s-dracula .CodeMirror-line::selection, .cm-s-dracula .CodeMirror-line > span::selection, .cm-s-dracula .CodeMirror-line > span > span::selection {
	background: rgba(255, 255, 255, .1)
}

.cm-s-dracula .CodeMirror-line::-moz-selection, .cm-s-dracula .CodeMirror-line > span::-moz-selection, .cm-s-dracula .CodeMirror-line > span > span::-moz-selection {
	background: rgba(255, 255, 255, .1)
}

.cm-s-dracula span.cm-comment {
	color: #6272a4
}

.cm-s-dracula span.cm-string, .cm-s-dracula span.cm-string-2 {
	color: #f1fa8c
}

.cm-s-dracula span.cm-number {
	color: #bd93f9
}

.cm-s-dracula span.cm-variable {
	color: #50fa7b
}

.cm-s-dracula span.cm-variable-2 {
	color: #fff
}

.cm-s-dracula span.cm-def {
	color: #ffb86c
}

.cm-s-dracula span.cm-keyword {
	color: #ff79c6
}

.cm-s-dracula span.cm-operator {
	color: #ff79c6
}

.cm-s-dracula span.cm-keyword {
	color: #ff79c6
}

.cm-s-dracula span.cm-atom {
	color: #bd93f9
}

.cm-s-dracula span.cm-meta {
	color: #f8f8f2
}

.cm-s-dracula span.cm-tag {
	color: #ff79c6
}

.cm-s-dracula span.cm-attribute {
	color: #50fa7b
}

.cm-s-dracula span.cm-qualifier {
	color: #50fa7b
}

.cm-s-dracula span.cm-property {
	color: #66d9ef
}

.cm-s-dracula span.cm-builtin {
	color: #50fa7b
}

.cm-s-dracula span.cm-variable-3 {
	color: #50fa7b
}

.cm-s-dracula .CodeMirror-activeline-background {
	background: rgba(255, 255, 255, .1) !important
}

.cm-s-dracula .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-eclipse span.cm-meta {
	color: #FF1717
}

.cm-s-eclipse span.cm-keyword {
	line-height: 1em;
	font-weight: 700;
	color: #7F0055
}

.cm-s-eclipse span.cm-atom {
	color: #219
}

.cm-s-eclipse span.cm-number {
	color: #164
}

.cm-s-eclipse span.cm-def {
	color: #00f
}

.cm-s-eclipse span.cm-variable {
	color: #000
}

.cm-s-eclipse span.cm-variable-2 {
	color: #0000C0
}

.cm-s-eclipse span.cm-variable-3 {
	color: #0000C0
}

.cm-s-eclipse span.cm-property {
	color: #000
}

.cm-s-eclipse span.cm-operator {
	color: #000
}

.cm-s-eclipse span.cm-comment {
	color: #3F7F5F
}

.cm-s-eclipse span.cm-string {
	color: #2A00FF
}

.cm-s-eclipse span.cm-string-2 {
	color: #f50
}

.cm-s-eclipse span.cm-qualifier {
	color: #555
}

.cm-s-eclipse span.cm-builtin {
	color: #30a
}

.cm-s-eclipse span.cm-bracket {
	color: #cc7
}

.cm-s-eclipse span.cm-tag {
	color: #170
}

.cm-s-eclipse span.cm-attribute {
	color: #00c
}

.cm-s-eclipse span.cm-link {
	color: #219
}

.cm-s-eclipse span.cm-error {
	color: red
}

.cm-s-eclipse .CodeMirror-activeline-background {
	background: #e8f2ff !important
}

.cm-s-eclipse .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #000 !important
}

.cm-s-elegant span.cm-atom, .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string {
	color: #762
}

.cm-s-elegant span.cm-comment {
	color: #262;
	font-style: italic;
	line-height: 1em
}

.cm-s-elegant span.cm-meta {
	color: #555;
	font-style: italic;
	line-height: 1em
}

.cm-s-elegant span.cm-variable {
	color: #000
}

.cm-s-elegant span.cm-variable-2 {
	color: #b11
}

.cm-s-elegant span.cm-qualifier {
	color: #555
}

.cm-s-elegant span.cm-keyword {
	color: #730
}

.cm-s-elegant span.cm-builtin {
	color: #30a
}

.cm-s-elegant span.cm-link {
	color: #762
}

.cm-s-elegant span.cm-error {
	background-color: #fdd
}

.cm-s-elegant .CodeMirror-activeline-background {
	background: #e8f2ff !important
}

.cm-s-elegant .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #000 !important
}

.cm-s-erlang-dark.CodeMirror {
	background: #002240;
	color: #fff
}

.cm-s-erlang-dark div.CodeMirror-selected {
	background: #b36539 !important
}

.cm-s-erlang-dark .CodeMirror-line::selection, .cm-s-erlang-dark .CodeMirror-line > span::selection, .cm-s-erlang-dark .CodeMirror-line > span > span::selection {
	background: rgba(179, 101, 57, .99)
}

.cm-s-erlang-dark .CodeMirror-line::-moz-selection, .cm-s-erlang-dark .CodeMirror-line > span::-moz-selection, .cm-s-erlang-dark .CodeMirror-line > span > span::-moz-selection {
	background: rgba(179, 101, 57, .99)
}

.cm-s-erlang-dark .CodeMirror-gutters {
	background: #002240;
	border-right: 1px solid #aaa
}

.cm-s-erlang-dark .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-erlang-dark .CodeMirror-guttermarker-subtle {
	color: #d0d0d0
}

.cm-s-erlang-dark .CodeMirror-linenumber {
	color: #d0d0d0
}

.cm-s-erlang-dark .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-erlang-dark span.cm-quote {
	color: #ccc
}

.cm-s-erlang-dark span.cm-atom {
	color: #f133f1
}

.cm-s-erlang-dark span.cm-attribute {
	color: #ff80e1
}

.cm-s-erlang-dark span.cm-bracket {
	color: #ff9d00
}

.cm-s-erlang-dark span.cm-builtin {
	color: #eaa
}

.cm-s-erlang-dark span.cm-comment {
	color: #77f
}

.cm-s-erlang-dark span.cm-def {
	color: #e7a
}

.cm-s-erlang-dark span.cm-keyword {
	color: #ffee80
}

.cm-s-erlang-dark span.cm-meta {
	color: #50fefe
}

.cm-s-erlang-dark span.cm-number {
	color: #ffd0d0
}

.cm-s-erlang-dark span.cm-operator {
	color: #d55
}

.cm-s-erlang-dark span.cm-property {
	color: #ccc
}

.cm-s-erlang-dark span.cm-qualifier {
	color: #ccc
}

.cm-s-erlang-dark span.cm-special {
	color: #fbb
}

.cm-s-erlang-dark span.cm-string {
	color: #3ad900
}

.cm-s-erlang-dark span.cm-string-2 {
	color: #ccc
}

.cm-s-erlang-dark span.cm-tag {
	color: #9effff
}

.cm-s-erlang-dark span.cm-variable {
	color: #50fe50
}

.cm-s-erlang-dark span.cm-variable-2 {
	color: #e0e
}

.cm-s-erlang-dark span.cm-variable-3 {
	color: #ccc
}

.cm-s-erlang-dark span.cm-error {
	color: #9d1e15
}

.cm-s-erlang-dark .CodeMirror-activeline-background {
	background: #013461 !important
}

.cm-s-erlang-dark .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-icecoder {
	color: #666;
	background: #141612
}

.cm-s-icecoder span.cm-keyword {
	color: #eee;
	font-weight: 700
}

.cm-s-icecoder span.cm-atom {
	color: #e1c76e
}

.cm-s-icecoder span.cm-number {
	color: #6cb5d9
}

.cm-s-icecoder span.cm-def {
	color: #b9ca4a
}

.cm-s-icecoder span.cm-variable {
	color: #6cb5d9
}

.cm-s-icecoder span.cm-variable-2 {
	color: #cc1e5c
}

.cm-s-icecoder span.cm-variable-3 {
	color: #f9602c
}

.cm-s-icecoder span.cm-property {
	color: #eee
}

.cm-s-icecoder span.cm-operator {
	color: #9179bb
}

.cm-s-icecoder span.cm-comment {
	color: #97a3aa
}

.cm-s-icecoder span.cm-string {
	color: #b9ca4a
}

.cm-s-icecoder span.cm-string-2 {
	color: #6cb5d9
}

.cm-s-icecoder span.cm-meta {
	color: #555
}

.cm-s-icecoder span.cm-qualifier {
	color: #555
}

.cm-s-icecoder span.cm-builtin {
	color: #214e7b
}

.cm-s-icecoder span.cm-bracket {
	color: #cc7
}

.cm-s-icecoder span.cm-tag {
	color: #e8e8e8
}

.cm-s-icecoder span.cm-attribute {
	color: #099
}

.cm-s-icecoder span.cm-header {
	color: #6a0d6a
}

.cm-s-icecoder span.cm-quote {
	color: #186718
}

.cm-s-icecoder span.cm-hr {
	color: #888
}

.cm-s-icecoder span.cm-link {
	color: #e1c76e
}

.cm-s-icecoder span.cm-error {
	color: #d00
}

.cm-s-icecoder .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-icecoder .CodeMirror-selected {
	color: #fff !important;
	background: #037 !important
}

.cm-s-icecoder .CodeMirror-gutters {
	background: #141612;
	min-width: 41px;
	border-right: 0
}

.cm-s-icecoder .CodeMirror-linenumber {
	color: #555;
	cursor: default
}

.cm-s-icecoder .CodeMirror-matchingbracket {
	border: 1px solid grey;
	color: #000 !important
}

.cm-s-lesser-dark {
	line-height: 1.3em
}

.cm-s-lesser-dark.CodeMirror {
	background: #262626;
	color: #EBEFE7;
	text-shadow: 0 -1px 1px #262626
}

.cm-s-lesser-dark div.CodeMirror-selected {
	background: #45443B !important
}

.cm-s-lesser-dark .CodeMirror-line::selection, .cm-s-lesser-dark .CodeMirror-line > span::selection, .cm-s-lesser-dark .CodeMirror-line > span > span::selection {
	background: rgba(69, 68, 59, .99)
}

.cm-s-lesser-dark .CodeMirror-line::-moz-selection, .cm-s-lesser-dark .CodeMirror-line > span::-moz-selection, .cm-s-lesser-dark .CodeMirror-line > span > span::-moz-selection {
	background: rgba(69, 68, 59, .99)
}

.cm-s-lesser-dark .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-lesser-dark pre {
	padding: 0 8px
}

.cm-s-lesser-dark.CodeMirror span.CodeMirror-matchingbracket {
	color: #7EFC7E
}

.cm-s-lesser-dark .CodeMirror-gutters {
	background: #262626;
	border-right: 1px solid #aaa
}

.cm-s-lesser-dark .CodeMirror-guttermarker {
	color: #599eff
}

.cm-s-lesser-dark .CodeMirror-guttermarker-subtle {
	color: #777
}

.cm-s-lesser-dark .CodeMirror-linenumber {
	color: #777
}

.cm-s-lesser-dark span.cm-header {
	color: #a0a
}

.cm-s-lesser-dark span.cm-quote {
	color: #090
}

.cm-s-lesser-dark span.cm-keyword {
	color: #599eff
}

.cm-s-lesser-dark span.cm-atom {
	color: #C2B470
}

.cm-s-lesser-dark span.cm-number {
	color: #B35E4D
}

.cm-s-lesser-dark span.cm-def {
	color: #fff
}

.cm-s-lesser-dark span.cm-variable {
	color: #D9BF8C
}

.cm-s-lesser-dark span.cm-variable-2 {
	color: #669199
}

.cm-s-lesser-dark span.cm-variable-3 {
	color: #fff
}

.cm-s-lesser-dark span.cm-property {
	color: #92A75C
}

.cm-s-lesser-dark span.cm-operator {
	color: #92A75C
}

.cm-s-lesser-dark span.cm-comment {
	color: #666
}

.cm-s-lesser-dark span.cm-string {
	color: #BCD279
}

.cm-s-lesser-dark span.cm-string-2 {
	color: #f50
}

.cm-s-lesser-dark span.cm-meta {
	color: #738C73
}

.cm-s-lesser-dark span.cm-qualifier {
	color: #555
}

.cm-s-lesser-dark span.cm-builtin {
	color: #ff9e59
}

.cm-s-lesser-dark span.cm-bracket {
	color: #EBEFE7
}

.cm-s-lesser-dark span.cm-tag {
	color: #669199
}

.cm-s-lesser-dark span.cm-attribute {
	color: #00c
}

.cm-s-lesser-dark span.cm-hr {
	color: #999
}

.cm-s-lesser-dark span.cm-link {
	color: #00c
}

.cm-s-lesser-dark span.cm-error {
	color: #9d1e15
}

.cm-s-lesser-dark .CodeMirror-activeline-background {
	background: #3C3A3A !important
}

.cm-s-lesser-dark .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-liquibyte.CodeMirror {
	background-color: #000;
	color: #fff;
	line-height: 1.2em;
	font-size: 1em
}

.CodeMirror-focused .cm-matchhighlight {
	text-decoration: underline;
	text-decoration-color: #0f0;
	text-decoration-style: wavy
}

.cm-trailingspace {
	text-decoration: line-through;
	text-decoration-color: red;
	text-decoration-style: dotted
}

.cm-tab {
	text-decoration: line-through;
	text-decoration-color: #404040;
	text-decoration-style: dotted
}

.cm-s-liquibyte .CodeMirror-gutters {
	background-color: #262626;
	border-right: 1px solid #505050;
	padding-right: .8em
}

.cm-s-liquibyte .CodeMirror-gutter-elt div {
	font-size: 1.2em
}

.cm-s-liquibyte .CodeMirror-linenumber {
	color: #606060;
	padding-left: 0
}

.cm-s-liquibyte .CodeMirror-cursor {
	border-left: 1px solid #eee !important
}

.cm-s-liquibyte span.cm-comment {
	color: green
}

.cm-s-liquibyte span.cm-def {
	color: #ffaf40;
	font-weight: 700
}

.cm-s-liquibyte span.cm-keyword {
	color: #c080ff;
	font-weight: 700
}

.cm-s-liquibyte span.cm-builtin {
	color: #ffaf40;
	font-weight: 700
}

.cm-s-liquibyte span.cm-variable {
	color: #5967ff;
	font-weight: 700
}

.cm-s-liquibyte span.cm-string {
	color: #ff8000
}

.cm-s-liquibyte span.cm-number {
	color: #0f0;
	font-weight: 700
}

.cm-s-liquibyte span.cm-atom {
	color: #bf3030;
	font-weight: 700
}

.cm-s-liquibyte span.cm-variable-2 {
	color: #007f7f;
	font-weight: 700
}

.cm-s-liquibyte span.cm-variable-3 {
	color: #c080ff;
	font-weight: 700
}

.cm-s-liquibyte span.cm-property {
	color: #999;
	font-weight: 700
}

.cm-s-liquibyte span.cm-operator {
	color: #fff
}

.cm-s-liquibyte span.cm-meta {
	color: #0f0
}

.cm-s-liquibyte span.cm-qualifier {
	color: #fff700;
	font-weight: 700
}

.cm-s-liquibyte span.cm-bracket {
	color: #cc7
}

.cm-s-liquibyte span.cm-tag {
	color: #ff0;
	font-weight: 700
}

.cm-s-liquibyte span.cm-attribute {
	color: #c080ff;
	font-weight: 700
}

.cm-s-liquibyte span.cm-error {
	color: red
}

.cm-s-liquibyte .CodeMirror-selected {
	background-color: rgba(255, 0, 0, .25) !important
}

.cm-s-liquibyte span.cm-compilation {
	background-color: rgba(255, 255, 255, .12)
}

.cm-s-liquibyte .CodeMirror-activeline-background {
	background-color: rgba(0, 255, 0, .15) !important
}

div.CodeMirror span.CodeMirror-matchingbracket {
	color: #0f0;
	font-weight: 700
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
	color: red;
	font-weight: 700
}

.CodeMirror-matchingtag {
	background-color: rgba(150, 255, 0, .3)
}

div.CodeMirror-simplescroll-horizontal div:hover, div.CodeMirror-simplescroll-vertical div:hover {
	background-color: rgba(80, 80, 80, .7)
}

div.CodeMirror-simplescroll-horizontal div, div.CodeMirror-simplescroll-vertical div {
	background-color: rgba(80, 80, 80, .3);
	border: 1px solid #404040;
	border-radius: 5px
}

div.CodeMirror-simplescroll-vertical div {
	border-top: 1px solid #404040;
	border-bottom: 1px solid #404040
}

div.CodeMirror-simplescroll-horizontal div {
	border-left: 1px solid #404040;
	border-right: 1px solid #404040
}

div.CodeMirror-simplescroll-vertical {
	background-color: #262626
}

div.CodeMirror-simplescroll-horizontal {
	background-color: #262626;
	border-top: 1px solid #404040
}

div.CodeMirror-overlayscroll-horizontal div, div.CodeMirror-overlayscroll-vertical div {
	background-color: #404040;
	border-radius: 5px
}

div.CodeMirror-overlayscroll-vertical div {
	border: 1px solid #404040
}

div.CodeMirror-overlayscroll-horizontal div {
	border: 1px solid #404040
}

.cm-s-material {
	background-color: #263238;
	color: rgba(233, 237, 237, 1)
}

.cm-s-material .CodeMirror-gutters {
	background: #263238;
	color: #537f7e;
	border: none
}

.cm-s-material .CodeMirror-guttermarker, .cm-s-material .CodeMirror-guttermarker-subtle, .cm-s-material .CodeMirror-linenumber {
	color: #537f7e
}

.cm-s-material .CodeMirror-cursor {
	border-left: 1px solid #f8f8f0 !important
}

.cm-s-material .CodeMirror-selected {
	background: rgba(255, 255, 255, .15)
}

.cm-s-material.CodeMirror-focused .CodeMirror-selected {
	background: rgba(255, 255, 255, .1)
}

.cm-s-material .CodeMirror-line::selection, .cm-s-material .CodeMirror-line > span::selection, .cm-s-material .CodeMirror-line > span > span::selection {
	background: rgba(255, 255, 255, .1)
}

.cm-s-material .CodeMirror-line::-moz-selection, .cm-s-material .CodeMirror-line > span::-moz-selection, .cm-s-material .CodeMirror-line > span > span::-moz-selection {
	background: rgba(255, 255, 255, .1)
}

.CodeMirror-activeline-background {
	background: transparent !important
}

.cm-s-material span.cm-keyword {
	color: rgba(199, 146, 234, 1)
}

.cm-s-material span.cm-operator {
	color: rgba(233, 237, 237, 1)
}

.cm-s-material span.cm-variable-2 {
	color: #80CBC4
}

.cm-s-material span.cm-variable-3 {
	color: #82B1FF
}

.cm-s-material span.cm-builtin {
	color: #DECB6B
}

.cm-s-material span.cm-atom {
	color: #F77669
}

.cm-s-material span.cm-number {
	color: #F77669
}

.cm-s-material span.cm-def {
	color: rgba(233, 237, 237, 1)
}

.cm-s-material span.cm-error {
	color: rgba(255, 255, 255, 1);
	background-color: #EC5F67
}

.cm-s-material span.cm-string {
	color: #C3E88D
}

.cm-s-material span.cm-string-2 {
	color: #80CBC4
}

.cm-s-material span.cm-comment {
	color: #546E7A
}

.cm-s-material span.cm-variable {
	color: #82B1FF
}

.cm-s-material span.cm-tag {
	color: #80CBC4
}

.cm-s-material span.cm-meta {
	color: #80CBC4
}

.cm-s-material span.cm-attribute {
	color: #FFCB6B
}

.cm-s-material span.cm-property {
	color: #80CBAE
}

.cm-s-material span.cm-qualifier {
	color: #DECB6B
}

.cm-s-material span.cm-variable-3 {
	color: #DECB6B
}

.cm-s-material span.cm-tag {
	color: rgba(255, 83, 112, 1)
}

.cm-s-material .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-mbo.CodeMirror {
	background: #2c2c2c;
	color: #ffffec
}

.cm-s-mbo div.CodeMirror-selected {
	background: #716C62 !important
}

.cm-s-mbo .CodeMirror-line::selection, .cm-s-mbo .CodeMirror-line > span::selection, .cm-s-mbo .CodeMirror-line > span > span::selection {
	background: rgba(113, 108, 98, .99)
}

.cm-s-mbo .CodeMirror-line::-moz-selection, .cm-s-mbo .CodeMirror-line > span::-moz-selection, .cm-s-mbo .CodeMirror-line > span > span::-moz-selection {
	background: rgba(113, 108, 98, .99)
}

.cm-s-mbo .CodeMirror-gutters {
	background: #4e4e4e;
	border-right: 0
}

.cm-s-mbo .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-mbo .CodeMirror-guttermarker-subtle {
	color: grey
}

.cm-s-mbo .CodeMirror-linenumber {
	color: #dadada
}

.cm-s-mbo .CodeMirror-cursor {
	border-left: 1px solid #ffffec !important
}

.cm-s-mbo span.cm-comment {
	color: #95958a
}

.cm-s-mbo span.cm-atom {
	color: #00a8c6
}

.cm-s-mbo span.cm-number {
	color: #00a8c6
}

.cm-s-mbo span.cm-attribute, .cm-s-mbo span.cm-property {
	color: #9ddfe9
}

.cm-s-mbo span.cm-keyword {
	color: #ffb928
}

.cm-s-mbo span.cm-string {
	color: #ffcf6c
}

.cm-s-mbo span.cm-string.cm-property {
	color: #ffffec
}

.cm-s-mbo span.cm-variable {
	color: #ffffec
}

.cm-s-mbo span.cm-variable-2 {
	color: #00a8c6
}

.cm-s-mbo span.cm-def {
	color: #ffffec
}

.cm-s-mbo span.cm-bracket {
	color: #fffffc;
	font-weight: 700
}

.cm-s-mbo span.cm-tag {
	color: #9ddfe9
}

.cm-s-mbo span.cm-link {
	color: #f54b07
}

.cm-s-mbo span.cm-error {
	border-bottom: #636363;
	color: #ffffec
}

.cm-s-mbo span.cm-qualifier {
	color: #ffffec
}

.cm-s-mbo .CodeMirror-activeline-background {
	background: #494b41 !important
}

.cm-s-mbo .CodeMirror-matchingbracket {
	color: #222 !important
}

.cm-s-mbo .CodeMirror-matchingtag {
	background: rgba(255, 255, 255, .37)
}

.cm-s-mdn-like.CodeMirror {
	color: #999;
	background-color: #fff
}

.cm-s-mdn-like .CodeMirror-selected {
	background: #cfc !important
}

.cm-s-mdn-like .CodeMirror-line::selection, .cm-s-mdn-like .CodeMirror-line > span::selection, .cm-s-mdn-like .CodeMirror-line > span > span::selection {
	background: #cfc
}

.cm-s-mdn-like .CodeMirror-line::-moz-selection, .cm-s-mdn-like .CodeMirror-line > span::-moz-selection, .cm-s-mdn-like .CodeMirror-line > span > span::-moz-selection {
	background: #cfc
}

.cm-s-mdn-like .CodeMirror-gutters {
	background: #f8f8f8;
	border-left: 6px solid rgba(0, 83, 159, .65);
	color: #333
}

.cm-s-mdn-like .CodeMirror-linenumber {
	color: #aaa;
	padding-left: 8px
}

div.cm-s-mdn-like .CodeMirror-cursor {
	border-left: 2px solid #222
}

.cm-s-mdn-like .cm-keyword {
	color: #6262FF
}

.cm-s-mdn-like .cm-atom {
	color: #F90
}

.cm-s-mdn-like .cm-number {
	color: #ca7841
}

.cm-s-mdn-like .cm-def {
	color: #8DA6CE
}

.cm-s-mdn-like span.cm-tag, .cm-s-mdn-like span.cm-variable-2 {
	color: #690
}

.cm-s-mdn-like span.cm-def, .cm-s-mdn-like span.cm-variable-3 {
	color: #07a
}

.cm-s-mdn-like .cm-variable {
	color: #07a
}

.cm-s-mdn-like .cm-property {
	color: #905
}

.cm-s-mdn-like .cm-qualifier {
	color: #690
}

.cm-s-mdn-like .cm-operator {
	color: #cda869
}

.cm-s-mdn-like .cm-comment {
	color: #777;
	font-weight: 400
}

.cm-s-mdn-like .cm-string {
	color: #07a;
	font-style: italic
}

.cm-s-mdn-like .cm-string-2 {
	color: #bd6b18
}

.cm-s-mdn-like .cm-meta {
	color: #000
}

.cm-s-mdn-like .cm-builtin {
	color: #9B7536
}

.cm-s-mdn-like .cm-tag {
	color: #997643
}

.cm-s-mdn-like .cm-attribute {
	color: #d6bb6d
}

.cm-s-mdn-like .cm-header {
	color: #FF6400
}

.cm-s-mdn-like .cm-hr {
	color: #AEAEAE
}

.cm-s-mdn-like .cm-link {
	color: #ad9361;
	font-style: italic;
	text-decoration: none
}

.cm-s-mdn-like .cm-error {
	border-bottom: 1px solid red
}

div.cm-s-mdn-like .CodeMirror-activeline-background {
	background: #efefff
}

div.cm-s-mdn-like span.CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: inherit
}

.cm-s-mdn-like.CodeMirror {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFcAAAAyCAYAAAAp8UeFAAAHvklEQVR42s2b63bcNgyEQZCSHCdt2vd/0tWF7I+Q6XgMXiTtuvU5Pl57ZQKkKHzEAOtF5KeIJBGJ8uvL599FRFREZhFx8DeXv8trn68RuGaC8TRfo3SNp9dlDDHedyLyTUTeRWStXKPZrjtpZxaRw5hPqozRs1N8/enzIiQRWcCgy4MUA0f+XWliDhyL8Lfyvx7ei/Ae3iQFHyw7U/59pQVIMEEPEz0G7XiwdRjzSfC3UTtz9vchIntxvry5iMgfIhJoEflOz2CQr3F5h/HfeFe+GTdLaKcu9L8LTeQb/R/7GgbsfKedyNdoHsN31uRPWrfZ5wsj/NzzRQHuToIdU3ahwnsKPxXCjJITuOsi7XLc7SG/v5GdALs7wf8JjTFiB5+QvTEfRyGOfX3Lrx8wxyQi3sNq46O7QahQiCsRFgqddjBouVEHOKDgXAQHD9gJCr5sMKkEdjwsarG/ww3BMHBU7OBjXnzdyY7SfCxf5/z6ATccrwlKuwC/jhznnPF4CgVzhhVf4xp2EixcBActO75iZ8/fM9zAs2OMzKdslgXWJ9XG8PQoOAMA5fGcsvORgv0doBXyHrCwfLJAOwo71QLNkb8n2Pl6EWiR7OCibtkPaz4Kc/0NNAze2gju3zOwekALDaCFPI5vjPFmgGY5AZqyGEvH1x7QfIb8YtxMnA/b+QQ0aQDAwc6JMFg8CbQZ4qoYEEHbRwNojuK3EHwd7VALSgq+MNDKzfT58T8qdpADrgW0GmgcAS1lhzztJmkAzcPNOQbsWEALBDSlMKUG0Eq4CLAQWvEVQ9WU57gZJwZtgPO3r9oBTQ9WO8TjqXINx8R0EYpiZEUWOF3FxkbJkgU9B2f41YBrIj5ZfsQa0M5kTgiAAqM3ShXLgu8XMqcrQBvJ0CL5pnTsfMB13oB8athpAq2XOQmcGmoACCLydx7nToa23ATaSIY2ichfOdPTGxlasXMLaL0MLZAOwAKIM+y8CmicobGdCcbbK9DzN+yYGVoNNI5iUKTMyYOjPse4A8SM1MmcXgU0toOq1yO/v8FOxlASyc7TgeYaAMBJHcY1CcCwGI/TK4AmDbDyKYBBtFUkRwto8gygiQEaByFgJ00BH2M8JWwQS1nafDXQCidWyOI8AcjDCSjCLk8ngObuAm3JAHAdubAmOaK06V8MNEsKPJOhobSprwQa6gD7DclRQdqcwL4zxqgBrQcabUiBLclRDKAlWp+etPkBaNMA0AKlrHwTdEByZAA4GM+SNluSY6wAzcMNewxmgig5Ks0nkrSpBvSaQHMdKTBAnLojOdYyGpQ254602ZILPdTD1hdlggdIm74jbTp8vDwF5ZYUeLWGJpWsh6XNyXgcYwVoJQTEhhTYkxzZjiU5npU2TaB979TQehlaAVq4kaGpiPwwwLkYUuBbQwocyQTv1tA0+1UFWoJF3iv1oq+qoSk8EQdJmwHkziIF7oOZk14EGitibAdjLYYK78H5vZOhtWpoI0ATGHs0Q8OMb4Ey+2bU2UYztCtA0wFAs7TplGLRVQCcqaFdGSPCeTI1QNIC52iWNzof6Uib7xjEp07mNNoUYmVosVItHrHzRlLgBn9LFyRHaQCtVUMbtTNhoXWiTOO9k/V8BdAc1Oq0ArSQs6/5SU0hckNy9NnXqQY0PGYo5dWJ7nINaN6o958FWin27aBaWRka1r5myvLOAm0j30eBJqCxHLReVclxhxOEN2JfDWjxBtAC7MIH1fVaGdoOp4qJYDgKtKPSFNID2gSnGldrCqkFZ+5UeQXQBIRrSwocbdZYQT/2LwRahBPBXoHrB8nxaGROST62DKUbQOMMzZIC9abkuELfQzQALWTnDNAm8KHWFOJgJ5+SHIvTPcmx1xQyZRhNL5Qci689aXMEaN/uNIWkEwDAvFpOZmgsBaaGnbs1NPa1Jm32gBZAIh1pCtG7TSH4aE0y1uVY4uqoFPisGlpP2rSA5qTecWn5agK6BzSpgAyD+wFaqhnYoSZ1Vwr8CmlTQbrcO3ZaX0NAEyMbYaAlyquFoLKK3SPby9CeVUPThrSJmkCAE0CrKUQadi4DrdSlWhmah0YL9z9vClH59YGbHx1J8VZTyAjQepJjmXwAKTDQI3omc3p1U4gDUf6RfcdYfrUp5ClAi2J3Ba6UOXGo+K+bQrjjssitG2SJzshaLwMtXgRagUNpYYoVkMSBLM+9GGiJZMvduG6DRZ4qc04DMPtQQxOjEtACmhO7K1AbNbQDEggZyJwscFpAGwENhoBeUwh3bWolhe8BTYVKxQEWrSUn/uhcM5KhvUu/+eQu0Lzhi+VrK0PrZZNDQKs9cpYUuFYgMVpD4/NxenJTiMCNqdUEUf1qZWjppLT5qSkkUZbCwkbZMSuVnu80hfSkzRbQeqCZSAh6huR4VtoM2gHAlLf72smuWgE+VV7XpE25Ab2WFDgyhnSuKbs4GuGzCjR+tIoUuMFg3kgcWKLTwRqanJQ2W00hAsenfaApRC42hbCvK1SlE0HtE9BGgneJO+ELamitD1YjjOYnNYVcraGhtKkW0EqVVeDx733I2NH581k1NNxNLG0i0IJ8/NjVaOZ0tYZ2Vtr0Xv7tPV3hkWp9EFkgS/J0vosngTaSoaG06WHi+xObQkaAdlbanP8B2+2l0f90LmUAAAAASUVORK5CYII=)
}

.cm-s-midnight span.CodeMirror-matchhighlight {
	background: #494949
}

.cm-s-midnight.CodeMirror-focused span.CodeMirror-matchhighlight {
	background: #314D67 !important
}

.cm-s-midnight .CodeMirror-activeline-background {
	background: #253540 !important
}

.cm-s-midnight.CodeMirror {
	background: #0F192A;
	color: #D1EDFF
}

.cm-s-midnight.CodeMirror {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000
}

.cm-s-midnight div.CodeMirror-selected {
	background: #314D67 !important
}

.cm-s-midnight .CodeMirror-line::selection, .cm-s-midnight .CodeMirror-line > span::selection, .cm-s-midnight .CodeMirror-line > span > span::selection {
	background: rgba(49, 77, 103, .99)
}

.cm-s-midnight .CodeMirror-line::-moz-selection, .cm-s-midnight .CodeMirror-line > span::-moz-selection, .cm-s-midnight .CodeMirror-line > span > span::-moz-selection {
	background: rgba(49, 77, 103, .99)
}

.cm-s-midnight .CodeMirror-gutters {
	background: #0F192A;
	border-right: 1px solid
}

.cm-s-midnight .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-midnight .CodeMirror-guttermarker-subtle {
	color: #d0d0d0
}

.cm-s-midnight .CodeMirror-linenumber {
	color: #D0D0D0
}

.cm-s-midnight .CodeMirror-cursor {
	border-left: 1px solid #F8F8F0 !important
}

.cm-s-midnight span.cm-comment {
	color: #428BDD
}

.cm-s-midnight span.cm-atom {
	color: #AE81FF
}

.cm-s-midnight span.cm-number {
	color: #D1EDFF
}

.cm-s-midnight span.cm-attribute, .cm-s-midnight span.cm-property {
	color: #A6E22E
}

.cm-s-midnight span.cm-keyword {
	color: #E83737
}

.cm-s-midnight span.cm-string {
	color: #1DC116
}

.cm-s-midnight span.cm-variable {
	color: #FFAA3E
}

.cm-s-midnight span.cm-variable-2 {
	color: #FFAA3E
}

.cm-s-midnight span.cm-def {
	color: #4DD
}

.cm-s-midnight span.cm-bracket {
	color: #D1EDFF
}

.cm-s-midnight span.cm-tag {
	color: #449
}

.cm-s-midnight span.cm-link {
	color: #AE81FF
}

.cm-s-midnight span.cm-error {
	background: #F92672;
	color: #F8F8F0
}

.cm-s-midnight .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-monokai.CodeMirror {
	background: #272822;
	color: #f8f8f2
}

.cm-s-monokai div.CodeMirror-selected {
	background: #49483E !important
}

.cm-s-monokai .CodeMirror-line::selection, .cm-s-monokai .CodeMirror-line > span::selection, .cm-s-monokai .CodeMirror-line > span > span::selection {
	background: rgba(73, 72, 62, .99)
}

.cm-s-monokai .CodeMirror-line::-moz-selection, .cm-s-monokai .CodeMirror-line > span::-moz-selection, .cm-s-monokai .CodeMirror-line > span > span::-moz-selection {
	background: rgba(73, 72, 62, .99)
}

.cm-s-monokai .CodeMirror-gutters {
	background: #272822;
	border-right: 0
}

.cm-s-monokai .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-monokai .CodeMirror-guttermarker-subtle {
	color: #d0d0d0
}

.cm-s-monokai .CodeMirror-linenumber {
	color: #d0d0d0
}

.cm-s-monokai .CodeMirror-cursor {
	border-left: 1px solid #f8f8f0 !important
}

.cm-s-monokai span.cm-comment {
	color: #75715e
}

.cm-s-monokai span.cm-atom {
	color: #ae81ff
}

.cm-s-monokai span.cm-number {
	color: #ae81ff
}

.cm-s-monokai span.cm-attribute, .cm-s-monokai span.cm-property {
	color: #a6e22e
}

.cm-s-monokai span.cm-keyword {
	color: #f92672
}

.cm-s-monokai span.cm-string {
	color: #e6db74
}

.cm-s-monokai span.cm-variable {
	color: #f8f8f2
}

.cm-s-monokai span.cm-variable-2 {
	color: #9effff
}

.cm-s-monokai span.cm-variable-3 {
	color: #66d9ef
}

.cm-s-monokai span.cm-def {
	color: #fd971f
}

.cm-s-monokai span.cm-bracket {
	color: #f8f8f2
}

.cm-s-monokai span.cm-tag {
	color: #f92672
}

.cm-s-monokai span.cm-header {
	color: #ae81ff
}

.cm-s-monokai span.cm-link {
	color: #ae81ff
}

.cm-s-monokai span.cm-error {
	background: #f92672;
	color: #f8f8f0
}

.cm-s-monokai .CodeMirror-activeline-background {
	background: #373831 !important
}

.cm-s-monokai .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-neat span.cm-comment {
	color: #a86
}

.cm-s-neat span.cm-keyword {
	line-height: 1em;
	font-weight: 700;
	color: #00f
}

.cm-s-neat span.cm-string {
	color: #a22
}

.cm-s-neat span.cm-builtin {
	line-height: 1em;
	font-weight: 700;
	color: #077
}

.cm-s-neat span.cm-special {
	line-height: 1em;
	font-weight: 700;
	color: #0aa
}

.cm-s-neat span.cm-variable {
	color: #000
}

.cm-s-neat span.cm-atom, .cm-s-neat span.cm-number {
	color: #3a3
}

.cm-s-neat span.cm-meta {
	color: #555
}

.cm-s-neat span.cm-link {
	color: #3a3
}

.cm-s-neat .CodeMirror-activeline-background {
	background: #e8f2ff !important
}

.cm-s-neat .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #000 !important
}

.cm-s-neo.CodeMirror {
	background-color: #fff;
	color: #2e383c;
	line-height: 1.4375
}

.cm-s-neo .cm-comment {
	color: #75787b
}

.cm-s-neo .cm-keyword, .cm-s-neo .cm-property {
	color: #1d75b3
}

.cm-s-neo .cm-atom, .cm-s-neo .cm-number {
	color: #75438a
}

.cm-s-neo .cm-node, .cm-s-neo .cm-tag {
	color: #9c3328
}

.cm-s-neo .cm-string {
	color: #b35e14
}

.cm-s-neo .cm-qualifier, .cm-s-neo .cm-variable {
	color: #047d65
}

.cm-s-neo pre {
	padding: 0
}

.cm-s-neo .CodeMirror-gutters {
	border: none;
	border-right: 10px solid transparent;
	background-color: transparent
}

.cm-s-neo .CodeMirror-linenumber {
	padding: 0;
	color: #e0e2e5
}

.cm-s-neo .CodeMirror-guttermarker {
	color: #1d75b3
}

.cm-s-neo .CodeMirror-guttermarker-subtle {
	color: #e0e2e5
}

.cm-s-neo div.CodeMirror-cursor {
	width: auto;
	border: 0;
	background: rgba(155, 157, 162, .37);
	z-index: 1
}

.cm-s-night.CodeMirror {
	background: #0a001f;
	color: #f8f8f8
}

.cm-s-night div.CodeMirror-selected {
	background: #447 !important
}

.cm-s-night .CodeMirror-line::selection, .cm-s-night .CodeMirror-line > span::selection, .cm-s-night .CodeMirror-line > span > span::selection {
	background: rgba(68, 68, 119, .99)
}

.cm-s-night .CodeMirror-line::-moz-selection, .cm-s-night .CodeMirror-line > span::-moz-selection, .cm-s-night .CodeMirror-line > span > span::-moz-selection {
	background: rgba(68, 68, 119, .99)
}

.cm-s-night .CodeMirror-gutters {
	background: #0a001f;
	border-right: 1px solid #aaa
}

.cm-s-night .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-night .CodeMirror-guttermarker-subtle {
	color: #bbb
}

.cm-s-night .CodeMirror-linenumber {
	color: #f8f8f8
}

.cm-s-night .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-night span.cm-comment {
	color: #6900a1
}

.cm-s-night span.cm-atom {
	color: #845dc4
}

.cm-s-night span.cm-attribute, .cm-s-night span.cm-number {
	color: #ffd500
}

.cm-s-night span.cm-keyword {
	color: #599eff
}

.cm-s-night span.cm-string {
	color: #37f14a
}

.cm-s-night span.cm-meta {
	color: #7678e2
}

.cm-s-night span.cm-tag, .cm-s-night span.cm-variable-2 {
	color: #99b2ff
}

.cm-s-night span.cm-def, .cm-s-night span.cm-variable-3 {
	color: #fff
}

.cm-s-night span.cm-bracket {
	color: #8da6ce
}

.cm-s-night span.cm-comment {
	color: #6900a1
}

.cm-s-night span.cm-builtin, .cm-s-night span.cm-special {
	color: #ff9e59
}

.cm-s-night span.cm-link {
	color: #845dc4
}

.cm-s-night span.cm-error {
	color: #9d1e15
}

.cm-s-night .CodeMirror-activeline-background {
	background: #1C005A !important
}

.cm-s-night .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-paraiso-dark.CodeMirror {
	background: #2f1e2e;
	color: #b9b6b0
}

.cm-s-paraiso-dark div.CodeMirror-selected {
	background: #41323f !important
}

.cm-s-paraiso-dark .CodeMirror-line::selection, .cm-s-paraiso-dark .CodeMirror-line > span::selection, .cm-s-paraiso-dark .CodeMirror-line > span > span::selection {
	background: rgba(65, 50, 63, .99)
}

.cm-s-paraiso-dark .CodeMirror-line::-moz-selection, .cm-s-paraiso-dark .CodeMirror-line > span::-moz-selection, .cm-s-paraiso-dark .CodeMirror-line > span > span::-moz-selection {
	background: rgba(65, 50, 63, .99)
}

.cm-s-paraiso-dark .CodeMirror-gutters {
	background: #2f1e2e;
	border-right: 0
}

.cm-s-paraiso-dark .CodeMirror-guttermarker {
	color: #ef6155
}

.cm-s-paraiso-dark .CodeMirror-guttermarker-subtle {
	color: #776e71
}

.cm-s-paraiso-dark .CodeMirror-linenumber {
	color: #776e71
}

.cm-s-paraiso-dark .CodeMirror-cursor {
	border-left: 1px solid #8d8687 !important
}

.cm-s-paraiso-dark span.cm-comment {
	color: #e96ba8
}

.cm-s-paraiso-dark span.cm-atom {
	color: #815ba4
}

.cm-s-paraiso-dark span.cm-number {
	color: #815ba4
}

.cm-s-paraiso-dark span.cm-attribute, .cm-s-paraiso-dark span.cm-property {
	color: #48b685
}

.cm-s-paraiso-dark span.cm-keyword {
	color: #ef6155
}

.cm-s-paraiso-dark span.cm-string {
	color: #fec418
}

.cm-s-paraiso-dark span.cm-variable {
	color: #48b685
}

.cm-s-paraiso-dark span.cm-variable-2 {
	color: #06b6ef
}

.cm-s-paraiso-dark span.cm-def {
	color: #f99b15
}

.cm-s-paraiso-dark span.cm-bracket {
	color: #b9b6b0
}

.cm-s-paraiso-dark span.cm-tag {
	color: #ef6155
}

.cm-s-paraiso-dark span.cm-link {
	color: #815ba4
}

.cm-s-paraiso-dark span.cm-error {
	background: #ef6155;
	color: #8d8687
}

.cm-s-paraiso-dark .CodeMirror-activeline-background {
	background: #4D344A !important
}

.cm-s-paraiso-dark .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-paraiso-light.CodeMirror {
	background: #e7e9db;
	color: #41323f
}

.cm-s-paraiso-light div.CodeMirror-selected {
	background: #b9b6b0 !important
}

.cm-s-paraiso-light .CodeMirror-line::selection, .cm-s-paraiso-light .CodeMirror-line > span::selection, .cm-s-paraiso-light .CodeMirror-line > span > span::selection {
	background: #b9b6b0
}

.cm-s-paraiso-light .CodeMirror-line::-moz-selection, .cm-s-paraiso-light .CodeMirror-line > span::-moz-selection, .cm-s-paraiso-light .CodeMirror-line > span > span::-moz-selection {
	background: #b9b6b0
}

.cm-s-paraiso-light .CodeMirror-gutters {
	background: #e7e9db;
	border-right: 0
}

.cm-s-paraiso-light .CodeMirror-guttermarker {
	color: #000
}

.cm-s-paraiso-light .CodeMirror-guttermarker-subtle {
	color: #8d8687
}

.cm-s-paraiso-light .CodeMirror-linenumber {
	color: #8d8687
}

.cm-s-paraiso-light .CodeMirror-cursor {
	border-left: 1px solid #776e71 !important
}

.cm-s-paraiso-light span.cm-comment {
	color: #e96ba8
}

.cm-s-paraiso-light span.cm-atom {
	color: #815ba4
}

.cm-s-paraiso-light span.cm-number {
	color: #815ba4
}

.cm-s-paraiso-light span.cm-attribute, .cm-s-paraiso-light span.cm-property {
	color: #48b685
}

.cm-s-paraiso-light span.cm-keyword {
	color: #ef6155
}

.cm-s-paraiso-light span.cm-string {
	color: #fec418
}

.cm-s-paraiso-light span.cm-variable {
	color: #48b685
}

.cm-s-paraiso-light span.cm-variable-2 {
	color: #06b6ef
}

.cm-s-paraiso-light span.cm-def {
	color: #f99b15
}

.cm-s-paraiso-light span.cm-bracket {
	color: #41323f
}

.cm-s-paraiso-light span.cm-tag {
	color: #ef6155
}

.cm-s-paraiso-light span.cm-link {
	color: #815ba4
}

.cm-s-paraiso-light span.cm-error {
	background: #ef6155;
	color: #776e71
}

.cm-s-paraiso-light .CodeMirror-activeline-background {
	background: #CFD1C4 !important
}

.cm-s-paraiso-light .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-pastel-on-dark.CodeMirror {
	background: #2c2827;
	color: #8F938F;
	line-height: 1.5;
	font-size: 14px
}

.cm-s-pastel-on-dark div.CodeMirror-selected {
	background: rgba(221, 240, 255, .2) !important
}

.cm-s-pastel-on-dark .CodeMirror-line::selection, .cm-s-pastel-on-dark .CodeMirror-line > span::selection, .cm-s-pastel-on-dark .CodeMirror-line > span > span::selection {
	background: rgba(221, 240, 255, .2)
}

.cm-s-pastel-on-dark .CodeMirror-line::-moz-selection, .cm-s-pastel-on-dark .CodeMirror-line > span::-moz-selection, .cm-s-pastel-on-dark .CodeMirror-line > span > span::-moz-selection {
	background: rgba(221, 240, 255, .2)
}

.cm-s-pastel-on-dark .CodeMirror-gutters {
	background: #34302f;
	border-right: 0;
	padding: 0 3px
}

.cm-s-pastel-on-dark .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-pastel-on-dark .CodeMirror-guttermarker-subtle {
	color: #8F938F
}

.cm-s-pastel-on-dark .CodeMirror-linenumber {
	color: #8F938F
}

.cm-s-pastel-on-dark .CodeMirror-cursor {
	border-left: 1px solid #A7A7A7 !important
}

.cm-s-pastel-on-dark span.cm-comment {
	color: #A6C6FF
}

.cm-s-pastel-on-dark span.cm-atom {
	color: #DE8E30
}

.cm-s-pastel-on-dark span.cm-number {
	color: #CCC
}

.cm-s-pastel-on-dark span.cm-property {
	color: #8F938F
}

.cm-s-pastel-on-dark span.cm-attribute {
	color: #a6e22e
}

.cm-s-pastel-on-dark span.cm-keyword {
	color: #AEB2F8
}

.cm-s-pastel-on-dark span.cm-string {
	color: #66A968
}

.cm-s-pastel-on-dark span.cm-variable {
	color: #AEB2F8
}

.cm-s-pastel-on-dark span.cm-variable-2 {
	color: #BEBF55
}

.cm-s-pastel-on-dark span.cm-variable-3 {
	color: #DE8E30
}

.cm-s-pastel-on-dark span.cm-def {
	color: #757aD8
}

.cm-s-pastel-on-dark span.cm-bracket {
	color: #f8f8f2
}

.cm-s-pastel-on-dark span.cm-tag {
	color: #C1C144
}

.cm-s-pastel-on-dark span.cm-link {
	color: #ae81ff
}

.cm-s-pastel-on-dark span.cm-builtin, .cm-s-pastel-on-dark span.cm-qualifier {
	color: #C1C144
}

.cm-s-pastel-on-dark span.cm-error {
	background: #757aD8;
	color: #f8f8f0
}

.cm-s-pastel-on-dark .CodeMirror-activeline-background {
	background: rgba(255, 255, 255, .031) !important
}

.cm-s-pastel-on-dark .CodeMirror-matchingbracket {
	border: 1px solid rgba(255, 255, 255, .25);
	color: #8F938F !important;
	margin: -1px -1px 0 -1px
}

.cm-s-rubyblue.CodeMirror {
	background: #112435;
	color: #fff
}

.cm-s-rubyblue div.CodeMirror-selected {
	background: #38566F !important
}

.cm-s-rubyblue .CodeMirror-line::selection, .cm-s-rubyblue .CodeMirror-line > span::selection, .cm-s-rubyblue .CodeMirror-line > span > span::selection {
	background: rgba(56, 86, 111, .99)
}

.cm-s-rubyblue .CodeMirror-line::-moz-selection, .cm-s-rubyblue .CodeMirror-line > span::-moz-selection, .cm-s-rubyblue .CodeMirror-line > span > span::-moz-selection {
	background: rgba(56, 86, 111, .99)
}

.cm-s-rubyblue .CodeMirror-gutters {
	background: #1F4661;
	border-right: 7px solid #3E7087
}

.cm-s-rubyblue .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-rubyblue .CodeMirror-guttermarker-subtle {
	color: #3E7087
}

.cm-s-rubyblue .CodeMirror-linenumber {
	color: #fff
}

.cm-s-rubyblue .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-rubyblue span.cm-comment {
	color: #999;
	font-style: italic;
	line-height: 1em
}

.cm-s-rubyblue span.cm-atom {
	color: #F4C20B
}

.cm-s-rubyblue span.cm-attribute, .cm-s-rubyblue span.cm-number {
	color: #82C6E0
}

.cm-s-rubyblue span.cm-keyword {
	color: #F0F
}

.cm-s-rubyblue span.cm-string {
	color: #F08047
}

.cm-s-rubyblue span.cm-meta {
	color: #F0F
}

.cm-s-rubyblue span.cm-tag, .cm-s-rubyblue span.cm-variable-2 {
	color: #7BD827
}

.cm-s-rubyblue span.cm-def, .cm-s-rubyblue span.cm-variable-3 {
	color: #fff
}

.cm-s-rubyblue span.cm-bracket {
	color: #F0F
}

.cm-s-rubyblue span.cm-link {
	color: #F4C20B
}

.cm-s-rubyblue span.CodeMirror-matchingbracket {
	color: #F0F !important
}

.cm-s-rubyblue span.cm-builtin, .cm-s-rubyblue span.cm-special {
	color: #FF9D00
}

.cm-s-rubyblue span.cm-error {
	color: #AF2018
}

.cm-s-rubyblue .CodeMirror-activeline-background {
	background: #173047 !important
}

.cm-s-seti.CodeMirror {
	background-color: #151718 !important;
	color: #CFD2D1 !important;
	border: none
}

.cm-s-seti .CodeMirror-gutters {
	color: #404b53;
	background-color: #0E1112;
	border: none
}

.cm-s-seti .CodeMirror-cursor {
	border-left: solid thin #f8f8f0 !important
}

.cm-s-seti .CodeMirror-linenumber {
	color: #6D8A88
}

.cm-s-seti.CodeMirror-focused .CodeMirror-selected {
	background: rgba(255, 255, 255, .1)
}

.cm-s-seti .CodeMirror-line::selection, .cm-s-seti .CodeMirror-line > span::selection, .cm-s-seti .CodeMirror-line > span > span::selection {
	background: rgba(255, 255, 255, .1)
}

.cm-s-seti .CodeMirror-line::-moz-selection, .cm-s-seti .CodeMirror-line > span::-moz-selection, .cm-s-seti .CodeMirror-line > span > span::-moz-selection {
	background: rgba(255, 255, 255, .1)
}

.cm-s-seti span.cm-comment {
	color: #41535b
}

.cm-s-seti span.cm-string, .cm-s-seti span.cm-string-2 {
	color: #55b5db
}

.cm-s-seti span.cm-number {
	color: #cd3f45
}

.cm-s-seti span.cm-variable {
	color: #55b5db
}

.cm-s-seti span.cm-variable-2 {
	color: #a074c4
}

.cm-s-seti span.cm-def {
	color: #55b5db
}

.cm-s-seti span.cm-keyword {
	color: #ff79c6
}

.cm-s-seti span.cm-operator {
	color: #9fca56
}

.cm-s-seti span.cm-keyword {
	color: #e6cd69
}

.cm-s-seti span.cm-atom {
	color: #cd3f45
}

.cm-s-seti span.cm-meta {
	color: #55b5db
}

.cm-s-seti span.cm-tag {
	color: #55b5db
}

.cm-s-seti span.cm-attribute {
	color: #9fca56
}

.cm-s-seti span.cm-qualifier {
	color: #9fca56
}

.cm-s-seti span.cm-property {
	color: #a074c4
}

.cm-s-seti span.cm-variable-3 {
	color: #9fca56
}

.cm-s-seti span.cm-builtin {
	color: #9fca56
}

.cm-s-seti .CodeMirror-activeline-background {
	background: #101213 !important
}

.cm-s-seti .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.solarized.base03 {
	color: #002b36
}

.solarized.base02 {
	color: #073642
}

.solarized.base01 {
	color: #586e75
}

.solarized.base00 {
	color: #657b83
}

.solarized.base0 {
	color: #839496
}

.solarized.base1 {
	color: #93a1a1
}

.solarized.base2 {
	color: #eee8d5
}

.solarized.base3 {
	color: #fdf6e3
}

.solarized.solar-yellow {
	color: #b58900
}

.solarized.solar-orange {
	color: #cb4b16
}

.solarized.solar-red {
	color: #dc322f
}

.solarized.solar-magenta {
	color: #d33682
}

.solarized.solar-violet {
	color: #6c71c4
}

.solarized.solar-blue {
	color: #268bd2
}

.solarized.solar-cyan {
	color: #2aa198
}

.solarized.solar-green {
	color: #859900
}

.cm-s-solarized {
	line-height: 1.45em;
	color-profile: sRGB;
	rendering-intent: auto
}

.cm-s-solarized.cm-s-dark {
	color: #839496;
	background-color: #002b36;
	text-shadow: #002b36 0 1px
}

.cm-s-solarized.cm-s-light {
	background-color: #fdf6e3;
	color: #657b83;
	text-shadow: #eee8d5 0 1px
}

.cm-s-solarized .CodeMirror-widget {
	text-shadow: none
}

.cm-s-solarized .cm-header {
	color: #586e75
}

.cm-s-solarized .cm-quote {
	color: #93a1a1
}

.cm-s-solarized .cm-keyword {
	color: #cb4b16
}

.cm-s-solarized .cm-atom {
	color: #d33682
}

.cm-s-solarized .cm-number {
	color: #d33682
}

.cm-s-solarized .cm-def {
	color: #2aa198
}

.cm-s-solarized .cm-variable {
	color: #839496
}

.cm-s-solarized .cm-variable-2 {
	color: #b58900
}

.cm-s-solarized .cm-variable-3 {
	color: #6c71c4
}

.cm-s-solarized .cm-property {
	color: #2aa198
}

.cm-s-solarized .cm-operator {
	color: #6c71c4
}

.cm-s-solarized .cm-comment {
	color: #586e75;
	font-style: italic
}

.cm-s-solarized .cm-string {
	color: #859900
}

.cm-s-solarized .cm-string-2 {
	color: #b58900
}

.cm-s-solarized .cm-meta {
	color: #859900
}

.cm-s-solarized .cm-qualifier {
	color: #b58900
}

.cm-s-solarized .cm-builtin {
	color: #d33682
}

.cm-s-solarized .cm-bracket {
	color: #cb4b16
}

.cm-s-solarized .CodeMirror-matchingbracket {
	color: #859900
}

.cm-s-solarized .CodeMirror-nonmatchingbracket {
	color: #dc322f
}

.cm-s-solarized .cm-tag {
	color: #93a1a1
}

.cm-s-solarized .cm-attribute {
	color: #2aa198
}

.cm-s-solarized .cm-hr {
	color: transparent;
	border-top: 1px solid #586e75;
	display: block
}

.cm-s-solarized .cm-link {
	color: #93a1a1;
	cursor: pointer
}

.cm-s-solarized .cm-special {
	color: #6c71c4
}

.cm-s-solarized .cm-em {
	color: #999;
	text-decoration: underline;
	text-decoration-style: dotted
}

.cm-s-solarized .cm-strong {
	color: #eee
}

.cm-s-solarized .cm-error, .cm-s-solarized .cm-invalidchar {
	color: #586e75;
	border-bottom: 1px dotted #dc322f
}

.cm-s-solarized.cm-s-dark .CodeMirror-selected {
	background: #073642
}

.cm-s-solarized.cm-s-dark.CodeMirror ::selection {
	background: rgba(7, 54, 66, .99)
}

.cm-s-dark .CodeMirror-line > span::-moz-selection, .cm-s-dark .CodeMirror-line > span > span::-moz-selection, .cm-s-solarized.cm-s-dark .CodeMirror-line::-moz-selection {
	background: rgba(7, 54, 66, .99)
}

.cm-s-solarized.cm-s-light .CodeMirror-selected {
	background: #eee8d5
}

.cm-s-light .CodeMirror-line > span::selection, .cm-s-light .CodeMirror-line > span > span::selection, .cm-s-solarized.cm-s-light .CodeMirror-line::selection {
	background: #eee8d5
}

.cm-s-ligh .CodeMirror-line > span::-moz-selection, .cm-s-ligh .CodeMirror-line > span > span::-moz-selection, .cm-s-solarized.cm-s-light .CodeMirror-line::-moz-selection {
	background: #eee8d5
}

.cm-s-solarized.CodeMirror {
	-moz-box-shadow: inset 7px 0 12px -6px #000;
	-webkit-box-shadow: inset 7px 0 12px -6px #000;
	box-shadow: inset 7px 0 12px -6px #000
}

.cm-s-solarized .CodeMirror-gutters {
	border-right: 1px solid
}

.cm-s-solarized.cm-s-dark .CodeMirror-gutters {
	background-color: #002b36;
	border-color: #00232c
}

.cm-s-solarized.cm-s-dark .CodeMirror-linenumber {
	text-shadow: #021014 0 -1px
}

.cm-s-solarized.cm-s-light .CodeMirror-gutters {
	background-color: #fdf6e3;
	border-color: #eee8d5
}

.cm-s-solarized .CodeMirror-linenumber {
	color: #586e75;
	padding: 0 5px
}

.cm-s-solarized .CodeMirror-guttermarker-subtle {
	color: #586e75
}

.cm-s-solarized.cm-s-dark .CodeMirror-guttermarker {
	color: #ddd
}

.cm-s-solarized.cm-s-light .CodeMirror-guttermarker {
	color: #cb4b16
}

.cm-s-solarized .CodeMirror-gutter .CodeMirror-gutter-text {
	color: #586e75
}

.cm-s-solarized .CodeMirror-lines .CodeMirror-cursor {
	border-left: 1px solid #819090
}

.cm-s-solarized.cm-s-dark .CodeMirror-activeline-background {
	background: rgba(255, 255, 255, .1)
}

.cm-s-solarized.cm-s-light .CodeMirror-activeline-background {
	background: rgba(0, 0, 0, .1)
}

.cm-s-the-matrix.CodeMirror {
	background: #000;
	color: #0F0
}

.cm-s-the-matrix div.CodeMirror-selected {
	background: #2D2D2D !important
}

.cm-s-the-matrix .CodeMirror-line::selection, .cm-s-the-matrix .CodeMirror-line > span::selection, .cm-s-the-matrix .CodeMirror-line > span > span::selection {
	background: rgba(45, 45, 45, .99)
}

.cm-s-the-matrix .CodeMirror-line::-moz-selection, .cm-s-the-matrix .CodeMirror-line > span::-moz-selection, .cm-s-the-matrix .CodeMirror-line > span > span::-moz-selection {
	background: rgba(45, 45, 45, .99)
}

.cm-s-the-matrix .CodeMirror-gutters {
	background: #060;
	border-right: 2px solid #0F0
}

.cm-s-the-matrix .CodeMirror-guttermarker {
	color: #0f0
}

.cm-s-the-matrix .CodeMirror-guttermarker-subtle {
	color: #fff
}

.cm-s-the-matrix .CodeMirror-linenumber {
	color: #FFF
}

.cm-s-the-matrix .CodeMirror-cursor {
	border-left: 1px solid #0F0 !important
}

.cm-s-the-matrix span.cm-keyword {
	color: #008803;
	font-weight: 700
}

.cm-s-the-matrix span.cm-atom {
	color: #3FF
}

.cm-s-the-matrix span.cm-number {
	color: #FFB94F
}

.cm-s-the-matrix span.cm-def {
	color: #99C
}

.cm-s-the-matrix span.cm-variable {
	color: #F6C
}

.cm-s-the-matrix span.cm-variable-2 {
	color: #C6F
}

.cm-s-the-matrix span.cm-variable-3 {
	color: #96F
}

.cm-s-the-matrix span.cm-property {
	color: #62FFA0
}

.cm-s-the-matrix span.cm-operator {
	color: #999
}

.cm-s-the-matrix span.cm-comment {
	color: #CCC
}

.cm-s-the-matrix span.cm-string {
	color: #39C
}

.cm-s-the-matrix span.cm-meta {
	color: #C9F
}

.cm-s-the-matrix span.cm-qualifier {
	color: #FFF700
}

.cm-s-the-matrix span.cm-builtin {
	color: #30a
}

.cm-s-the-matrix span.cm-bracket {
	color: #cc7
}

.cm-s-the-matrix span.cm-tag {
	color: #FFBD40
}

.cm-s-the-matrix span.cm-attribute {
	color: #FFF700
}

.cm-s-the-matrix span.cm-error {
	color: red
}

.cm-s-the-matrix .CodeMirror-activeline-background {
	background: #040
}

.cm-s-tomorrow-night-bright.CodeMirror {
	background: #000;
	color: #eaeaea
}

.cm-s-tomorrow-night-bright div.CodeMirror-selected {
	background: #424242 !important
}

.cm-s-tomorrow-night-bright .CodeMirror-gutters {
	background: #000;
	border-right: 0
}

.cm-s-tomorrow-night-bright .CodeMirror-guttermarker {
	color: #e78c45
}

.cm-s-tomorrow-night-bright .CodeMirror-guttermarker-subtle {
	color: #777
}

.cm-s-tomorrow-night-bright .CodeMirror-linenumber {
	color: #424242
}

.cm-s-tomorrow-night-bright .CodeMirror-cursor {
	border-left: 1px solid #6A6A6A !important
}

.cm-s-tomorrow-night-bright span.cm-comment {
	color: #d27b53
}

.cm-s-tomorrow-night-bright span.cm-atom {
	color: #a16a94
}

.cm-s-tomorrow-night-bright span.cm-number {
	color: #a16a94
}

.cm-s-tomorrow-night-bright span.cm-attribute, .cm-s-tomorrow-night-bright span.cm-property {
	color: #9c9
}

.cm-s-tomorrow-night-bright span.cm-keyword {
	color: #d54e53
}

.cm-s-tomorrow-night-bright span.cm-string {
	color: #e7c547
}

.cm-s-tomorrow-night-bright span.cm-variable {
	color: #b9ca4a
}

.cm-s-tomorrow-night-bright span.cm-variable-2 {
	color: #7aa6da
}

.cm-s-tomorrow-night-bright span.cm-def {
	color: #e78c45
}

.cm-s-tomorrow-night-bright span.cm-bracket {
	color: #eaeaea
}

.cm-s-tomorrow-night-bright span.cm-tag {
	color: #d54e53
}

.cm-s-tomorrow-night-bright span.cm-link {
	color: #a16a94
}

.cm-s-tomorrow-night-bright span.cm-error {
	background: #d54e53;
	color: #6A6A6A
}

.cm-s-tomorrow-night-bright .CodeMirror-activeline-background {
	background: #2a2a2a !important
}

.cm-s-tomorrow-night-bright .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-s-tomorrow-night-eighties.CodeMirror {
	background: #000;
	color: #CCC
}

.cm-s-tomorrow-night-eighties div.CodeMirror-selected {
	background: #2D2D2D !important
}

.cm-s-tomorrow-night-eighties .CodeMirror-line::selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span::selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span > span::selection {
	background: rgba(45, 45, 45, .99)
}

.cm-s-tomorrow-night-eighties .CodeMirror-line::-moz-selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span::-moz-selection, .cm-s-tomorrow-night-eighties .CodeMirror-line > span > span::-moz-selection {
	background: rgba(45, 45, 45, .99)
}

.cm-s-tomorrow-night-eighties .CodeMirror-gutters {
	background: #000;
	border-right: 0
}

.cm-s-tomorrow-night-eighties .CodeMirror-guttermarker {
	color: #f2777a
}

.cm-s-tomorrow-night-eighties .CodeMirror-guttermarker-subtle {
	color: #777
}

.cm-s-tomorrow-night-eighties .CodeMirror-linenumber {
	color: #515151
}

.cm-s-tomorrow-night-eighties .CodeMirror-cursor {
	border-left: 1px solid #6A6A6A !important
}

.cm-s-tomorrow-night-eighties span.cm-comment {
	color: #d27b53
}

.cm-s-tomorrow-night-eighties span.cm-atom {
	color: #a16a94
}

.cm-s-tomorrow-night-eighties span.cm-number {
	color: #a16a94
}

.cm-s-tomorrow-night-eighties span.cm-attribute, .cm-s-tomorrow-night-eighties span.cm-property {
	color: #9c9
}

.cm-s-tomorrow-night-eighties span.cm-keyword {
	color: #f2777a
}

.cm-s-tomorrow-night-eighties span.cm-string {
	color: #fc6
}

.cm-s-tomorrow-night-eighties span.cm-variable {
	color: #9c9
}

.cm-s-tomorrow-night-eighties span.cm-variable-2 {
	color: #69c
}

.cm-s-tomorrow-night-eighties span.cm-def {
	color: #f99157
}

.cm-s-tomorrow-night-eighties span.cm-bracket {
	color: #CCC
}

.cm-s-tomorrow-night-eighties span.cm-tag {
	color: #f2777a
}

.cm-s-tomorrow-night-eighties span.cm-link {
	color: #a16a94
}

.cm-s-tomorrow-night-eighties span.cm-error {
	background: #f2777a;
	color: #6A6A6A
}

.cm-s-tomorrow-night-eighties .CodeMirror-activeline-background {
	background: #343600 !important
}

.cm-s-tomorrow-night-eighties .CodeMirror-matchingbracket {
	text-decoration: underline;
	color: #fff !important
}

.cm-quote {
	color: #090
}

.cm-negative {
	color: #d44
}

.cm-positive {
	color: #292
}

.cm-header, .cm-strong {
	font-weight: 700
}

.cm-em {
	font-style: italic
}

.cm-link {
	text-decoration: underline
}

.cm-strikethrough {
	text-decoration: line-through
}

.cm-header {
	color: #00f;
	font-weight: 700
}

.cm-atom {
	color: #219
}

.cm-attribute {
	color: #00c
}

.cm-bracket {
	color: #997
}

.cm-comment {
	color: #333
}

.cm-def {
	color: #00f
}

.cm-em {
	font-style: italic
}

.cm-error {
	color: red
}

.cm-hr {
	color: #999
}

.cm-invalidchar {
	color: red
}

.cm-keyword {
	font-weight: 700
}

.cm-link {
	color: #00c;
	text-decoration: underline
}

.cm-meta {
	color: #555
}

.cm-negative {
	color: #d44
}

.cm-positive {
	color: #292
}

.cm-qualifier {
	color: #555
}

.cm-strikethrough {
	text-decoration: line-through
}

.cm-string {
	color: #006400
}

.cm-string-2 {
	color: #f50
}

.cm-strong {
	font-weight: 700
}

.cm-tag {
	color: #170
}

.cm-variable {
	color: #8B2252
}

.cm-variable-2 {
	color: #05a
}

.cm-variable-3 {
	color: #085
}

.cm-s-default .cm-error {
	color: red
}

.cm-invalidchar {
	color: red
}

.cm-s-ttcn .cm-accessTypes, .cm-s-ttcn .cm-compareTypes {
	color: #27408B
}

.cm-s-ttcn .cm-cmipVerbs {
	color: #8B2252
}

.cm-s-ttcn .cm-modifier {
	color: #D2691E
}

.cm-s-ttcn .cm-status {
	color: #8B4545
}

.cm-s-ttcn .cm-storage {
	color: #A020F0
}

.cm-s-ttcn .cm-tags {
	color: #006400
}

.cm-s-ttcn .cm-externalCommands {
	color: #8B4545;
	font-weight: 700
}

.cm-s-ttcn .cm-fileNCtrlMaskOptions, .cm-s-ttcn .cm-sectionTitle {
	color: #2E8B57;
	font-weight: 700
}

.cm-s-ttcn .cm-booleanConsts, .cm-s-ttcn .cm-otherConsts, .cm-s-ttcn .cm-verdictConsts {
	color: #006400
}

.cm-s-ttcn .cm-configOps, .cm-s-ttcn .cm-functionOps, .cm-s-ttcn .cm-portOps, .cm-s-ttcn .cm-sutOps, .cm-s-ttcn .cm-timerOps, .cm-s-ttcn .cm-verdictOps {
	color: #00F
}

.cm-s-ttcn .cm-preprocessor, .cm-s-ttcn .cm-templateMatch, .cm-s-ttcn .cm-ttcn3Macros {
	color: #27408B
}

.cm-s-ttcn .cm-types {
	color: brown;
	font-weight: 700
}

.cm-s-ttcn .cm-visibilityModifiers {
	font-weight: 700
}

.cm-s-twilight.CodeMirror {
	background: #141414;
	color: #f7f7f7
}

.cm-s-twilight .CodeMirror-selected {
	background: #323232 !important
}

.cm-s-twilight .CodeMirror-line::selection, .cm-s-twilight .CodeMirror-line > span::selection, .cm-s-twilight .CodeMirror-line > span > span::selection {
	background: rgba(50, 50, 50, .99)
}

.cm-s-twilight .CodeMirror-line::-moz-selection, .cm-s-twilight .CodeMirror-line > span::-moz-selection, .cm-s-twilight .CodeMirror-line > span > span::-moz-selection {
	background: rgba(50, 50, 50, .99)
}

.cm-s-twilight .CodeMirror-gutters {
	background: #222;
	border-right: 1px solid #aaa
}

.cm-s-twilight .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-twilight .CodeMirror-guttermarker-subtle {
	color: #aaa
}

.cm-s-twilight .CodeMirror-linenumber {
	color: #aaa
}

.cm-s-twilight .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-twilight .cm-keyword {
	color: #f9ee98
}

.cm-s-twilight .cm-atom {
	color: #FC0
}

.cm-s-twilight .cm-number {
	color: #ca7841
}

.cm-s-twilight .cm-def {
	color: #8DA6CE
}

.cm-s-twilight span.cm-tag, .cm-s-twilight span.cm-variable-2 {
	color: #607392
}

.cm-s-twilight span.cm-def, .cm-s-twilight span.cm-variable-3 {
	color: #607392
}

.cm-s-twilight .cm-operator {
	color: #cda869
}

.cm-s-twilight .cm-comment {
	color: #777;
	font-style: italic;
	font-weight: 400
}

.cm-s-twilight .cm-string {
	color: #8f9d6a;
	font-style: italic
}

.cm-s-twilight .cm-string-2 {
	color: #bd6b18
}

.cm-s-twilight .cm-meta {
	background-color: #141414;
	color: #f7f7f7
}

.cm-s-twilight .cm-builtin {
	color: #cda869
}

.cm-s-twilight .cm-tag {
	color: #997643
}

.cm-s-twilight .cm-attribute {
	color: #d6bb6d
}

.cm-s-twilight .cm-header {
	color: #FF6400
}

.cm-s-twilight .cm-hr {
	color: #AEAEAE
}

.cm-s-twilight .cm-link {
	color: #ad9361;
	font-style: italic;
	text-decoration: none
}

.cm-s-twilight .cm-error {
	border-bottom: 1px solid red
}

.cm-s-twilight .CodeMirror-activeline-background {
	background: #27282E !important
}

.cm-s-twilight .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-vibrant-ink.CodeMirror {
	background: #000;
	color: #fff
}

.cm-s-vibrant-ink .CodeMirror-selected {
	background: #35493c !important
}

.cm-s-vibrant-ink .CodeMirror-line::selection, .cm-s-vibrant-ink .CodeMirror-line > span::selection, .cm-s-vibrant-ink .CodeMirror-line > span > span::selection {
	background: rgba(53, 73, 60, .99)
}

.cm-s-vibrant-ink .CodeMirror-line::-moz-selection, .cm-s-vibrant-ink .CodeMirror-line > span::-moz-selection, .cm-s-vibrant-ink .CodeMirror-line > span > span::-moz-selection {
	background: rgba(53, 73, 60, .99)
}

.cm-s-vibrant-ink .CodeMirror-gutters {
	background: #002240;
	border-right: 1px solid #aaa
}

.cm-s-vibrant-ink .CodeMirror-guttermarker {
	color: #fff
}

.cm-s-vibrant-ink .CodeMirror-guttermarker-subtle {
	color: #d0d0d0
}

.cm-s-vibrant-ink .CodeMirror-linenumber {
	color: #d0d0d0
}

.cm-s-vibrant-ink .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-vibrant-ink .cm-keyword {
	color: #CC7832
}

.cm-s-vibrant-ink .cm-atom {
	color: #FC0
}

.cm-s-vibrant-ink .cm-number {
	color: #FFEE98
}

.cm-s-vibrant-ink .cm-def {
	color: #8DA6CE
}

.cm-s-vibrant span.cm-tag, .cm-s-vibrant-ink span.cm-variable-2 {
	color: #FFC66D
}

.cm-s-vibrant span.cm-def, .cm-s-vibrant-ink span.cm-variable-3 {
	color: #FFC66D
}

.cm-s-vibrant-ink .cm-operator {
	color: #888
}

.cm-s-vibrant-ink .cm-comment {
	color: gray;
	font-weight: 700
}

.cm-s-vibrant-ink .cm-string {
	color: #A5C25C
}

.cm-s-vibrant-ink .cm-string-2 {
	color: red
}

.cm-s-vibrant-ink .cm-meta {
	color: #D8FA3C
}

.cm-s-vibrant-ink .cm-builtin {
	color: #8DA6CE
}

.cm-s-vibrant-ink .cm-tag {
	color: #8DA6CE
}

.cm-s-vibrant-ink .cm-attribute {
	color: #8DA6CE
}

.cm-s-vibrant-ink .cm-header {
	color: #FF6400
}

.cm-s-vibrant-ink .cm-hr {
	color: #AEAEAE
}

.cm-s-vibrant-ink .cm-link {
	color: #00f
}

.cm-s-vibrant-ink .cm-error {
	border-bottom: 1px solid red
}

.cm-s-vibrant-ink .CodeMirror-activeline-background {
	background: #27282E !important
}

.cm-s-vibrant-ink .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-xq-dark.CodeMirror {
	background: #0a001f;
	color: #f8f8f8
}

.cm-s-xq-dark .CodeMirror-selected {
	background: #27007A !important
}

.cm-s-xq-dark .CodeMirror-line::selection, .cm-s-xq-dark .CodeMirror-line > span::selection, .cm-s-xq-dark .CodeMirror-line > span > span::selection {
	background: rgba(39, 0, 122, .99)
}

.cm-s-xq-dark .CodeMirror-line::-moz-selection, .cm-s-xq-dark .CodeMirror-line > span::-moz-selection, .cm-s-xq-dark .CodeMirror-line > span > span::-moz-selection {
	background: rgba(39, 0, 122, .99)
}

.cm-s-xq-dark .CodeMirror-gutters {
	background: #0a001f;
	border-right: 1px solid #aaa
}

.cm-s-xq-dark .CodeMirror-guttermarker {
	color: #FFBD40
}

.cm-s-xq-dark .CodeMirror-guttermarker-subtle {
	color: #f8f8f8
}

.cm-s-xq-dark .CodeMirror-linenumber {
	color: #f8f8f8
}

.cm-s-xq-dark .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-xq-dark span.cm-keyword {
	color: #FFBD40
}

.cm-s-xq-dark span.cm-atom {
	color: #6C8CD5
}

.cm-s-xq-dark span.cm-number {
	color: #164
}

.cm-s-xq-dark span.cm-def {
	color: #FFF;
	text-decoration: underline
}

.cm-s-xq-dark span.cm-variable {
	color: #FFF
}

.cm-s-xq-dark span.cm-variable-2 {
	color: #EEE
}

.cm-s-xq-dark span.cm-variable-3 {
	color: #DDD
}

.cm-s-xq-dark span.cm-comment {
	color: gray
}

.cm-s-xq-dark span.cm-string {
	color: #9FEE00
}

.cm-s-xq-dark span.cm-meta {
	color: #ff0
}

.cm-s-xq-dark span.cm-qualifier {
	color: #FFF700
}

.cm-s-xq-dark span.cm-builtin {
	color: #30a
}

.cm-s-xq-dark span.cm-bracket {
	color: #cc7
}

.cm-s-xq-dark span.cm-tag {
	color: #FFBD40
}

.cm-s-xq-dark span.cm-attribute {
	color: #FFF700
}

.cm-s-xq-dark span.cm-error {
	color: red
}

.cm-s-xq-dark .CodeMirror-activeline-background {
	background: #27282E !important
}

.cm-s-xq-dark .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #fff !important
}

.cm-s-xq-light span.cm-keyword {
	line-height: 1em;
	font-weight: 700;
	color: #5A5CAD
}

.cm-s-xq-light span.cm-atom {
	color: #6C8CD5
}

.cm-s-xq-light span.cm-number {
	color: #164
}

.cm-s-xq-light span.cm-def {
	text-decoration: underline
}

.cm-s-xq-light span.cm-variable {
	color: #000
}

.cm-s-xq-light span.cm-variable-2 {
	color: #000
}

.cm-s-xq-light span.cm-variable-3 {
	color: #000
}

.cm-s-xq-light span.cm-comment {
	color: #0080FF;
	font-style: italic
}

.cm-s-xq-light span.cm-string {
	color: red
}

.cm-s-xq-light span.cm-meta {
	color: #ff0
}

.cm-s-xq-light span.cm-qualifier {
	color: grey
}

.cm-s-xq-light span.cm-builtin {
	color: #7EA656
}

.cm-s-xq-light span.cm-bracket {
	color: #cc7
}

.cm-s-xq-light span.cm-tag {
	color: #3F7F7F
}

.cm-s-xq-light span.cm-attribute {
	color: #7F007F
}

.cm-s-xq-light span.cm-error {
	color: red
}

.cm-s-xq-light .CodeMirror-activeline-background {
	background: #e8f2ff !important
}

.cm-s-xq-light .CodeMirror-matchingbracket {
	outline: 1px solid grey;
	color: #000 !important;
	background: #ff0
}

.cm-s-yeti.CodeMirror {
	background-color: #ECEAE8 !important;
	color: #d1c9c0 !important;
	border: none
}

.cm-s-yeti .CodeMirror-gutters {
	color: #adaba6;
	background-color: #E5E1DB;
	border: none
}

.cm-s-yeti .CodeMirror-cursor {
	border-left: solid thin #d1c9c0 !important
}

.cm-s-yeti .CodeMirror-linenumber {
	color: #adaba6
}

.cm-s-yeti.CodeMirror-focused .CodeMirror-selected {
	background: #DCD8D2
}

.cm-s-yeti .CodeMirror-line::selection, .cm-s-yeti .CodeMirror-line > span::selection, .cm-s-yeti .CodeMirror-line > span > span::selection {
	background: #DCD8D2
}

.cm-s-yeti .CodeMirror-line::-moz-selection, .cm-s-yeti .CodeMirror-line > span::-moz-selection, .cm-s-yeti .CodeMirror-line > span > span::-moz-selection {
	background: #DCD8D2
}

.cm-s-yeti span.cm-comment {
	color: #d4c8be
}

.cm-s-yeti span.cm-string, .cm-s-yeti span.cm-string-2 {
	color: #96c0d8
}

.cm-s-yeti span.cm-number {
	color: #a074c4
}

.cm-s-yeti span.cm-variable {
	color: #55b5db
}

.cm-s-yeti span.cm-variable-2 {
	color: #a074c4
}

.cm-s-yeti span.cm-def {
	color: #55b5db
}

.cm-s-yeti span.cm-operator {
	color: #9fb96e
}

.cm-s-yeti span.cm-keyword {
	color: #9fb96e
}

.cm-s-yeti span.cm-atom {
	color: #a074c4
}

.cm-s-yeti span.cm-meta {
	color: #96c0d8
}

.cm-s-yeti span.cm-tag {
	color: #96c0d8
}

.cm-s-yeti span.cm-attribute {
	color: #9fb96e
}

.cm-s-yeti span.cm-qualifier {
	color: #96c0d8
}

.cm-s-yeti span.cm-property {
	color: #a074c4
}

.cm-s-yeti span.cm-builtin {
	color: #a074c4
}

.cm-s-yeti span.cm-variable-3 {
	color: #96c0d8
}

.cm-s-yeti .CodeMirror-activeline-background {
	background: #E7E4E0 !important
}

.cm-s-yeti .CodeMirror-matchingbracket {
	text-decoration: underline
}

.cm-s-zenburn .CodeMirror-gutters {
	background: #3f3f3f !important
}

.CodeMirror-foldgutter-folded, .cm-s-zenburn .CodeMirror-foldgutter-open {
	color: #999
}

.cm-s-zenburn .CodeMirror-cursor {
	border-left: 1px solid #fff !important
}

.cm-s-zenburn {
	background-color: #3f3f3f;
	color: #dcdccc
}

.cm-s-zenburn span.cm-builtin {
	color: #dcdccc;
	font-weight: 700
}

.cm-s-zenburn span.cm-comment {
	color: #7f9f7f
}

.cm-s-zenburn span.cm-keyword {
	color: #f0dfaf;
	font-weight: 700
}

.cm-s-zenburn span.cm-atom {
	color: #bfebbf
}

.cm-s-zenburn span.cm-def {
	color: #dcdccc
}

.cm-s-zenburn span.cm-variable {
	color: #dfaf8f
}

.cm-s-zenburn span.cm-variable-2 {
	color: #dcdccc
}

.cm-s-zenburn span.cm-string {
	color: #cc9393
}

.cm-s-zenburn span.cm-string-2 {
	color: #cc9393
}

.cm-s-zenburn span.cm-number {
	color: #dcdccc
}

.cm-s-zenburn span.cm-tag {
	color: #93e0e3
}

.cm-s-zenburn span.cm-property {
	color: #dfaf8f
}

.cm-s-zenburn span.cm-attribute {
	color: #dfaf8f
}

.cm-s-zenburn span.cm-qualifier {
	color: #7cb8bb
}

.cm-s-zenburn span.cm-meta {
	color: #f0dfaf
}

.cm-s-zenburn span.cm-header {
	color: #f0efd0
}

.cm-s-zenburn span.cm-operator {
	color: #f0efd0
}

.cm-s-zenburn span.CodeMirror-matchingbracket {
	box-sizing: border-box;
	background: 0 0;
	border-bottom: 1px solid
}

.cm-s-zenburn span.CodeMirror-nonmatchingbracket {
	border-bottom: 1px solid;
	background: 0 0
}

.cm-s-zenburn .CodeMirror-activeline {
	background: #000
}

.cm-s-zenburn .CodeMirror-activeline-background {
	background: #000
}

.cm-s-zenburn .CodeMirror-selected {
	background: #545454
}

.cm-s-zenburn .CodeMirror-focused .CodeMirror-selected {
	background: #4f4f4f
}

/* login page */
/* animations */
[class*="uk-animation-"] {
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
}
/* alerts */
.uk-alert {
  border: none;
  background: #1976d2;
  color: #fff;
  text-shadow: none;
  padding-right: 32px;
  position: relative;
  display: block;
}
.uk-alert-success {
  background: #8bc34a !important;
}
.uk-alert-danger {
  background: #e53935 !important;
}
.uk-alert-warning {
  background: #ffa000 !important;
}
.uk-alert-info {
  background: #0097a7 !important;
}
.uk-alert-large {
  padding: 24px 32px 24px 24px;
}
.uk-alert-close {
  position: absolute;
  top: 10px;
  right: 8px;
  float: none !important;
  margin: 0 !important;
}
.uk-alert-close:after {
  color: #fff !important;
}
/* badges */
.uk-badge {
  background: #0097a7;
  padding: 2px 6px;
  border: none;
  border-radius: 2px;
  text-shadow: none;
  font-size: 11px;
  line-height: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.uk-badge a {
  color: #fff !important;
}
.uk-badge-default {
  background: #9e9e9e;
  color: #fff;
}
.uk-badge-primary {
  background: #2196f3;
}
.uk-badge-danger {
  background: #e53935;
}
.uk-badge-warning {
  background: #ffa000;
}
.uk-badge-success {
  background: #7cb342;
}
.uk-badge-muted {
  background: #bdbdbd;
}
.uk-badge-notification {
  border-radius: 20px;
}
.uk-badge-large {
  font-size: 13px;
  line-height: 16px;
  padding: 4px 8px;
}
.uk-badge.inline-label {
  vertical-align: 1px;
  margin-left: 4px;
}
.uk-badge-outline {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #212121;
  padding-bottom: 0;
  line-height: 16px;
}
.uk-badge-inline {
  vertical-align: 2px;
}
.uk-badge-group {
  overflow: hidden;
}
.uk-badge-group .uk-badge {
  float: left;
  display: block;
  margin: 0 4px 4px 0;
}
/* buttons */
.uk-button {
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* comments */
.uk-comment-list > li + li {
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  margin-top: 16px !important;
}
.uk-comment-list .uk-comment + ul {
  margin: 8px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .uk-comment-list .uk-comment + ul {
    padding-left: 48px;
  }
}
.uk-comment-header {
  padding: 16px 8px 8px;
  border: none;
  background: none;
  margin-bottom: 0;
}
.uk-comment-title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
/* dialog modals */
.uk-modal {
  z-index: 1304;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 250ms ease-out;
  overflow: auto !important;
}
.uk-modal.uk-modal-no-backdrop {
  background: transparent;
}
.uk-modal-dialog {
  border-radius: 2px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  padding: 24px;
  display: block !important;
  -webkit-animation: none !important;
          animation: none !important;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease-in;
  transform: scale(0);
}
.uk-modal-dialog-blank {
  padding: 0;
  background: none;
  box-shadow: none;
}
.uk-open .uk-modal-dialog {
  transform: scale(1);
}
.uk-modal-dialog .uk-modal-header {
  background: none;
  border-bottom: none;
  margin: 0 -24px 24px;
  padding: 0 32px 0 24px;
  overflow: hidden;
}
.uk-modal-dialog .uk-modal-header .uk-modal-title {
  margin: 0;
  font: 500 18px / 28px "Roboto", sans-serif;
}
.uk-modal-dialog .uk-modal-header .uk-modal-title span {
  font-size: 16px;
  display: block;
  color: #727272;
}
.uk-modal-dialog .uk-modal-header .material-icons {
  font-size: 24px;
  vertical-align: -4px;
  cursor: default;
}
.uk-modal-dialog .uk-modal-footer {
  margin: 16px -16px -16px;
  padding: 16px;
  background: #fff;
  border-top: none;
}
.uk-modal-dialog .uk-modal-footer:before,
.uk-modal-dialog .uk-modal-footer:after {
  content: " ";
  display: table;
}
.uk-modal-dialog .uk-modal-footer:after {
  clear: both;
}
.uk-modal-dialog .uk-modal-footer:before,
.uk-modal-dialog .uk-modal-footer:after {
  content: " ";
  display: table;
}
.uk-modal-dialog .uk-modal-footer:after {
  clear: both;
}
.uk-modal-dialog .uk-modal-footer .md-icon-btn {
  margin-top: 2px;
}
.uk-modal-dialog .uk-modal-caption {
  bottom: 16px;
  margin: 0 32px;
}
.uk-modal-dialog > .uk-close:first-child {
  top: 8px;
  right: 8px;
  position: absolute;
  float: none;
  margin: 0;
}
.uk-modal-dialog-lightbox {
  padding: 0;
}
.uk-modal-dialog-lightbox > .uk-close:first-child {
  top: -11px;
  right: -11px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border: none;
  z-index: 10;
}
.uk-modal-dialog .uk-overflow-container {
  margin: 16px 0;
}
.uk-modal-card-fullscreen {
  overflow: hidden !important;
}
.uk-modal-card-fullscreen .uk-modal-close {
  float: left;
  margin: 8px 8px 0 0;
  display: block;
}
.uk-modal-card-fullscreen > .uk-modal-dialog > .md-card > .md-card-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 10;
}
.uk-modal-card-fullscreen > .uk-modal-dialog > .md-card > .md-card-content {
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.uk-modal .uk-margin.uk-modal-content {
  margin-bottom: 0;
}
.uk-modal.uk-modal-dialog-replace .uk-modal-content {
  font-size: 18px;
}
.uk-modal-spinner {
  -webkit-animation: uk-rotate 2s infinite linear;
          animation: uk-rotate 2s infinite linear;
  margin-left: -12px;
  margin-top: -17px;
  left: 50%;
  right: auto;
}
.uk-modal .uk-modal-aside {
  padding: 16px 32px 32px;
}
/* dropdowns */
.uk-dropdown {
  transform: scale(0.25, 0);
  opacity: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: none !important;
          animation: none !important;
  transform-origin: 50% 0 !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  border-radius: 2px;
}
.uk-dropdown.uk-dropdown-xlarge {
  width: 360px;
}
@media only screen and (max-width: 479px) {
  .uk-dropdown.uk-dropdown-xlarge {
    width: 260px;
  }
}
.uk-dropdown.uk-dropdown-large {
  width: 260px;
}
.uk-dropdown.uk-dropdown-small {
  width: 160px;
}
.uk-dropdown > ul > li > a {
  font-size: 14px;
  color: #212121;
}
.uk-dropdown > ul > li > a:hover {
  background: rgba(0, 0, 0, 0.085);
}
.uk-dropdown > ul > li.uk-active > a {
  background: rgba(0, 0, 0, 0.085);
}
.uk-dropdown > ul > li.padding_sm {
  padding: 2px 4px;
}
.uk-dropdown > ul > li.padding_md {
  padding: 4px 8px;
}
.uk-dropdown.dropdown-modal {
  z-index: 1310;
}
.uk-dropdown.dropdown-fs {
  z-index: 9999;
}
.uk-dropdown.uk-dropdown-scrollable {
  -webkit-overflow-scrolling: touch;
}
[data-uk-dropdown*="top-"] .uk-dropdown {
  transform-origin: 50% 100% !important;
}
[data-uk-dropdown*="left-"] .uk-dropdown {
  transform-origin: 100% 50% !important;
}
[data-uk-dropdown*="right-"] .uk-dropdown {
  transform-origin: 0 50% !important;
}
[data-uk-dropdown*='justify'] {
  position: static !important;
}
[data-uk-dropdown*='justify'] [class*="uk-dropdown-width"] {
  left: 0 !important;
  width: 100% !important;
  min-width: inherit !important;
  margin-left: 0 !important;
}
.uk-dropdown-active {
  display: block !important;
}
.uk-dropdown-shown {
  transform: scale(1, 1);
  opacity: 1;
}
.uk-nav-dropdown > li > a:focus,
.uk-nav-dropdown > li > a:hover {
  text-shadow: none;
  box-shadow: none;
  color: #212121;
  background: rgba(153, 153, 153, 0.2);
}
/* forms */
fieldset {
  border: none;
  margin: 0;
}
fieldset + * {
  margin-top: 15px;
}
.uk-form input:not([type]),
.uk-form input[type=color],
.uk-form input[type=date],
.uk-form input[type=datetime-local],
.uk-form input[type=email],
.uk-form input[type=month],
.uk-form input[type=number],
.uk-form input[type=password],
.uk-form input[type=search],
.uk-form input[type=tel],
.uk-form input[type=text],
.uk-form input[type=time],
.uk-form input[type=url],
.uk-form input[type=week],
.uk-form select,
.uk-form textarea {
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: border 200ms ease-in;
  resize: none;
}
.uk-form input:not([type]):focus,
.uk-form input[type=color]:focus,
.uk-form input[type=date]:focus,
.uk-form input[type=datetime-local]:focus,
.uk-form input[type=email]:focus,
.uk-form input[type=month]:focus,
.uk-form input[type=number]:focus,
.uk-form input[type=password]:focus,
.uk-form input[type=search]:focus,
.uk-form input[type=tel]:focus,
.uk-form input[type=text]:focus,
.uk-form input[type=time]:focus,
.uk-form input[type=url]:focus,
.uk-form input[type=week]:focus,
.uk-form select:focus,
.uk-form textarea:focus {
  background: none;
  border-color: #2196f3;
}
.uk-form textarea {
  transition: border-color 200ms ease-in, height 280ms ease-in;
}
.uk-form-row {
  transition: all 200ms ease-out;
}
.uk-form-row + .uk-form-row {
  margin-top: 24px;
}
.uk-form-stacked .uk-form-label {
  font-weight: 500;
  font-size: 13px;
  display: block;
  padding-bottom: 8px;
}
.uk-form-stacked .uk-form-label + p {
  margin-top: 0;
}
.uk-form-help-block {
  display: block;
  font-size: 12px;
  color: #727272;
  padding: 4px 0 0 0;
  font-style: italic;
}
.uk-form-width-large,
.uk-form-width-medium,
.uk-form-width-small,
.uk-form-width-mini {
  max-width: 100%;
}
/* grid */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 24px;
}
.uk-grid.uk-grid-small + .uk-grid-small,
.uk-grid.uk-grid-small > * > .uk-panel + .uk-panel,
.uk-grid.uk-grid-small > .uk-grid-margin {
  margin-top: 10px;
}
.uk-grid-divider.uk-grid-collapse {
  margin-left: 0;
  margin-right: 0;
}
.uk-grid-divider.uk-grid-collapse > * {
  padding-left: 0;
  padding-right: 0;
}
.uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1) + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-2-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-3-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-4-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-5-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-6-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-7-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-8-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-9-']:nth-child + .uk-flex-item-1 {
  border-left: 1px solid #ddd;
}
@media only screen and (min-width: 768px) {
  .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1) + .uk-flex-item-1 {
    border-left: 1px solid #ddd;
  }
}
@media only screen and (min-width: 960px) {
  .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1) + .uk-flex-item-1 {
    border-left: 1px solid #ddd;
  }
}
.uk-height-viewport {
  min-height: 200px;
}
/* icons */
[class*="uk-icon-"] {
  color: #727272;
}
/* input groups */
.uk-input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  /*&-icon {
        font-size: 20px !important;
        vertical-align: -3px;
    }*/
}
.uk-input-group > input[type=text] {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.uk-input-group-addon,
.uk-input-group > input[type=text] {
  display: table-cell;
}
.uk-input-group-addon {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
  padding: 0 16px;
  font-size: 16px;
  min-width: 22px;
}
.uk-input-group > .md-input-wrapper {
  display: inline-block;
}
.uk-input-group.uk-input-group-danger .uk-input-group-addon i {
  color: #e53935 !important;
}
.uk-input-group.uk-input-group-danger + .parsley-errors-list {
  margin-left: 58px;
}
.uk-input-group.uk-input-group-success .uk-input-group-addon i {
  color: #7cb342 !important;
}
/* list */
.uk-list-hover li:hover {
  background: rgba(0, 0, 0, 0.1);
}
/* nav */
.uk-nav-header {
  color: #727272;
  font-weight: normal;
}
.uk-nav-divider {
  box-shadow: none;
  border-top-color: rgba(0, 0, 0, 0.12);
}
.uk-nav-divider + .uk-nav-header {
  margin-top: 0;
}
.uk-nav-label {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 8px;
}
.uk-nav-side > li > a {
  font-weight: 500;
  line-height: 22px;
}
.uk-nav-side > li > a > i {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: -7px;
}
.uk-nav-side > li > a:hover,
.uk-nav-side > li > a:focus {
  background: transparent;
  box-shadow: none;
}
.uk-nav-side > li.uk-active > a {
  background: transparent;
  box-shadow: none;
}
.uk-nav-side > li.uk-active > a,
.uk-nav-side > li.uk-active > a > i {
  color: #7cb342;
}
.uk-nav-side > li li a {
  text-shadow: none;
  color: #212121;
}
.uk-nav-side ul.uk-nav-sub {
  padding-top: 0;
  padding-left: 24px;
}
/* pagination */
.uk-pagination {
  margin: 0;
}
.uk-pagination > li {
  outline: none !important;
}
.uk-pagination > li > a,
.uk-pagination > li > span {
  border: none;
  padding: 4px 8px;
  min-width: 32px;
  line-height: 24px;
  height: 32px;
  box-sizing: border-box;
  text-shadow: none;
  color: #212121;
  border-radius: 4px;
}
.uk-pagination > li > a [class*="uk-icon-"],
.uk-pagination > li > span [class*="uk-icon-"] {
  font-size: 16px;
}
.uk-pagination > li > a {
  background: transparent;
}
.uk-pagination > li > a:hover {
  background: #e1efd2;
}
.uk-pagination > li.uk-active > a,
.uk-pagination > li.uk-active > span {
  background: #7cb342;
}
.uk-pagination > li.uk-active > a,
.uk-pagination > li.uk-active > span,
.uk-pagination > li.uk-active > a:hover,
.uk-pagination > li.uk-active > span:hover {
  color: #fff;
}
.uk-pagination > li.uk-disabled > a,
.uk-pagination > li.uk-disabled > span {
  border: none;
  text-shadow: none;
  background: transparent !important;
  color: #aaa;
  cursor: default;
}
/* panels */
.uk-panel-box {
  border-radius: 2px;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}
.uk-panel-box .uk-panel-teaser {
  border-radius: 2px 2px 0 0;
}
/* tables */
.uk-table td {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.uk-table th {
  border-bottom: 1px #444;
}
.uk-table-nowrap td,
.uk-table-nowrap th {
  white-space: nowrap;
}
.uk-table-align-vertical td,
.uk-table-align-vertical th {
  vertical-align: middle;
}
.uk-table tr th.small_col,
.uk-table tr td.small_col {
  width: 1%;
}
.uk-table tr.row_checked td {
  background: #e3f2fd;
}
.uk-table .uk-table {
  margin-bottom: 0;
}
.uk-table .uk-table tr:last-child td {
  border-bottom: none;
}
.uk-table-no-border td {
  border-bottom-color: transparent;
}
/* sticky */
.uk-sticky-placeholder .uk-active {
  z-index: 1094;
}
/* subnav */
.uk-subnav-pill > * > * {
  color: #212121;
}
.uk-subnav-pill > .uk-active > * {
  background: #7cb342;
}
/* tables */
.uk-table thead th {
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
.uk-table thead th,
.uk-table tfoot td,
.uk-table tfoot th {
  font-style: normal;
  font-weight: 400;
  color: #727272;
  font-size: 14px;
}
.uk-table td {
  border-bottom-color: #e0e0e0;
}
.uk-table tfoot td,
.uk-table tfoot th {
  border-top: 2px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: rgba(0, 0, 0, 0.085);
}
.uk-table-hover tbody tr:hover {
  background: #e3f2fd;
}
/* thumbnails */
.uk-thumbnail {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.12);
}
.uk-thumbnail-caption {
  padding: 4px 4px 0;
  line-height: 20px;
  color: #727272;
  font-size: 12px;
}
/* utilities */
.uk-text-small {
  font-size: 12px;
}
.uk-text-muted {
  color: #757575 !important;
}
.uk-text-primary {
  color: #2196f3 !important;
}
.uk-text-danger {
  color: #e53935 !important;
}
.uk-text-success {
  color: #7cb342 !important;
}
.uk-text-warning {
  color: #ffa000 !important;
}
.uk-margin-bottom {
  margin-bottom: 16px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 8px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 32px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 48px !important;
}
.uk-margin-medium-top {
  margin-top: 32px !important;
}
.uk-margin-large-top {
  margin-top: 48px !important;
}
.uk-close {
  font-size: 18px;
  opacity: 1;
}
.uk-close:hover,
.uk-close:focus {
  opacity: 1;
}
.uk-close:after {
  opacity: 1 !important;
  color: #727272;
  content: '\e5cd';
  font-family: "Material Icons";
}
.uk-float-none {
  float: none !important;
}
/* ------------ Components ------------ */
/* accordion */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `uk-accordion-title`
 ========================================================================== */
.uk-accordion-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #f5f5f5;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
}
/* Sub-object: `uk-accordion-content`
 ========================================================================== */
.uk-accordion-content {
  padding: 0 15px 15px 15px;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
.uk-accordion-title {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 0;
  border: none;
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 24px 8px 16px;
  position: relative;
}
.uk-accordion-title:after {
  content: '\e313';
  font-family: "Material Icons";
  font-size: 18px;
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  color: #727272;
  transition: transform 280ms;
}
.uk-accordion-title.uk-active:after {
  transform: rotate(-180deg);
}
.uk-accordion-title-primary {
  background: #2196f3;
  color: #fff;
}
.uk-accordion-title-primary:after {
  color: #fff;
}
.uk-accordion-title-danger {
  background: #e53935;
  color: #fff;
}
.uk-accordion-title-danger:after {
  color: #fff;
}
.uk-accordion-title-success {
  background: #7cb342;
  color: #fff;
}
.uk-accordion-title-success:after {
  color: #fff;
}
.uk-accordion-title-warning {
  background: #ffa000;
  color: #fff;
}
.uk-accordion-title-warning:after {
  color: #fff;
}
.uk-accordion-content {
  padding: 16px;
}
.uk-accordion-alt .uk-accordion-title {
  background: #fff;
  margin: 0;
  padding: 16px 24px 16px 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-accordion-alt .uk-accordion-title:first-child {
  border-top: none;
}
.uk-accordion-alt .uk-accordion-title:after {
  color: #2196f3;
  content: '\e145';
  right: auto;
  left: 16px;
  top: 16px;
}
.uk-accordion-alt .uk-accordion-title.uk-active:after {
  transform: rotate(-180deg);
  content: '\e15b';
}
.uk-accordion-alt .uk-accordion-content {
  padding: 24px;
}
/* dotnav */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-dotnav {
  display: flex;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 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-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav:before,
.uk-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-dotnav:after {
  clear: both;
}
.uk-dotnav > * {
  float: left;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background: rgba(50, 50, 50, 0.4);
  transform: scale(1.3);
}
/* Modifier: `uk-dotnav-contrast`
 ========================================================================== */
.uk-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-dotnav-contrast > * > :hover,
.uk-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > .uk-active > * {
  background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.uk-dotnav-vertical {
  flex-direction: column;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav-vertical > * {
  float: none;
}
/* progress */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Clearing
 * 2. Vertical alignment if text is used
 */
.uk-progress {
  box-sizing: border-box;
  height: 20px;
  margin-bottom: 15px;
  background: #f5f5f5;
  /* 1 */
  overflow: hidden;
  /* 2 */
  line-height: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-progress {
  margin-top: 15px;
}
/* Sub-object: `uk-progress-bar`
 ========================================================================== */
/*
 * 1. Transition
 * 2. Needed for text
 */
.uk-progress-bar {
  width: 0;
  height: 100%;
  background: #00a8e6;
  float: left;
  /* 1 */
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/* Size modifiers
 ========================================================================== */
/* Mini */
.uk-progress-mini {
  height: 6px;
}
/* Small */
.uk-progress-small {
  height: 12px;
}
/* Color modifiers
 ========================================================================== */
.uk-progress-success .uk-progress-bar {
  background-color: #8cc14c;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #faa732;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #da314b;
}
/* Modifier: `uk-progress-striped`
 ========================================================================== */
.uk-progress-striped .uk-progress-bar {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}
/*
 * Animation
 */
.uk-progress-striped.uk-active .uk-progress-bar {
  -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  animation: uk-progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
/* Size modifiers
     ========================================================================== */
.uk-progress-mini,
.uk-progress-small {
  border-radius: 500px;
}
.uk-progress {
  box-shadow: none;
  border-radius: 2px;
}
.uk-progress-bar {
  background: #009688;
}
.uk-progress-success .uk-progress-bar {
  background-color: #7cb342;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #e53935;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #ffa000;
}
/* htmleditor */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: HTML editor
 ========================================================================== */
/* Sub-object `uk-htmleditor-navbar`
 ========================================================================== */
.uk-htmleditor-navbar {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
/*
 * 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: 41px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444;
  font-size: 11px;
  cursor: pointer;
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  text-shadow: 0 1px 0 #fff;
}
/*
 * 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: #fafafa;
  color: #444;
  outline: none;
  /* 2 */
  position: relative;
  z-index: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* OnClick */
.uk-htmleditor-navbar-nav > li > a:active {
  background-color: #eee;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
}
/* Active */
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background-color: #fafafa;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* 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;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
/*
 * 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: 41px;
  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;
}
/*
     * Apply same `border-radius` as `uk-htmleditor-navbar`
     */
.uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-navbar-flip`
     */
/* Collapse border */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav > li > a {
  margin-left: 0;
  margin-right: -1px;
}
/* Apply same `border-radius` as `uk-htmleditor-navbar` */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 0;
}
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:last-child > li:last-child > a {
  border-top-right-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-fullscreen`
     */
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  border: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar-nav > li > a {
  border-radius: 0 !important;
}
.uk-htmleditor-navbar {
  border-radius: 0;
  background: #f9f9f9;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.uk-htmleditor-navbar-nav > li > a {
  border: none;
  border-radius: 0 !important;
  height: 38px;
}
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background: #ebebeb;
}
.uk-htmleditor-navbar-nav > li:hover > a,
.uk-htmleditor-navbar-nav > li > a:focus {
  background: #ebebeb;
}
.uk-htmleditor-content {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-htmleditor-fullscreen {
  z-index: 1154;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  top: 38px;
}
/* upload */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form file
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-file {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 2. Expand height and required for the cursor
 */
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  font-size: 500px;
}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Upload
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
.uk-file-upload {
  width: 100%;
  padding: 32px 16px;
  box-sizing: border-box;
  background: #f5f5f5;
  text-align: center;
  transition: all 200ms ease-in;
}
.uk-file-upload p {
  margin: 0;
}
.uk-file-upload.uk-dragover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
div.uk-form-file {
  padding: 3px 2px;
}
div.uk-form-file.md-btn {
  padding: 2px 12px;
}
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  left: 0;
  font-size: 500px;
}
.uk-form-file input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}
/* form select */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.uk-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}
/* datepicker */
.uk-datepicker {
  z-index: 1094;
  width: auto;
  padding: 0;
}
.uk-datepicker-nav {
  margin-bottom: 15px;
  text-align: center;
  line-height: 20px;
  background: #009688;
  padding: 10px 0;
}
.uk-datepicker-nav a,
.uk-datepicker-nav a:hover {
  text-decoration: none;
  color: #fff;
}
.uk-datepicker-nav .uk-form-select {
  font: 400 16px / 22px "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 4px;
}
.uk-datepicker-nav .uk-form-select + .uk-form-select {
  margin-left: 2px;
}
.uk-datepicker-previous {
  float: left;
  margin-left: 8px;
}
.uk-datepicker-previous:after {
  content: "\f053";
}
.uk-datepicker-next {
  float: right;
  margin-right: 8px;
}
.uk-datepicker-next:after {
  content: "\f054";
}
.uk-datepicker-previous:after,
.uk-datepicker-next:after {
  width: 20px;
  font-family: FontAwesome;
}
.uk-datepicker.dp-top {
  transform-origin: 50% 100% !important;
}
.uk-datepicker-table {
  width: 100%;
}
.uk-datepicker-table th,
.uk-datepicker-table td {
  padding: 2px;
  font: 400 13px / 15px "Roboto", sans-serif;
}
.uk-datepicker-table th {
  color: #727272;
  font-size: 12px;
  text-transform: uppercase;
}
.uk-datepicker-table a {
  display: block;
  width: 30px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: #212121;
}
.uk-datepicker-table a:hover {
  background-color: rgba(0, 0, 0, 0.085);
  color: #212121;
  outline: none;
}
.uk-datepicker-table a.uk-active {
  background-color: #009688;
  color: #fff;
}
a.uk-datepicker-table-muted {
  color: #999;
}
/* autocomplete, timepicker */
.uk-autocomplete .uk-dropdown {
  display: block;
  max-height: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 0;
  border: none;
  transform: scale(0.25, 0);
  opacity: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: none !important;
          animation: none !important;
  transform-origin: 0 0;
}
.uk-autocomplete.uk-open .uk-dropdown {
  transform: scale(1);
  opacity: 1;
  max-height: 210px;
}
[data-uk-autocomplete] .uk-dropdown {
  width: 100%;
  box-sizing: border-box;
}
[data-uk-autocomplete] .uk-dropdown .uk-nav {
  margin: 0;
}
/* password toggle */
.uk-form-password-toggle {
  position: absolute;
  right: 8px;
  top: 16px;
  color: #727272;
}
.uk-form-password-toggle:hover {
  color: #727272;
}
/* nestable */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Nestable
 ========================================================================== */
.uk-nestable {
  padding: 0;
  list-style: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-nestable a,
.uk-nestable img {
  -webkit-touch-callout: none;
}
/* Sub-object `uk-nestable-list`
 ========================================================================== */
.uk-nestable-list {
  margin: 0;
  padding-left: 40px;
  list-style: none;
}
/* Sub-modifier `uk-nestable-item`
 ========================================================================== */
/*
 * 1. Deactivate browser touch actions in IE11
 */
.uk-nestable-item {
  /* 1 */
  touch-action: none;
}
.uk-nestable-item + .uk-nestable-item {
  margin-top: 10px;
}
.uk-nestable-list:not(.uk-nestable-dragged) > .uk-nestable-item:first-child {
  margin-top: 10px;
}
/* Sub-modifier `uk-nestable-dragged`
 ========================================================================== */
/*
 * 1. Reset style
 */
.uk-nestable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
  /* 1 */
  padding-left: 0;
}
/* Sub-modifier `uk-nestable-placeholder`
 ========================================================================== */
.uk-nestable-placeholder {
  position: relative;
}
.uk-nestable-placeholder > * {
  opacity: 0;
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px dashed #ddd;
  opacity: 1;
}
/* Empty List
 ========================================================================== */
.uk-nestable-empty {
  min-height: 30px;
}
/* Sub-object `uk-nestable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-nestable-handle {
  touch-action: none;
}
/* Hover */
.uk-nestable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-nestable-moving`
 ========================================================================== */
.uk-nestable-moving,
.uk-nestable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-nestable-moving iframe {
  pointer-events: none;
}
/* [data-nestable-action='toggle']
 ========================================================================== */
/*
 * 1. Makes text unselectable. Happens if double clicked by mistake
 */
[data-nestable-action='toggle'] {
  cursor: pointer;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Sub-object `.uk-nestable-toggle`
 ========================================================================== */
.uk-nestable-toggle {
  display: inline-block;
  visibility: hidden;
}
.uk-nestable-toggle:after {
  content: "\f147";
  font-family: FontAwesome;
}
.uk-parent > :not(.uk-nestable-list) .uk-nestable-toggle {
  visibility: visible;
}
/*
 * Collapsed
 */
.uk-collapsed .uk-nestable-list {
  display: none;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\f196";
}
/* Sub-object `uk-nestable-panel`
 ========================================================================== */
.uk-nestable-panel {
  padding: 5px;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 0 #fff;
}
.uk-nestable-handle {
  margin-right: 16px;
}
.uk-nestable-panel {
  padding: 8px 16px;
  background: #fff;
  border-radius: 4px;
  border: none;
  text-shadow: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: none;
  background: rgba(0, 0, 0, 0.085);
  opacity: 1;
}
.uk-nestable-toggle {
  font-size: 18px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 8px;
  display: none;
}
.uk-nestable-toggle:after {
  vertical-align: top;
  content: '\e316';
  font-family: "Material Icons";
}
.uk-parent > .uk-nestable-panel .uk-nestable-toggle {
  display: inline-block;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\e313";
}
/* notify */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Notify
 ========================================================================== */
/*
 * Message container for positioning
 */
.uk-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `uk-notify-message`
========================================================================== */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  border: 1px solid #444;
  border-radius: 4px;
}
/* Close in notify
 ========================================================================== */
.uk-notify-message > .uk-close {
  visibility: hidden;
  float: right;
}
.uk-notify-message:hover > .uk-close {
  visibility: visible;
}
/* Modifier: `uk-notify-message-primary`
 ========================================================================== */
.uk-notify-message-primary {
  background: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
/* Modifier: `uk-notify-message-success`
 ========================================================================== */
.uk-notify-message-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `uk-notify-message-warning`
 ========================================================================== */
.uk-notify-message-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `uk-notify-message-danger`
 ========================================================================== */
.uk-notify-message-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}
.uk-notify {
  z-index: 1114;
  width: 400px;
  top: 56px;
  max-width: 100%;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  margin-left: -200px;
}
.uk-notify-top-left {
  left: 24px;
}
.uk-notify-top-right {
  right: 24px;
}
.uk-notify-bottom-left {
  left: 24px;
}
.uk-notify-bottom-right {
  right: 24px;
}
.uk-notify-bottom-center,
.uk-notify-bottom-left,
.uk-notify-bottom-right {
  top: auto;
  bottom: 8px;
}
.uk-notify-message {
  background: #323232;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 18px;
  border: none;
}
.uk-notify .uk-close {
  display: none;
}
.uk-notify .notify-action {
  float: right;
  text-transform: uppercase;
  color: #8bc34a;
  margin-left: 16px;
}
.uk-notify .notify-action:hover {
  color: #689f38;
}
.uk-notify .notify-content {
  overflow: hidden;
}
.uk-notify-message-info {
  background: #1976d2;
  color: #fff;
}
.uk-notify-message-success {
  background: #7cb342;
}
.uk-notify-message-warning {
  background: #ffa000;
}
.uk-notify-message-danger {
  background: #e53935;
}
.uk-notify-message-info,
.uk-notify-message-success,
.uk-notify-message-warning,
.uk-notify-message-danger {
  color: #fff;
}
.uk-notify-message-info .notify-action,
.uk-notify-message-success .notify-action,
.uk-notify-message-warning .notify-action,
.uk-notify-message-danger .notify-action {
  color: #fff;
}
.uk-notify-message-info .notify-action:hover,
.uk-notify-message-success .notify-action:hover,
.uk-notify-message-warning .notify-action:hover,
.uk-notify-message-danger .notify-action:hover {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .uk-notify-top-center,
  .uk-notify-top-left,
  .uk-notify-top-right,
  .uk-notify-bottom-center,
  .uk-notify-bottom-left,
  .uk-notify-bottom-right {
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
  }
  .uk-notify-top-center > .uk-notify-message,
  .uk-notify-top-left > .uk-notify-message,
  .uk-notify-top-right > .uk-notify-message,
  .uk-notify-bottom-center > .uk-notify-message,
  .uk-notify-bottom-left > .uk-notify-message,
  .uk-notify-bottom-right > .uk-notify-message {
    border-radius: 0;
    padding: 16px 32px;
  }
  .uk-notify-top-center,
  .uk-notify-top-left,
  .uk-notify-top-right {
    top: 0;
    bottom: auto;
  }
  .uk-notify-bottom-center,
  .uk-notify-bottom-left,
  .uk-notify-bottom-right {
    top: auto;
    bottom: -10px;
  }
}
@media only screen and (min-width: 960px) {
  .sidebar_main_active .uk-notify-top-left,
  .sidebar_main_open .uk-notify-top-left {
    left: 256px;
  }
  .sidebar_main_active .uk-notify-top-center,
  .sidebar_main_open .uk-notify-top-center {
    margin-left: -80px;
  }
  .sidebar_main_active .uk-notify-bottom-left,
  .sidebar_main_open .uk-notify-bottom-left {
    left: 256px;
  }
  .sidebar_main_active .uk-notify-bottom-center,
  .sidebar_main_open .uk-notify-bottom-center {
    margin-left: -80px;
  }
}
/* slideshow */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.uk-slideshow {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  touch-action: pan-y;
}
/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.uk-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}
/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.uk-slideshow > .uk-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}
/*
 * Hide default images which is only relevant to keep existing proportions
 */
.uk-slideshow > li > img {
  visibility: hidden;
}
/*
 * Pointer for controls
 */
[data-uk-slideshow-slide] {
  cursor: pointer;
}
/* Modifier: `uk-slideshow-fullscreen`
 ========================================================================== */
.uk-slideshow-fullscreen,
.uk-slideshow-fullscreen > li {
  height: 100vh;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-slideshow-fade-in {
  -webkit-animation: uk-fade 0.5s linear;
  animation: uk-fade 0.5s linear;
}
.uk-slideshow-fade-out {
  -webkit-animation: uk-fade 0.5s linear reverse;
  animation: uk-fade 0.5s linear reverse;
}
/*
 * Scroll
 */
.uk-slideshow-scroll-forward-in {
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
  animation: uk-slide-right 0.5s ease-in-out;
}
.uk-slideshow-scroll-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-scroll-backward-in {
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
  animation: uk-slide-left 0.5s ease-in-out;
}
.uk-slideshow-scroll-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
/*
 * Scale
 */
.uk-slideshow-scale-out {
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
}
/*
 * Swipe
 */
.uk-slideshow-swipe-forward-in {
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  animation: uk-slide-left-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-backward-in {
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  animation: uk-slide-right-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-forward-in:before,
.uk-slideshow-swipe-backward-in:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  animation: uk-fade 0.5s ease-in-out reverse;
}
/* slider */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * RTL Compatibility
 */
[data-uk-slider] {
  direction: ltr;
}
html[dir="rtl"] .uk-slider > * {
  direction: rtl;
}
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.uk-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 */
.uk-slider:not(.uk-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Sub-object item
 * 1. Position items above each other
 */
.uk-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}
/*
 * Dragged
 */
.uk-slider:not(.uk-drag) {
  transition: transform 200ms linear;
}
/*
 * 1. Makes text unselectable
 */
.uk-slider.uk-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-slider a,
.uk-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.uk-slider img {
  pointer-events: none;
}
/* Modifier: `uk-slider-fullscreen`
 ========================================================================== */
.uk-slider-fullscreen,
.uk-slider-fullscreen > li {
  height: 100vh;
}
.uk-slider .uk-active .md-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.uk-slider-center li {
  opacity: 0.4;
}
.uk-slider-center li.uk-active {
  opacity: 1;
}
/* slidenav */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.uk-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  /* 3 */
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.uk-slidenav:hover,
.uk-slidenav:focus {
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  /* 4 */
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}
/* Active */
.uk-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}
/*
 * Icons
 */
.uk-slidenav-previous:before {
  content: "\f104";
  font-family: FontAwesome;
}
.uk-slidenav-next:before {
  content: "\f105";
  font-family: FontAwesome;
}
/* Sub-object: `uk-slidenav-position`
 ========================================================================== */
/*
 * Create position context
 */
.uk-slidenav-position {
  position: relative;
}
/*
 * Center vertically
 */
.uk-slidenav-position .uk-slidenav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}
.uk-slidenav-position:hover .uk-slidenav {
  display: block;
}
.uk-slidenav-position .uk-slidenav-previous {
  left: 20px;
}
.uk-slidenav-position .uk-slidenav-next {
  right: 20px;
}
/* Modifier: `uk-slidenav-contrast`
 ========================================================================== */
.uk-slidenav-contrast {
  color: rgba(255, 255, 255, 0.5);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-slidenav-contrast:hover,
.uk-slidenav-contrast:focus {
  color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-slidenav-contrast:active {
  color: rgba(255, 255, 255, 0.9);
}
/* tooltips */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 5px 8px;
  /* 4 */
  background: #333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.uk-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333;
}
/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.uk-tooltip-top:after,
.uk-tooltip-top-left:after,
.uk-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333;
}
/*
 * Bottom
 */
.uk-tooltip-bottom:after,
.uk-tooltip-bottom-left:after,
.uk-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333;
}
/*
 * Top/Bottom center
 */
.uk-tooltip-top:after,
.uk-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}
/*
 * Top/Bottom left
 */
.uk-tooltip-top-left:after,
.uk-tooltip-bottom-left:after {
  left: 10px;
}
/*
 * Top/Bottom right
 */
.uk-tooltip-top-right:after,
.uk-tooltip-bottom-right:after {
  right: 10px;
}
/*
 * Left
 */
.uk-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
/*
 * Right
 */
.uk-tooltip-right:after {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: #333;
}
.uk-tooltip {
  background: #424242;
  color: #fff;
  font-size: 13px;
  padding: 3px 16px;
  line-height: 22px;
  text-shadow: none;
  min-width: 80px;
  text-align: center;
  z-index: 1304;
  opacity: 0;
}
.uk-tooltip .uk-tooltip-inner {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.uk-tooltip:after {
  display: none !important;
}
.uk-tooltip.long-text {
  text-align: left;
}
.uk-tooltip.long-text .uk-tooltip-inner {
  white-space: normal;
  overflow: visible;
  line-height: 18px;
  padding: 4px 0;
}
.uk-tooltip-small {
  transform: scale(0.85);
}
.uk-tooltip-top {
  z-index: 9999;
}
.touch .uk-tooltip {
  opacity: 1;
}
/* tabs */
.uk-tab {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.uk-sticky-placeholder .uk-tab {
  background: #fff;
  padding-top: 8px;
}
.uk-tab > li {
  margin-bottom: 0;
  margin-top: 0 ;
  z-index: 1;
}
.uk-tab > li > a {
  font-size: 13px;
  text-transform: uppercase;
  color: #212121;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 !important;
  font-weight: 500;
  min-width: 100px;
  max-width: 100%;
  text-align: center;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px !important;
  margin: 0 !important;
  box-sizing: border-box;
  position: relative;
  top: 1px;
  text-shadow: none;
}
.uk-tab > li > a:hover,
.uk-tab > li > a:focus {
  background: none;
  color: #212121;
  border-bottom-color: #b2dbfb;
}
.uk-tab > li.uk-active > a {
  background: transparent !important;
  border-bottom-color: #2196f3;
}
.uk-tab > li.uk-disabled > a,
.uk-tab > li.uk-disabled > a:hover,
.uk-tab > li.uk-disabled > a:focus {
  color: #aaa;
}
.uk-tab-bottom li {
  margin-top: 0;
}
.uk-tab-bottom li > a {
  border-top: 2px solid transparent;
  border-bottom: none;
  top: auto;
  bottom: 1px;
}
.uk-tab-bottom li > a:hover,
.uk-tab-bottom li > a:focus {
  border-top-color: #b2dbfb;
}
.uk-tab-bottom li.uk-active > a {
  border-top-color: #2196f3;
}
.uk-tab-left {
  border-bottom: none;
}
.uk-tab-left li > a {
  border-right: 2px solid transparent;
  border-bottom: none;
  text-align: right;
  top: auto;
  bottom: auto;
}
.uk-tab-left li > a:hover,
.uk-tab-left li > a:focus {
  border-right-color: #b2dbfb;
}
.uk-tab-left li.uk-active > a {
  border-right-color: #2196f3;
}
.uk-tab-right {
  border-bottom: none;
}
.uk-tab-right li > a {
  border-left: 2px solid transparent;
  border-bottom: none;
  text-align: left;
  top: auto;
  bottom: auto;
}
.uk-tab-right li > a:hover,
.uk-tab-right li > a:focus {
  border-left-color: #b2dbfb;
}
.uk-tab-right li.uk-active > a {
  border-left-color: #2196f3;
}
.uk-tab-responsive li a {
  border: none !important;
}
.uk-tab-responsive > a:before {
  content: '\e5d2';
  font-family: "Material Icons";
  color: #727272;
  margin-right: 8px;
  vertical-align: -4px;
  font-size: 18px;
}
.uk-tab-icons > li > a {
  min-width: 64px;
}
.uk-tab-icons > li > a > .material-icons {
  font-size: 24px;
}
.uk-tab-double-header {
  margin: 10px 24px 0 !important;
}
.uk-tab-double-header > li > a {
  color: #fff;
  border-bottom: 4px solid transparent;
}
.uk-tab-double-header > li > a:hover,
.uk-tab-double-header > li > a:focus {
  color: #fff;
  border-bottom-color: #39a1f4;
}
.uk-tab-double-header > li.uk-active > a {
  color: #fff;
  border-bottom-color: #7cb342;
}
.uk-tab-double-header > li.uk-tab-responsive > a {
  border-bottom: none;
  padding-bottom: 5px !important;
}
.uk-tab-double-header > li.uk-tab-responsive > a:before {
  color: #fff;
}
/* text truncate */
.uk-text-truncate {
  display: block;
}
/* sortable */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable > * {
  touch-action: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-sortable a,
.uk-sortable img {
  -webkit-touch-callout: none;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Sub-modifier `uk-sortable-dragged`
 ========================================================================== */
.uk-sortable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
}
/* Sub-modifier `uk-sortable-placeholder`
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
}
/* Empty List
 ========================================================================== */
.uk-sortable-empty {
  min-height: 30px;
}
/* Sub-object `uk-sortable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable-handle {
  touch-action: none;
}
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-sortable-moving`
 ========================================================================== */
.uk-sortable-moving,
.uk-sortable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
  pointer-events: none;
}
.uk-sortable > * {
  touch-action: auto;
}
.uk-sortable.sortable-handler > * {
  cursor: move;
}
.uk-sortable .sortable-handler {
  cursor: move;
}
.uk-sortable-single {
  min-height: 0;
}
.uk-switcher {
  overflow: hidden;
}
/*
* add extra Uikit grid sizes
*
* usage:
* set custom breakpoint (1480px) and name ("xlarge-x")
* @media (min-width: 1480px) {
*  .add-grid-sizes(xlarge-x);
* }
*/
@media (min-width: 1480px) {
  /* Whole */
  .uk-width-xLarge-1-1,
  .uk-grid-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,
  .uk-grid-width-xLarge-1-2 > *,
  .uk-grid-width-xLarge-2-4 > *,
  .uk-grid-width-xLarge-3-6 > *,
  .uk-grid-width-xLarge-5-10 > * {
    width: 50%;
  }
  /* Thirds */
  .uk-width-xLarge-1-3,
  .uk-width-xLarge-2-6,
  .uk-grid-width-xLarge-1-3 > *,
  .uk-grid-width-xLarge-2-6 > * {
    width: 33.333%;
  }
  .uk-width-xLarge-2-3,
  .uk-width-xLarge-4-6,
  .uk-grid-width-xLarge-2-3 > *,
  .uk-grid-width-xLarge-4-6 > * {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-xLarge-1-4,
  .uk-grid-width-xLarge-1-4 > * {
    width: 25%;
  }
  .uk-width-xLarge-3-4,
  .uk-grid-width-xLarge-3-4 > * {
    width: 75%;
  }
  /* Fifths */
  .uk-width-xLarge-1-5,
  .uk-width-xLarge-2-10,
  .uk-grid-width-xLarge-1-5 > *,
  .uk-grid-width-xLarge-2-10 > * {
    width: 20%;
  }
  .uk-width-xLarge-2-5,
  .uk-width-xLarge-4-10,
  .uk-grid-width-xLarge-2-5 > *,
  .uk-grid-width-xLarge-4-10 > * {
    width: 40%;
  }
  .uk-width-xLarge-3-5,
  .uk-width-xLarge-6-10,
  .uk-grid-width-xLarge-3-5 > *,
  .uk-grid-width-xLarge-6-10 > * {
    width: 60%;
  }
  .uk-width-xLarge-4-5,
  .uk-width-xLarge-8-10,
  .uk-grid-width-xLarge-4-5 > *,
  .uk-grid-width-xLarge-8-10 > * {
    width: 80%;
  }
  /* Sixths */
  .uk-width-xLarge-1-6,
  .uk-grid-width-xLarge-1-6 > * {
    width: 16.666%;
  }
  .uk-width-xLarge-5-6,
  .uk-grid-width-xLarge-5-6 > * {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-xLarge-1-10,
  .uk-grid-width-xLarge-1-10 > * {
    width: 10%;
  }
  .uk-width-xLarge-3-10,
  .uk-grid-width-xLarge-3-10 > * {
    width: 30%;
  }
  .uk-width-xLarge-7-10,
  .uk-grid-width-xLarge-7-10 > * {
    width: 70%;
  }
  .uk-width-xLarge-9-10,
  .uk-grid-width-xLarge-9-10 > * {
    width: 90%;
  }
}
/* ie9 fixes */
.lte-ie9 *[class*="uk-animation-"] {
  opacity: 1 !important;
}
/* bg colors */
.md-bg-cyan {
  background-color: #00acc1 !important;
  color: #fff;
}
.md-bg-light-green {
  background-color: #7cb342 !important;
  color: #fff;
}
.md-bg-grey {
  background-color: #616161 !important;
  color: #fff;
}
.md-bg-red {
  background-color: #d32f2f !important;
  color: #fff;
}
.md-bg-light-blue {
  background-color: #0288d1 !important;
  color: #fff;
}
.md-bg-teal {
  background-color: #00897b !important;
  color: #fff;
}
.md-bg-purple {
  background-color: #8e24aa !important;
  color: #fff;
}
/* buttons */
.md-btn {
  background: #fff;
  border: none;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  min-height: 31px;
  min-width: 70px;
  padding: 2px 16px;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  transition: all 280ms ease;
  color: #212121;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  font: 500 14px / 31px "Roboto", sans-serif !important;
}
.md-btn:hover,
.md-btn:focus,
.md-btn:active,
.uk-button-dropdown.uk-open > .md-btn {
  background: #fff;
  outline: none;
  text-decoration: none;
  color: #212121;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.md-btn:active,
.md-btn.uk-active,
.uk-button-dropdown.uk-open > .md-btn {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.md-btn.uk-active {
  position: relative;
}
.md-btn.uk-active:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: '';
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}
.md-btn-flat {
  box-shadow: none !important;
  background: none;
}
.md-btn-flat:hover,
.md-btn-flat:focus {
  background: rgba(153, 153, 153, 0.2);
}
.md-btn-flat:active,
.md-btn-flat.uk-active {
  background: rgba(153, 153, 153, 0.4);
}
.md-btn-flat-danger,
.md-btn-flat-danger:hover,
.md-btn-flat-danger:focus,
.md-btn-flat-danger:active,
.md-btn-flat-danger .uk-active {
  color: #e53935;
}
.md-btn-flat-danger:hover,
.md-btn-flat-danger:focus,
.md-btn-flat-danger:active {
  background: #fceaea;
}
.md-btn-flat-danger.uk-active {
  color: #cd1e1a;
  background: #f6bebd;
}
.md-btn-flat-primary,
.md-btn-flat-primary:hover,
.md-btn-flat-primary:focus,
.md-btn-flat-primary:active,
.md-btn-flat-primary.uk-active {
  color: #1976d2;
}
.md-btn-flat-primary:hover,
.md-btn-flat-primary:focus,
.md-btn-flat-primary:active {
  background: #e3f2fd;
}
.md-btn-flat-primary.uk-active {
  color: #0c7cd5;
  background: #b2dbfb;
}
.md-btn-flat-success,
.md-btn-flat-success:hover,
.md-btn-flat-success:focus,
.md-btn-flat-success:active,
.md-btn-flat-success.uk-active {
  color: #7cb342;
}
.md-btn-flat-success:hover,
.md-btn-flat-success:focus,
.md-btn-flat-success:active {
  background: #e1efd2;
}
.md-btn-flat-success.uk-active {
  color: #628e34;
  background: #c8e1ad;
}
.md-btn-flat-warning,
.md-btn-flat-warning:hover,
.md-btn-flat-warning:focus,
.md-btn-flat-warning:active,
.md-btn-flat-warning.uk-active {
  color: #ffa000;
}
.md-btn-flat-warning:hover,
.md-btn-flat-warning:focus,
.md-btn-flat-warning:active {
  background: #ffeccc;
}
.md-btn-flat-warning.uk-active {
  color: #cc8000;
  background: #ffd999;
}
.md-btn-flat.disabled {
  background: none !important;
}
.md-btn-danger,
.md-btn-danger:hover,
.md-btn-danger:focus,
.md-btn-danger:active,
.md-btn-danger.uk-active {
  background: #e53935;
}
.md-btn-primary,
.md-btn-primary:hover,
.md-btn-primary:focus,
.md-btn-primary:active,
.md-btn-primary.uk-active {
  background: #2196f3;
}
.md-btn-success,
.md-btn-success:hover,
.md-btn-success:focus,
.md-btn-success:active,
.md-btn-success.uk-active {
  background: #7cb342;
}
.md-btn-warning,
.md-btn-warning:hover,
.md-btn-warning:focus,
.md-btn-warning:active,
.md-btn-warning.uk-active {
  background: #ffa000;
}
.md-btn-danger,
.md-btn-primary,
.md-btn-success,
.md-btn-warning,
.md-btn-danger:hover,
.md-btn-primary:hover,
.md-btn-success:hover,
.md-btn-warning:hover,
.md-btn-danger:focus,
.md-btn-primary:focus,
.md-btn-success:focus,
.md-btn-warning:focus,
.md-btn-danger:active,
.md-btn-primary:active,
.md-btn-success:active,
.md-btn-warning:active,
.md-btn-danger.uk-active,
.md-btn-primary.uk-active,
.md-btn-success.uk-active,
.md-btn-warning.uk-active,
.md-btn-danger > i,
.md-btn-primary > i,
.md-btn-success > i,
.md-btn-warning > i {
  color: #fff;
}
.md-btn.disabled,
.md-btn.disabled:hover,
.md-btn.disabled:focus,
.md-btn.disabled:active,
.md-btn.disabled.uk-active {
  color: #a8a8a8;
  background: #eaeaea;
  box-shadow: none !important;
  cursor: default;
  pointer-events: none;
}
.md-btn > i.material-icons {
  margin-top: 5px;
  font-size: 18px;
}
.md-btn-mini {
  line-height: 21px !important;
  min-width: 12px;
  font-size: 10px !important;
  min-height: 24px;
}
.md-btn-small {
  line-height: 27px !important;
  min-width: 14px;
  font-size: 11px !important;
}
.md-btn-large {
  line-height: 42px !important;
  font-size: 16px !important;
}
.md-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.md-btn + .md-btn {
  margin-left: 8px;
}
.md-btn-block {
  width: 100%;
}
.md-btn-block + .md-btn-block {
  margin-left: 0;
  margin-top: 12px;
}
.md-btn + .md-btn-group {
  margin-left: 16px;
}
.md-btn-facebook {
  background: #3b5998 !important;
}
.md-btn-twitter {
  background: #00aced !important;
}
.md-btn-gplus {
  background: #dd4b39 !important;
}
.md-btn-facebook,
.md-btn-twitter,
.md-btn-gplus,
.md-btn-facebook > i,
.md-btn-twitter > i,
.md-btn-gplus > i {
  color: #fff !important;
}
.md-btn-icon > i.no_margin {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.md-btn-icon-large,
.md-btn-icon.md-btn-large {
  min-width: 72px;
}
.md-btn-icon-large > i,
.md-btn-icon.md-btn-large > i {
  font-size: 24px;
  margin-right: 12px;
  vertical-align: -3px;
}
.md-btn-icon-default,
.md-btn-icon {
  min-width: 64px;
}
.md-btn-icon-default > i,
.md-btn-icon > i {
  font-size: 18px;
  margin-right: 8px;
  vertical-align: -2px;
}
.md-btn-icon-small,
.md-btn-icon.md-btn-small {
  min-width: 48px;
}
.md-btn-icon-small > i,
.md-btn-icon.md-btn-small > i {
  font-size: 16px;
  margin-right: 6px;
  vertical-align: -2px;
}
.md-btn-icon-mini,
.md-btn-icon.md-btn-mini {
  min-width: 36px;
}
.md-btn-icon-mini > i,
.md-btn-icon.md-btn-mini > i {
  font-size: 16px;
  margin-right: 4px;
  vertical-align: -2px;
}
.md-fab {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: #727272;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.md-fab:hover,
.md-fab:focus,
.md-fab:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.md-fab > i {
  font-size: 36px;
  line-height: 64px;
  height: inherit;
  width: inherit;
  position: absolute;
  left: 0;
  top: 0;
  color: #727272;
}
.md-fab.md-fab-accent {
  background: #7cb342;
}
.md-fab.md-fab-accent > i {
  color: #fff;
}
.md-fab.md-fab-success {
  background: #7cb342;
}
.md-fab.md-fab-success > i {
  color: #fff;
}
.md-fab.md-fab-danger {
  background: #e53935;
}
.md-fab.md-fab-danger > i {
  color: #fff;
}
.md-fab.md-fab-primary {
  background: #2196f3;
}
.md-fab.md-fab-primary > i {
  color: #fff;
}
.md-fab.md-fab-warning {
  background: #ffa000;
}
.md-fab.md-fab-warning > i {
  color: #fff;
}
.md-fab.md-fab-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.md-fab.md-fab-small > i {
  line-height: 48px;
  height: inherit;
  width: inherit;
  font-size: 24px;
}
.md-fab-speed-dial .md-fab-action-close {
  display: none;
}
.md-fab-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1004;
  transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 767px) {
  .md-fab-wrapper {
    bottom: 20px;
    right: 20px;
  }
}
.md-fab-wrapper > .md-fab + .md-fab {
  margin-top: 16px;
}
.md-fab-wrapper.md-fab-in-card {
  position: absolute;
}
.md-fab-speed-dial .md-fab-wrapper-small {
  position: absolute;
  bottom: 80px;
  right: 8px;
  min-height: 48px;
  width: 48px;
  z-index: -1;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  right: 0;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(2) {
  bottom: 64px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(3) {
  bottom: 128px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(4) {
  bottom: 192px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(5) {
  bottom: 256px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(6) {
  bottom: 320px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(7) {
  bottom: 384px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(8) {
  bottom: 448px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small {
  position: absolute;
  right: 80px;
  bottom: 8px;
  min-height: 48px;
  width: 48px;
  z-index: -1;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  right: 0;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(2) {
  right: 64px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(3) {
  right: 128px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(4) {
  right: 192px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(5) {
  right: 256px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(6) {
  right: 320px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(7) {
  right: 384px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(8) {
  right: 448px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab {
  display: inline-block;
  vertical-align: bottom;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small {
  display: none;
  min-height: 48px;
  width: auto;
  z-index: -1;
  white-space: nowrap;
  padding-bottom: 8px;
  vertical-align: bottom;
  position: static;
  right: auto;
  bottom: auto;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small {
  position: static;
  right: auto;
  display: inline-block;
  vertical-align: bottom;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small + .md-fab-small {
  margin-left: 16px;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small:last-child {
  margin-right: 16px;
}
.md-fab-speed-dial-horizontal[data-fab-hover].md-fab-over .md-fab-wrapper-small {
  display: inline-block;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small {
  margin-left: 8px;
  position: static;
  display: none;
  bottom: auto;
  right: auto;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small {
  position: static;
  bottom: auto;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small + .md-fab-small {
  margin-top: 16px;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small:last-child {
  margin-bottom: 16px;
}
.md-fab-speed-dial[data-fab-hover].md-fab-over .md-fab-wrapper-small {
  display: block;
}
.md-fab-toolbar {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.md-fab-toolbar > i {
  cursor: pointer;
}
.md-fab-toolbar-actions {
  visibility: hidden;
  white-space: nowrap;
  padding: 0 16px;
  overflow: hidden;
  box-sizing: border-box;
}
.md-fab-toolbar-actions > a,
.md-fab-toolbar-actions > button {
  display: block;
  float: left;
  opacity: 0;
  margin: 0 0 0 16px;
  height: 64px;
  width: 48px;
  box-sizing: border-box;
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.md-fab-toolbar-actions > a:first-child,
.md-fab-toolbar-actions > button:first-child {
  margin-left: 0;
}
.md-fab-toolbar-actions .material-icons {
  font-size: 36px;
  line-height: 64px;
}
.md-fab-toolbar.md-fab-animated {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}
.md-fab-toolbar.md-fab-animated > i {
  display: none;
}
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions {
  visibility: visible;
}
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > a,
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > button {
  opacity: 1;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a,
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button {
  height: 48px;
  width: 36px;
  padding: 0;
  margin: 0 0 0 8px;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a:first-child,
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button:first-child {
  margin-left: 0;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions .material-icons {
  font-size: 24px;
  line-height: 48px;
  height: inherit;
}
.md-fab-sheet {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.md-fab-sheet > i {
  cursor: pointer;
}
.md-fab-sheet-actions {
  visibility: hidden;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  padding: 4px 0;
}
.md-fab-sheet-actions > a {
  display: block;
  opacity: 0;
  padding: 4px 16px;
  box-sizing: border-box;
  font: 400 16px / 32px "Roboto", sans-serif;
  text-align: left;
}
.md-fab-sheet-actions > a,
.md-fab-sheet-actions > a:hover {
  color: #212121;
}
.md-fab-sheet-actions .material-icons {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: -6px;
}
.md-fab-sheet.md-fab-animated {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}
.md-fab-sheet.md-fab-animated > i {
  display: none;
}
.md-fab-sheet.md-fab-active .md-fab-sheet-actions {
  visibility: visible;
}
.md-fab-sheet.md-fab-active .md-fab-sheet-actions > a {
  opacity: 1;
}
.sidebar_secondary_active .md-fab-wrapper {
  margin-right: 264px;
}
@media only screen and (max-width: 767px) {
  .sidebar_secondary_active .md-fab-wrapper {
    margin-right: 280px;
  }
}
.md-toggle-group .md-toggle-button {
  border-width: 0 0 2px;
  border-style: solid;
  border-color: transparent;
  background: none;
  line-height: 30px;
  min-width: 42px;
  text-align: center;
  padding: 0 8px;
  vertical-align: middle;
  cursor: pointer;
}
.md-toggle-group .md-toggle-button.md-toggle-active {
  border-bottom-color: #212121;
}
.md-toggle-group.md-toggle-group-small .md-toggle-button {
  font-size: 11px;
  line-height: 24px;
  min-width: 16px;
  padding: 0 6px;
}
.md-btn-group {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.md-btn-group .md-btn {
  vertical-align: top;
  margin-left: 0 !important;
}
.md-btn-group .md-btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.md-btn-group .md-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.md-btn-group .md-btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* cards */
.md-card {
  background: #fff;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none;
}
.md-card + .md-card,
.md-card + .uk-grid,
.uk-grid + .md-card {
  margin-top: 25px;
}
.md-card .full_width_in_card {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.085);
}
.md-card .md-card-toolbar {
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
.md-card .md-card-toolbar:before,
.md-card .md-card-toolbar:after {
  content: " ";
  display: table;
}
.md-card .md-card-toolbar:after {
  clear: both;
}
.md-card .md-card-toolbar:before,
.md-card .md-card-toolbar:after {
  content: " ";
  display: table;
}
.md-card .md-card-toolbar:after {
  clear: both;
}
.md-card .md-card-toolbar-heading-text {
  font: 500 14px / 50px "Roboto", sans-serif;
  color: #212121;
  margin: 0;
  float: left;
  overflow: hidden;
  height: 48px;
}
.md-card .md-card-toolbar-heading-text.large {
  font-size: 18px;
  font-weight: 400;
}
.md-card .md-card-toolbar .md-toggle-group {
  float: left;
  margin: 8px 0 0 16px;
}
.md-card .md-card-toolbar .md-toggle-group.md-toggle-group-small {
  margin-top: 10px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions {
  float: right;
  padding-top: 10px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .uk-open .md-card-toolbar-icon {
  background: rgba(0, 0, 0, 0.085);
  color: #212121;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .md-card-dropdown {
  display: inline-block;
  position: relative;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control {
  min-width: 220px;
  margin-top: -3px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-input {
  min-height: 30px;
  padding: 4px 8px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-dropdown {
  margin-top: -34px;
}
.md-card .md-card-toolbar .md-icon + .md-card-dropdown {
  margin-left: 4px;
}
.md-card .md-card-toolbar .md-card-fullscreen-deactivate {
  margin: 9px 8px 0 0;
}
.md-card .md-card-toolbar-input {
  border: none;
  font: 400 18px / 24px "Roboto", sans-serif;
  height: auto;
  background: none !important;
  padding: 12px 0;
  width: 50%;
  box-sizing: border-box;
}
.md-card .md-card-toolbar .uk-tab {
  margin-top: -2px;
  border-bottom: none;
}
.md-card .md-card-toolbar .uk-tab li > a {
  padding: 10px 8px !important;
}
.md-card .md-card-head {
  height: 160px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.md-card .md-card-head-menu {
  position: absolute;
  right: 8px;
  top: 8px;
}
.md-card .md-card-head-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin-top: 16px;
  border: 2px solid #fff;
  display: inline-block;
}
.md-card .md-card-head-text {
  padding: 8px 16px 16px;
  font: 500 16px / 22px "Roboto", sans-serif;
  color: #212121;
  margin: 0;
}
.md-card .md-card-head-text span:not(.listNavSelector) {
  display: block;
  font: 400 12px / 18px "Roboto", sans-serif;
  margin-top: -2px;
}
.md-card .md-card-head-text.text_dark {
  color: #212121 !important;
}
.md-card .md-card-head-text-over {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.md-card .md-card-head-subtext {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 0 16px;
  text-align: right;
  color: #fff;
}
.md-card .md-card-head-subtext span {
  font-size: 26px;
}
.md-card .md-card-head-icon {
  font-size: 48px;
  color: #fff;
  vertical-align: middle;
}
.md-card .md-card-head.head_background {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-bottom-color: transparent;
}
.md-card .md-card-head.head_background .md-card-head-text {
  color: #fff;
}
.md-card .md-card-head.head_background_top {
  background-repeat: no-repeat;
  background-position: center top;
}
.md-card .md-card-head.head_background_bottom {
  background-repeat: no-repeat;
  background-position: center bottom;
}
.md-card .md-card-head .head_chart {
  height: 100px;
  width: 100%;
  position: absolute !important;
  left: 0;
  top: 40px;
}
.md-card .md-card-head .fitVid_player {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.md-card .md-card-head-img {
  height: 100%;
  width: auto;
}
.md-card .md-card-head iframe {
  height: 160px;
}
.md-card .md-card-content {
  padding: 16px;
}
.md-card .md-card-content.padding-reset {
  padding: 0;
}
.md-card .md-card-content.large-padding {
  padding: 24px 35px;
}
.md-card .md-card-content.small-padding {
  padding: 8px;
}
.md-card.md-card-fullscreen-activate {
  cursor: pointer;
}
.md-card.md-card-fullscreen {
  position: fixed;
  z-index: 9998;
  overflow-x: hidden;
  cursor: default;
}
.md-card.md-card-fullscreen .md-card-fullscreen-activate {
  display: none;
}
.md-card.md-card-fullscreen .md-card-fullscreen-hide {
  display: none;
}
.md-card .md-card-fullscreen-content {
  display: none;
  padding: 16px;
}
.md-card-fullscreen-content-hidden .md-card .md-card-fullscreen-content {
  display: block;
  visibility: hidden;
  padding: 0;
}
.md-card.mdToolbar_fixed {
  overflow-y: hidden;
}
.md-card.mdToolbar_fixed > .md-card-toolbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.md-card.mdToolbar_fixed > .md-card-content {
  overflow-y: scroll;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 48px;
  bottom: 0;
}
.md-card.mdToolbar_fixed > .md-card-content .md-card-fullscreen-content {
  padding: 16px 0;
}
.md-card.md-card-overlay {
  overflow: hidden;
  padding-bottom: 54px;
}
.md-card.md-card-overlay .md-card-content {
  height: 142px;
  overflow: hidden;
  box-sizing: border-box;
}
.md-card.md-card-overlay .md-card-content.no_truncate {
  position: relative;
}
.md-card.md-card-overlay .md-card-content.no_truncate:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-image: linear-gradient(to top, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  display: block;
  content: '';
  z-index: 10;
}
.md-card.md-card-overlay .md-card-content > pre {
  margin-top: 0;
  max-height: 110px;
}
.md-card.md-card-overlay .md-card-content > pre > code {
  overflow: hidden;
}
.md-card.md-card-overlay .md-card-overlay-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 16px;
  margin-top: -54px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
  bottom: 0;
  background: #fff;
  z-index: 10;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.md-card.md-card-overlay .md-card-overlay-content p {
  margin: 0;
}
.md-card.md-card-overlay .md-card-overlay-content p + * {
  margin-top: 16px;
}
.md-card.md-card-overlay .md-card-overlay-content p + p {
  margin-top: 4px;
}
.md-card.md-card-overlay .md-card-overlay-header {
  padding: 12px 0;
}
.md-card.md-card-overlay .md-card-overlay-header:before,
.md-card.md-card-overlay .md-card-overlay-header:after {
  content: " ";
  display: table;
}
.md-card.md-card-overlay .md-card-overlay-header:after {
  clear: both;
}
.md-card.md-card-overlay .md-card-overlay-header:before,
.md-card.md-card-overlay .md-card-overlay-header:after {
  content: " ";
  display: table;
}
.md-card.md-card-overlay .md-card-overlay-header:after {
  clear: both;
}
.md-card.md-card-overlay .md-card-overlay-header h3,
.md-card.md-card-overlay .md-card-overlay-header h4 {
  margin: 0;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding-right: 32px;
  box-sizing: border-box;
}
.md-card.md-card-overlay .md-card-overlay-header h3 {
  font: 400 16px / 30px "Roboto", sans-serif;
}
.md-card.md-card-overlay .md-card-overlay-header h4 {
  font: 500 14px / 30px "Roboto", sans-serif;
}
.md-card.md-card-overlay .md-card-overlay-header .md-icon {
  position: absolute;
  right: 12px;
  top: 11px;
}
.md-card.md-card-overlay-active .md-card-overlay-content {
  top: -1px;
  margin-top: 0;
}
.md-card.md-card-hover {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
}
.md-card.md-card-hover:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.uk-sortable-dragged .md-card {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.uk-sortable-dragged .md-card canvas {
  margin: 0 auto;
  display: block;
}
.md-card .heading_list {
  padding: 0;
}
.md-card-primary,
.md-card-success,
.md-card-danger,
.md-card-warning {
  border-left: 4px solid transparent;
}
.md-card-primary {
  border-left-color: #2196f3;
}
.md-card-success {
  border-left-color: #7cb342;
}
.md-card-danger {
  border-left-color: #e53935;
}
.md-card-warning {
  border-left-color: #ffa000;
}
.md-card-horizontal {
  position: relative;
  min-height: 200px;
}
.md-card-horizontal:before,
.md-card-horizontal:after {
  content: " ";
  display: table;
}
.md-card-horizontal:after {
  clear: both;
}
.md-card-horizontal:before,
.md-card-horizontal:after {
  content: " ";
  display: table;
}
.md-card-horizontal:after {
  clear: both;
}
.md-card-horizontal-grid {
  min-height: auto;
}
.md-card-horizontal .md-card-head {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
  width: 200px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .md-card-horizontal .md-card-head {
    width: 140px;
  }
}
.md-card-horizontal .md-card-head-grid {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.md-card-horizontal .md-card-head-menu {
  right: auto;
  left: 8px;
}
.md-card-horizontal .md-card-content {
  margin-left: 200px;
}
@media only screen and (max-width: 767px) {
  .md-card-horizontal .md-card-content {
    margin-left: 140px;
  }
}
.md-card-horizontal .md-card-content-grid {
  padding: 16px;
}
.md-expand,
.md-expand-group > * {
  opacity: 0;
}
.md-card-placeholder {
  min-width: 100%;
}
.md-card-list-wrapper,
.md-card-list-wrapper:before,
.md-card-list-wrapper:after,
.md-card-list-wrapper *,
.md-card-list-wrapper *:before,
.md-card-list-wrapper *:after {
  box-sizing: border-box;
}
.md-card-list-wrapper .md-card-list-header {
  position: absolute;
  top: -24px;
  left: 0;
}
.md-card-list-wrapper .md-card-list {
  margin: 48px 0 0 0;
  position: relative;
}
.md-card-list-wrapper .md-card-list:first-child {
  margin-top: 24px;
}
.md-card-list-wrapper .md-card-list > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.md-card-list-wrapper .md-card-list > ul > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.md-card-list-wrapper .md-card-list > ul > li {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 13px;
  transition: background 150ms,padding 200ms;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.md-card-list-wrapper .md-card-list > ul > li:before,
.md-card-list-wrapper .md-card-list > ul > li:after {
  content: " ";
  display: table;
}
.md-card-list-wrapper .md-card-list > ul > li:after {
  clear: both;
}
.md-card-list-wrapper .md-card-list > ul > li:before,
.md-card-list-wrapper .md-card-list > ul > li:after {
  content: " ";
  display: table;
}
.md-card-list-wrapper .md-card-list > ul > li:after {
  clear: both;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown {
  background: #fff;
  padding: 8px 36px;
}
@media only screen and (max-width: 767px) {
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject {
    clear: both;
    float: none;
    padding-top: 16px;
  }
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject > span {
    white-space: normal;
  }
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-sender {
  width: auto;
  overflow: hidden;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected {
  position: relative;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #e3f2fd;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-select,
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
  float: left;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-select {
  padding: 6px 8px 0 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
.md-card-list-wrapper .md-card-list .md-card-list-item-sender,
.md-card-list-wrapper .md-card-list .md-card-list-item-subject,
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
  padding: 0 8px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar {
  background: #757575;
  color: #fff;
  width: 34px;
  border-radius: 50%;
  display: block;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar-large {
  width: 82px;
  border-radius: 50%;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper span.md-card-list-item-avatar {
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
  width: 220px;
  line-height: 34px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-sender > span {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 1219px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-sender {
    display: none;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject {
  overflow: hidden;
  font-weight: 500;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject > span {
  line-height: 34px;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
  display: none;
}
@media only screen and (max-width: 1219px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
    display: block;
  }
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small + span {
    line-height: inherit;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small > span {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  color: #999;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
  line-height: 34px;
  float: right;
  color: #999;
}
@media only screen and (max-width: 479px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-date {
    display: none;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-menu {
  float: right;
  margin: 0 0 0 8px;
  position: relative;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-menu .uk-dropdown .material-icons {
  margin-right: 8px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content-wrapper {
  display: none;
  clear: both;
  opacity: 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content {
  padding: 16px 16px 0 0;
  max-height: 360px;
  overflow-x: hidden;
  margin: 0 0 40px;
  top: 20px;
  position: relative;
  font-size: 14px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content + .md-card-list-item-reply {
  padding-top: 10px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-reply {
  padding: 16px 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-selected {
  background: #e3f2fd;
}
/* forms */
select,
textarea,
input:not([type]),
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  outline: none;
}
select.md-input,
textarea.md-input,
input:not([type]).md-input,
input[type="text"].md-input,
input[type="password"].md-input,
input[type="datetime"].md-input,
input[type="datetime-local"].md-input,
input[type="date"].md-input,
input[type="month"].md-input,
input[type="time"].md-input,
input[type="week"].md-input,
input[type="number"].md-input,
input[type="email"].md-input,
input[type="url"].md-input,
input[type="search"].md-input,
input[type="tel"].md-input,
input[type="color"].md-input {
  border-radius: 0;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  font: 400 15px / 18px "Roboto", sans-serif;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
  box-sizing: border-box;
  padding: 12px 4px;
  background: transparent;
  width: 100%;
  display: block;
}
select.md-input.md-input-danger,
textarea.md-input.md-input-danger,
input:not([type]).md-input.md-input-danger,
input[type="text"].md-input.md-input-danger,
input[type="password"].md-input.md-input-danger,
input[type="datetime"].md-input.md-input-danger,
input[type="datetime-local"].md-input.md-input-danger,
input[type="date"].md-input.md-input-danger,
input[type="month"].md-input.md-input-danger,
input[type="time"].md-input.md-input-danger,
input[type="week"].md-input.md-input-danger,
input[type="number"].md-input.md-input-danger,
input[type="email"].md-input.md-input-danger,
input[type="url"].md-input.md-input-danger,
input[type="search"].md-input.md-input-danger,
input[type="tel"].md-input.md-input-danger,
input[type="color"].md-input.md-input-danger {
  border-color: #e53935;
}
select.md-input.md-input-danger:focus,
textarea.md-input.md-input-danger:focus,
input:not([type]).md-input.md-input-danger:focus,
input[type="text"].md-input.md-input-danger:focus,
input[type="password"].md-input.md-input-danger:focus,
input[type="datetime"].md-input.md-input-danger:focus,
input[type="datetime-local"].md-input.md-input-danger:focus,
input[type="date"].md-input.md-input-danger:focus,
input[type="month"].md-input.md-input-danger:focus,
input[type="time"].md-input.md-input-danger:focus,
input[type="week"].md-input.md-input-danger:focus,
input[type="number"].md-input.md-input-danger:focus,
input[type="email"].md-input.md-input-danger:focus,
input[type="url"].md-input.md-input-danger:focus,
input[type="search"].md-input.md-input-danger:focus,
input[type="tel"].md-input.md-input-danger:focus,
input[type="color"].md-input.md-input-danger:focus {
  border-bottom-color: #e53935;
}
select.md-input.md-input-success,
textarea.md-input.md-input-success,
input:not([type]).md-input.md-input-success,
input[type="text"].md-input.md-input-success,
input[type="password"].md-input.md-input-success,
input[type="datetime"].md-input.md-input-success,
input[type="datetime-local"].md-input.md-input-success,
input[type="date"].md-input.md-input-success,
input[type="month"].md-input.md-input-success,
input[type="time"].md-input.md-input-success,
input[type="week"].md-input.md-input-success,
input[type="number"].md-input.md-input-success,
input[type="email"].md-input.md-input-success,
input[type="url"].md-input.md-input-success,
input[type="search"].md-input.md-input-success,
input[type="tel"].md-input.md-input-success,
input[type="color"].md-input.md-input-success {
  border-color: #7cb342;
}
select.md-input.md-input-success:focus,
textarea.md-input.md-input-success:focus,
input:not([type]).md-input.md-input-success:focus,
input[type="text"].md-input.md-input-success:focus,
input[type="password"].md-input.md-input-success:focus,
input[type="datetime"].md-input.md-input-success:focus,
input[type="datetime-local"].md-input.md-input-success:focus,
input[type="date"].md-input.md-input-success:focus,
input[type="month"].md-input.md-input-success:focus,
input[type="time"].md-input.md-input-success:focus,
input[type="week"].md-input.md-input-success:focus,
input[type="number"].md-input.md-input-success:focus,
input[type="email"].md-input.md-input-success:focus,
input[type="url"].md-input.md-input-success:focus,
input[type="search"].md-input.md-input-success:focus,
input[type="tel"].md-input.md-input-success:focus,
input[type="color"].md-input.md-input-success:focus {
  border-bottom-color: #7cb342;
}
select.md-input:focus,
textarea.md-input:focus,
input:not([type]).md-input:focus,
input[type="text"].md-input:focus,
input[type="password"].md-input:focus,
input[type="datetime"].md-input:focus,
input[type="datetime-local"].md-input:focus,
input[type="date"].md-input:focus,
input[type="month"].md-input:focus,
input[type="time"].md-input:focus,
input[type="week"].md-input:focus,
input[type="number"].md-input:focus,
input[type="email"].md-input:focus,
input[type="url"].md-input:focus,
input[type="search"].md-input:focus,
input[type="tel"].md-input:focus,
input[type="color"].md-input:focus {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}
select.md-input-small,
textarea.md-input-small,
input:not([type]).md-input-small,
input[type="text"].md-input-small,
input[type="password"].md-input-small,
input[type="datetime"].md-input-small,
input[type="datetime-local"].md-input-small,
input[type="date"].md-input-small,
input[type="month"].md-input-small,
input[type="time"].md-input-small,
input[type="week"].md-input-small,
input[type="number"].md-input-small,
input[type="email"].md-input-small,
input[type="url"].md-input-small,
input[type="search"].md-input-small,
input[type="tel"].md-input-small,
input[type="color"].md-input-small {
  padding: 4px;
}
select.md-input.uk-form-width-mini,
textarea.md-input.uk-form-width-mini,
input:not([type]).md-input.uk-form-width-mini,
input[type="text"].md-input.uk-form-width-mini,
input[type="password"].md-input.uk-form-width-mini,
input[type="datetime"].md-input.uk-form-width-mini,
input[type="datetime-local"].md-input.uk-form-width-mini,
input[type="date"].md-input.uk-form-width-mini,
input[type="month"].md-input.uk-form-width-mini,
input[type="time"].md-input.uk-form-width-mini,
input[type="week"].md-input.uk-form-width-mini,
input[type="number"].md-input.uk-form-width-mini,
input[type="email"].md-input.uk-form-width-mini,
input[type="url"].md-input.uk-form-width-mini,
input[type="search"].md-input.uk-form-width-mini,
input[type="tel"].md-input.uk-form-width-mini,
input[type="color"].md-input.uk-form-width-mini {
  width: 40px;
}
select.md-input.uk-form-width-small,
textarea.md-input.uk-form-width-small,
input:not([type]).md-input.uk-form-width-small,
input[type="text"].md-input.uk-form-width-small,
input[type="password"].md-input.uk-form-width-small,
input[type="datetime"].md-input.uk-form-width-small,
input[type="datetime-local"].md-input.uk-form-width-small,
input[type="date"].md-input.uk-form-width-small,
input[type="month"].md-input.uk-form-width-small,
input[type="time"].md-input.uk-form-width-small,
input[type="week"].md-input.uk-form-width-small,
input[type="number"].md-input.uk-form-width-small,
input[type="email"].md-input.uk-form-width-small,
input[type="url"].md-input.uk-form-width-small,
input[type="search"].md-input.uk-form-width-small,
input[type="tel"].md-input.uk-form-width-small,
input[type="color"].md-input.uk-form-width-small {
  width: 130px;
}
select.md-input.uk-form-width-medium,
textarea.md-input.uk-form-width-medium,
input:not([type]).md-input.uk-form-width-medium,
input[type="text"].md-input.uk-form-width-medium,
input[type="password"].md-input.uk-form-width-medium,
input[type="datetime"].md-input.uk-form-width-medium,
input[type="datetime-local"].md-input.uk-form-width-medium,
input[type="date"].md-input.uk-form-width-medium,
input[type="month"].md-input.uk-form-width-medium,
input[type="time"].md-input.uk-form-width-medium,
input[type="week"].md-input.uk-form-width-medium,
input[type="number"].md-input.uk-form-width-medium,
input[type="email"].md-input.uk-form-width-medium,
input[type="url"].md-input.uk-form-width-medium,
input[type="search"].md-input.uk-form-width-medium,
input[type="tel"].md-input.uk-form-width-medium,
input[type="color"].md-input.uk-form-width-medium {
  width: 200px;
}
select.md-input.uk-form-width-large,
textarea.md-input.uk-form-width-large,
input:not([type]).md-input.uk-form-width-large,
input[type="text"].md-input.uk-form-width-large,
input[type="password"].md-input.uk-form-width-large,
input[type="datetime"].md-input.uk-form-width-large,
input[type="datetime-local"].md-input.uk-form-width-large,
input[type="date"].md-input.uk-form-width-large,
input[type="month"].md-input.uk-form-width-large,
input[type="time"].md-input.uk-form-width-large,
input[type="week"].md-input.uk-form-width-large,
input[type="number"].md-input.uk-form-width-large,
input[type="email"].md-input.uk-form-width-large,
input[type="url"].md-input.uk-form-width-large,
input[type="search"].md-input.uk-form-width-large,
input[type="tel"].md-input.uk-form-width-large,
input[type="color"].md-input.uk-form-width-large {
  width: 500px;
}
select.md-input.inverted-colors,
textarea.md-input.inverted-colors,
input:not([type]).md-input.inverted-colors,
input[type="text"].md-input.inverted-colors,
input[type="password"].md-input.inverted-colors,
input[type="datetime"].md-input.inverted-colors,
input[type="datetime-local"].md-input.inverted-colors,
input[type="date"].md-input.inverted-colors,
input[type="month"].md-input.inverted-colors,
input[type="time"].md-input.inverted-colors,
input[type="week"].md-input.inverted-colors,
input[type="number"].md-input.inverted-colors,
input[type="email"].md-input.inverted-colors,
input[type="url"].md-input.inverted-colors,
input[type="search"].md-input.inverted-colors,
input[type="tel"].md-input.inverted-colors,
input[type="color"].md-input.inverted-colors {
  color: #fff;
  border-bottom-color: #fff;
}
select.md-input.inverted-colors::-webkit-input-placeholder,
textarea.md-input.inverted-colors::-webkit-input-placeholder,
input:not([type]).md-input.inverted-colors::-webkit-input-placeholder,
input[type="text"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="password"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="datetime"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="datetime-local"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="date"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="month"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="time"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="week"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="number"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="email"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="url"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="search"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="tel"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="color"].md-input.inverted-colors::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
select.md-input.inverted-colors::-moz-placeholder,
textarea.md-input.inverted-colors::-moz-placeholder,
input:not([type]).md-input.inverted-colors::-moz-placeholder,
input[type="text"].md-input.inverted-colors::-moz-placeholder,
input[type="password"].md-input.inverted-colors::-moz-placeholder,
input[type="datetime"].md-input.inverted-colors::-moz-placeholder,
input[type="datetime-local"].md-input.inverted-colors::-moz-placeholder,
input[type="date"].md-input.inverted-colors::-moz-placeholder,
input[type="month"].md-input.inverted-colors::-moz-placeholder,
input[type="time"].md-input.inverted-colors::-moz-placeholder,
input[type="week"].md-input.inverted-colors::-moz-placeholder,
input[type="number"].md-input.inverted-colors::-moz-placeholder,
input[type="email"].md-input.inverted-colors::-moz-placeholder,
input[type="url"].md-input.inverted-colors::-moz-placeholder,
input[type="search"].md-input.inverted-colors::-moz-placeholder,
input[type="tel"].md-input.inverted-colors::-moz-placeholder,
input[type="color"].md-input.inverted-colors::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
select.md-input.inverted-colors:-ms-input-placeholder,
textarea.md-input.inverted-colors:-ms-input-placeholder,
input:not([type]).md-input.inverted-colors:-ms-input-placeholder,
input[type="text"].md-input.inverted-colors:-ms-input-placeholder,
input[type="password"].md-input.inverted-colors:-ms-input-placeholder,
input[type="datetime"].md-input.inverted-colors:-ms-input-placeholder,
input[type="datetime-local"].md-input.inverted-colors:-ms-input-placeholder,
input[type="date"].md-input.inverted-colors:-ms-input-placeholder,
input[type="month"].md-input.inverted-colors:-ms-input-placeholder,
input[type="time"].md-input.inverted-colors:-ms-input-placeholder,
input[type="week"].md-input.inverted-colors:-ms-input-placeholder,
input[type="number"].md-input.inverted-colors:-ms-input-placeholder,
input[type="email"].md-input.inverted-colors:-ms-input-placeholder,
input[type="url"].md-input.inverted-colors:-ms-input-placeholder,
input[type="search"].md-input.inverted-colors:-ms-input-placeholder,
input[type="tel"].md-input.inverted-colors:-ms-input-placeholder,
input[type="color"].md-input.inverted-colors:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
select.md-input.inverted-colors:-moz-placeholder,
textarea.md-input.inverted-colors:-moz-placeholder,
input:not([type]).md-input.inverted-colors:-moz-placeholder,
input[type="text"].md-input.inverted-colors:-moz-placeholder,
input[type="password"].md-input.inverted-colors:-moz-placeholder,
input[type="datetime"].md-input.inverted-colors:-moz-placeholder,
input[type="datetime-local"].md-input.inverted-colors:-moz-placeholder,
input[type="date"].md-input.inverted-colors:-moz-placeholder,
input[type="month"].md-input.inverted-colors:-moz-placeholder,
input[type="time"].md-input.inverted-colors:-moz-placeholder,
input[type="week"].md-input.inverted-colors:-moz-placeholder,
input[type="number"].md-input.inverted-colors:-moz-placeholder,
input[type="email"].md-input.inverted-colors:-moz-placeholder,
input[type="url"].md-input.inverted-colors:-moz-placeholder,
input[type="search"].md-input.inverted-colors:-moz-placeholder,
input[type="tel"].md-input.inverted-colors:-moz-placeholder,
input[type="color"].md-input.inverted-colors:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
select.md-input.uk-form-width-mini {
  width: 65px;
}
.md-input-width-small {
  min-width: 80px !important;
}
.md-input-width-medium {
  min-width: 160px !important;
}
.md-input-width-large {
  min-width: 320px !important;
}
textarea.md-input {
  min-height: 80px;
  resize: none;
  overflow: hidden;
  transition: height 200ms ease-out;
  line-height: 24px;
}
textarea.no_autosize {
  min-height: inherit;
  overflow: auto;
  transition: none;
  resize: both;
}
.md-input-wrapper {
  position: relative;
  padding-top: 4px;
  width: 100%;
  display: block;
}
.md-input-wrapper .md-input-bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.md-input-wrapper .md-input-bar:before,
.md-input-wrapper .md-input-bar:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1976d2;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.md-input-wrapper .md-input-bar:before {
  left: 50%;
}
.md-input-wrapper .md-input-bar:after {
  right: 50%;
}
.md-input-wrapper .md-input-bar.uk-form-width-mini {
  width: 40px;
}
.md-input-wrapper .md-input-bar.uk-form-width-small {
  width: 130px;
}
.md-input-wrapper .md-input-bar.uk-form-width-medium {
  width: 200px;
}
.md-input-wrapper .md-input-bar.uk-form-width-large {
  width: 500px;
}
.md-input-wrapper > label {
  color: #727272;
  position: absolute;
  top: 16px;
  left: 4px;
  right: 0;
  pointer-events: none;
  transition: all 150ms ease-out;
}
.md-input-wrapper + * {
  margin-top: 10px;
}
.md-input-wrapper.md-input-wrapper-disabled > label {
  color: rgba(0, 0, 0, 0.26);
}
.md-input-wrapper-count {
  padding-bottom: 24px;
}
.md-input-wrapper-count .md-input-bar {
  bottom: 24px;
}
.md-input-wrapper-count .text-count-wrapper {
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.md-input-wrapper-count > .md-input-wrapper-count .text-count-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}
.md-input-filled > label,
.md-input-focus > label {
  top: -6px;
  font-size: 12px;
}
.md-input-filled.md-input-wrapper-count .text-count-wrapper,
.md-input-focus.md-input-wrapper-count .text-count-wrapper {
  opacity: 1;
}
.md-input-focus .md-input-bar:before,
.md-input-focus .md-input-bar:after {
  width: 50%;
}
.md-input-wrapper-danger .md-input-bar:before,
.md-input-wrapper-danger .md-input-bar:after {
  background: #e53935;
}
.md-input-wrapper-danger.md-input-wrapper-count .text-count-wrapper {
  color: #e53935;
}
.md-input-wrapper-success .md-input-bar:before,
.md-input-wrapper-success .md-input-bar:after {
  background: #7cb342;
}
.md-input-wrapper-success.md-input-wrapper-count .text-count-wrapper {
  color: #7cb342;
}
.md-form-group {
  position: relative;
}
label.md-label {
  color: #999;
  padding: 0 6px;
  font-size: 11px;
}
.add-clear-span {
  display: block;
}
.add-clear-span input {
  padding-right: 24px !important;
}
.add-clear-span a {
  top: 12px !important;
  right: 4px !important;
}
.add-clear-span a .material-icons {
  font-size: 20px;
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url("../icons/material-design-icons/MaterialIcons-Regular.eot");
  /* For IE6-8 */
  src: local('Material Icons'), local('MaterialIcons-Regular'), url("../icons/material-design-icons/MaterialIcons-Regular.woff2") format('woff2'), url("../icons/material-design-icons/MaterialIcons-Regular.woff") format('woff'), url("../icons/material-design-icons/MaterialIcons-Regular.ttf") format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  /* Preferred icon size */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  vertical-align: -4px;
  color: rgba(0, 0, 0, 0.54);
}
.material-icons.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}
.material-icons.md-18 {
  font-size: 18px !important;
  vertical-align: -4px;
}
.material-icons.md-24 {
  font-size: 24px !important;
  vertical-align: -8px;
}
.material-icons.md-36 {
  font-size: 36px !important;
  vertical-align: -16px;
}
.material-icons.md-48 {
  font-size: 48px !important;
  vertical-align: -24px;
}
.material-icons.md-light {
  color: #ffffff;
}
.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}
/*** utils ***/
/* avatar */
.md-user-image {
  width: 34px;
  border-radius: 50%;
}
.md-user-image-large {
  width: 82px;
  border-radius: 50%;
}
.md-user-placeholder {
  background-color: rgba(0, 0, 0, 0.085);
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.md-user-letters {
  display: inline-block;
  line-height: 35px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.085);
}
/* icons */
.md-icon {
  font-size: 24px;
  line-height: 32px !important;
  height: 32px !important;
  color: #727272;
  border-radius: 50%;
  cursor: pointer;
  transition: background 280ms ease-out, color 280ms ease-out;
  width: 32px !important;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.md-icon:hover,
.md-icon:focus,
.md-icon:active,
.md-icon.active {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
.md-icon-light {
  color: #fff;
}
.md-icon-light:hover,
.md-icon-light:focus,
.md-icon-light:active {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.md-icon-dark {
  color: #212121;
}
.md-icon-dark:hover,
.md-icon-dark:focus,
.md-icon-dark:active {
  color: #212121;
  background: rgba(255, 255, 255, 0.6);
}
.md-icon + .md-icon {
  margin-left: 4px;
}
.md-icon-btn {
  display: inline-block;
}
.md-icon-btn.active .md-icon {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
button.md-icon {
  background: none;
  border: none;
  outline: none;
}
.uk-open > .md-icon {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
.uk-open > .md-icon-light {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.uk-open > .md-icon-dark {
  color: #212121;
  background: rgba(255, 255, 255, 0.6);
}
/* dropdown list */
.md-list-inputs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.md-list-inputs > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.md-list-inputs li + li {
  margin-top: 8px;
}
.md-list-inputs li .icheckbox_md {
  float: left;
}
.md-list-inputs li label {
  overflow: hidden;
  padding-left: 8px;
  display: block;
  cursor: pointer;
}
/* hr */
.md-hr {
  margin: 32px 0;
  height: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.12);
}
/* animated show */
@-webkit-keyframes hierarchical_show {
  0% {
    opacity: 0;
    transform: scale3d(0.2, 0.2, 2);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes hierarchical_show {
  0% {
    opacity: 0;
    transform: scale3d(0.2, 0.2, 2);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.hierarchical_show {
  will-change: transform, opacity;
}
.hierarchical_show > * {
  visibility: hidden;
}
.hierarchical_show_inView > * {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
  -webkit-animation-name: hierarchical_show;
          animation-name: hierarchical_show;
  visibility: visible;
}
@-webkit-keyframes hierarchical_slide {
  0% {
    opacity: 0;
    transform: translate3d(0, 160%, 0);
  }
  33% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes hierarchical_slide {
  0% {
    opacity: 0;
    transform: translate3d(0, 160%, 0);
  }
  33% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.hierarchical_slide {
  will-change: transform, opacity;
}
.hierarchical_slide > * {
  visibility: hidden;
}
.hierarchical_slide_inView > * {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
  -webkit-animation-name: hierarchical_slide;
          animation-name: hierarchical_slide;
  visibility: visible;
}
.fast_animation {
  -webkit-animation-duration: 280ms;
          animation-duration: 280ms;
}
/**
 * Google Material Design Preloader
 *
 * CSS animated SVG implementation of the Google Material Design preloader
 *
 * Reference: http://goo.gl/ZfulRH
 * License: MIT
 * Author: Rudi Theunissen (rudolf.theunissen@gmail.com)
 * Version: 1.1.1
 */
.md-preloader {
  font-size: 0;
  display: inline-block;
  -webkit-animation: outer 6000ms linear infinite;
          animation: outer 6000ms linear infinite;
}
.md-preloader svg {
  -webkit-animation: inner 1200ms linear infinite;
          animation: inner 1200ms linear infinite;
}
.md-preloader svg circle {
  fill: none;
  stroke: #448aff;
  stroke-linecap: round;
  -webkit-animation: arc 1200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: arc 1200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@-webkit-keyframes outer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes outer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes inner {
  0% {
    transform: rotate(-64.8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes inner {
  0% {
    transform: rotate(-64.8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes arc {
  0% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dasharray: 172.59910039px, 210.48670779px;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: -172.59910039px;
  }
}
@keyframes arc {
  0% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dasharray: 172.59910039px, 210.48670779px;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: -172.59910039px;
  }
}
.md-preloader-success svg circle {
  stroke: #7cb342;
}
.md-preloader-danger svg circle {
  stroke: #e53935;
}
.md-preloader-warning svg circle {
  stroke: #ffa000;
}
/* content preloader */
.content-preloader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  overflow: hidden;
  margin-left: -24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 8px;
  box-sizing: border-box;
  transform: scale(0);
  transition: top 400ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.content-preloader .regular-preloader {
  position: relative;
  width: 30px;
  height: 30px;
}
.content-preloader .regular-preloader > div {
  width: 26px;
  height: 26px;
}
.content-preloader.preloader-active {
  transform: scale(1);
  transition: top 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.content-preloader-success svg circle {
  stroke: #7cb342;
}
.content-preloader-danger svg circle {
  stroke: #e53935;
}
.content-preloader-warning svg circle {
  stroke: #ffa000;
}
.sidebar_main_active > .content-preloader,
.sidebar_main_open > .content-preloader {
  margin-left: 96px !important;
}
body > .content-preloader {
  position: fixed;
  z-index: 1099;
  top: -48px;
}
body > .content-preloader.preloader-active {
  top: 56px;
}
.sidebar_main_active body > .content-preloader,
.sidebar_main_open body > .content-preloader {
  margin-left: 96px;
}
.md-card > .content-preloader {
  position: absolute;
  z-index: 10;
  top: 0;
}
.md-card > .content-preloader.preloader-active {
  top: 64px;
}
/* iCheck material design theme
----------------------------------- */
.icheckbox_md,
.iradio_md {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}
.icheckbox_md:after,
.iradio_md:after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.icheckbox_md > input,
.iradio_md > input {
  margin: 0;
}
.icheckbox_md > .iCheck-helper,
.iradio_md > .iCheck-helper {
  z-index: 10;
}
.icheckbox_md {
  border: 2px solid rgba(0, 0, 0, 0.54);
  border-radius: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  transition: all 200ms ease-out;
}
.icheckbox_md.checked:after,
.icheckbox_md.disabled:after {
  content: '\e5ca';
  font-family: "Material Icons";
  font-size: 18px;
  color: #fff;
  position: absolute;
  left: -2px;
  top: -6px;
  line-height: 1.42857143;
}
.icheckbox_md.hover.checked,
.icheckbox_md.checked {
  background: #009688;
  border-color: #009688 !important;
}
.icheckbox_md.disabled:after {
  display: none;
}
.icheckbox_md.disabled,
.icheckbox_md.disabled.checked {
  background: transparent;
  background-clip: padding-box;
  border-color: rgba(0, 0, 0, 0.26);
  cursor: default;
}
.icheckbox_md.disabled.checked {
  background: #bdbdbd !important;
  border-color: #bdbdbd !important;
}
.icheckbox_md.disabled.checked:after {
  display: block !important;
}
.md-input-danger .icheckbox_md {
  border-color: #e53935;
}
.icheckbox_md.indeterminate {
  background: #009688;
  border-color: #009688;
}
.icheckbox_md.indeterminate:after {
  content: '';
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 10px;
  height: 10px;
}
.iradio_md {
  border: 2px solid rgba(0, 0, 0, 0.54);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.iradio_md:after {
  content: '';
  background: transparent;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0.1);
  transition: all 200ms ease-out;
}
.iradio_md.checked {
  border-color: #009688 !important;
}
.iradio_md.checked:after {
  background: #009688;
  transform: scale(1);
}
.iradio_md.disabled {
  border-color: rgba(0, 0, 0, 0.26);
  cursor: default;
}
.iradio_md.disabled:after {
  background: rgba(0, 0, 0, 0.26);
  transform: scale(1);
}
.md-input-danger .iradio_md {
  border-color: #e53935;
}
.disabled + .inline-label {
  color: rgba(0, 0, 0, 0.26);
  cursor: default;
}
.icheck-inline {
  display: inline-block;
  margin: 0 16px 16px 0;
}
.icheck-inline + .parsley-errors-list {
  margin-top: -8px;
}
html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ececec;
}
body {
  min-height: 100%;
  font: 400 14px / 1.42857143 "Roboto", sans-serif;
  padding-top: 48px;
  box-sizing: border-box;
}
a,
button {
  outline: none !important;
}
a {
  color: #1e88e5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover,
a:active {
  color: #0d47a1;
  text-decoration: none;
}
pre,
code,
code[class*="language-"],
pre[class*="language-"] {
  font: 400 12px / 18px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
  box-sizing: border-box;
}
pre[class*="language-"] {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0;
}
pre[class*="language-"]:before,
pre[class*="language-"]:after {
  display: none;
}
.line-numbers .line-numbers-rows {
  border-right-color: rgba(0, 0, 0, 0.12);
}
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  font: 400 12px / 18px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
  color: #d32f2f;
}
pre.large_code,
code.large_code {
  font: 400 14px / 24px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
}
.touchscroll {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.transform-origin-50 {
  transform-origin: 50% 50%;
}
blockquote {
  border-left: 4px solid rgba(0, 0, 0, 0.085);
}
/* clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.heading_a {
  margin: 0;
  font: 400 18px / 24px "Roboto", sans-serif;
}
.heading_a .sub-heading {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  display: block;
  color: #727272;
}
.heading_b {
  margin: 0;
  font: 400 22px / 28px "Roboto", sans-serif;
}
.heading_b .sub-heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  display: block;
  color: #727272;
}
.heading_c {
  margin: 0;
  font: 400 16px / 20px "Roboto", sans-serif;
}
.heading_c .sub-heading {
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  display: block;
  color: #727272;
}
.heading_list {
  color: #727272;
  font: 500 13px / 16px "Roboto", sans-serif;
  padding: 0 16px;
  margin: 0 0 16px;
}
.heading_a + .uk-grid,
.heading_b + .uk-grid,
.heading_c + .uk-grid,
.heading_list + .uk-grid {
  margin-top: 24px;
}
.uk-grid + .heading_a,
.uk-grid + .heading_b,
.uk-grid + .heading_c,
.uk-grid + .heading_list {
  margin-top: 24px;
}
/* uikit extend */
.uk-text-large {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 16px;
}
* > .uk-text-large {
  margin-top: 16px;
}
.uk-text-small {
  font-size: 12px !important;
}
.uk-text-upper {
  text-transform: uppercase;
}
.uk-text-italic {
  font-style: italic;
}
.uk-text-del {
  text-decoration: line-through;
}
.uk-table.no-border td,
.uk-table .no-border td {
  border-bottom: none;
}
.uk-table .row-selected {
  background: #fff8e1 !important;
}
.uk-table [data-link] {
  cursor: pointer;
}
.uk-text-pre {
  white-space: pre;
}
.table_tree {
  margin-bottom: 4px !important;
}
.table_tree .table-child-row {
  display: none;
}
.table_tree .toggle-childrens {
  display: block;
  padding-left: 24px;
  position: relative;
}
.table_tree .toggle-childrens:before {
  content: '\e313';
  font-family: "Material Icons";
  font-size: 28px;
  position: absolute;
  left: -6px;
  top: -10px;
  color: #727272;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}
.table_tree .table-child-row {
  display: table-row;
}
.table_tree .table-child-row .child-row-main-col {
  padding-left: 40px;
}
.table_tree .show_child_row .toggle-childrens:before {
  transform: rotate(-90deg);
}
/* custom styles */
address {
  margin: 0;
}
address p {
  margin: 0;
}
address p + p {
  margin-top: 4px;
}
.grid-block {
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(179, 179, 179, 0.085);
  padding: 48px 0;
}
.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.inline-list > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.inline-list li {
  float: left;
  margin: 0 8px 8px 0;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(102, 102, 102, 0.085);
}
.img_thumb {
  width: 80px;
  max-width: 100%;
  height: auto;
}
.img_thumb.square {
  height: 80px;
}
.img_small {
  width: 120px;
  max-width: 100%;
  height: auto;
}
.img_small.square {
  height: 120px;
}
.img_medium {
  width: 240px;
  max-width: 100%;
  height: auto;
}
.img_medium.square {
  height: 240px;
}
.img_large {
  width: 400px;
  max-width: 100%;
  height: auto;
}
.img_large.square {
  height: 400px;
}
/* forms */
.inline-label {
  padding-left: 4px;
  cursor: pointer;
  vertical-align: -1px;
}
.form_hr {
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  margin: 32px 0 16px;
}
/* layout */
#page_content:before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  opacity: 0;
  transition: opacity 400ms;
  z-index: -1;
}
#page_content_inner {
  padding: 24px 24px 100px;
}
#page_overflow {
  min-height: 100%;
  overflow-y: auto;
}
@media only screen and (min-width: 1220px) {
  .boxed_layout #page_content {
    max-width: 1220px;
    margin: 0 auto !important;
  }
  .boxed_layout .uk-width-large-8-10.uk-container-center {
    width: 100%;
  }
  .boxed_layout.sidebar_main_open #page_content,
  .boxed_layout.sidebar_main_active #page_content {
    padding-left: 240px;
  }
  .boxed_layout .md-top-bar {
    max-width: 1172px;
    margin: 0 auto;
  }
  .boxed_layout #page_heading {
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
  }
}
.disable_transitions #sidebar_main,
.disable_transitions #page_content,
.disable_transitions #header_main,
.disable_transitions #top_bar,
.disable_transitions #header_main .sSwitch .sSwitchIcon,
.disable_transitions #header_main .sSwitch .sSwitchIcon:before,
.disable_transitions #header_main .sSwitch .sSwitchIcon:after {
  transition: none !important;
}
body {
  font-size: 15px;
  overflow-y: auto;
  height: auto;
  min-height: 100%;
}
@media only screen and (max-width: 767px) {
  body {
    padding: 24px;
  }
}
.login_page {
  padding: 64px 24px;
}
@media only screen and (max-width: 767px) {
  .login_page {
    padding: 16px;
  }
}
.login_page_wrapper {
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.login_page .user_avatar {
  width: 64px;
  height: 64px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background-image: url("../img/avatars/user.png");
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.085);
  background-position: 50% 1px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 192), only screen and (min-resolution: 192dppx), only screen and (min-resolution: 2dppx) {
  .login_page .user_avatar {
    background-image: url("../img/avatars/user@2x.png");
    background-size: 64px 64px;
  }
}
.login_page .login_heading {
  text-align: center;
  margin-bottom: 32px;
}
.login_page.login_page_v2 {
  padding: 48px 24px;
}
@media only screen and (max-width: 767px) {
  .login_page.login_page_v2 {
    padding: 16px;
  }
  .login_page.login_page_v2 > .uk-container {
    padding: 0;
  }
}
.login_page.login_page_v2 .login_page_forms {
  padding: 24px 48px;
}
@media only screen and (max-width: 767px) {
  .login_page.login_page_v2 .login_page_forms {
    padding: 24px;
  }
}
.login_page.login_page_v2 .login_page_info {
  background-position: 0 0;
  background-size: cover;
  position: relative;
}
.login_page.login_page_v2 .login_page_info .info_content {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  padding: 24px;
  color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
}
.login_page.login_page_v2 .login_page_info .info_content h1,
.login_page.login_page_v2 .login_page_info .info_content h2 {
  color: #fff;
  margin-bottom: 16px;
}
.login_page.login_page_v2 .login_page_info .info_content p {
  margin: 16px 0 0;
}
html.app_theme_dark {
  background: #303030;
  color: #fff;
}
html.app_theme_dark a:not(.md-btn) {
  color: #039be5;
}
html.app_theme_dark a:not(.md-btn):hover,
html.app_theme_dark a:not(.md-btn):active {
  color: #0277bd;
}
html.app_theme_dark h1,
html.app_theme_dark h2,
html.app_theme_dark h3,
html.app_theme_dark h4,
html.app_theme_dark h5,
html.app_theme_dark h6 {
  color: #fefefe;
}
html.app_theme_dark select.md-input,
html.app_theme_dark textarea.md-input,
html.app_theme_dark input:not([type]).md-input,
html.app_theme_dark input[type="text"].md-input,
html.app_theme_dark input[type="password"].md-input,
html.app_theme_dark input[type="datetime"].md-input,
html.app_theme_dark input[type="datetime-local"].md-input,
html.app_theme_dark input[type="date"].md-input,
html.app_theme_dark input[type="month"].md-input,
html.app_theme_dark input[type="time"].md-input,
html.app_theme_dark input[type="week"].md-input,
html.app_theme_dark input[type="number"].md-input,
html.app_theme_dark input[type="email"].md-input,
html.app_theme_dark input[type="url"].md-input,
html.app_theme_dark input[type="search"].md-input,
html.app_theme_dark input[type="tel"].md-input,
html.app_theme_dark input[type="color"].md-input {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fefefe;
}
html.app_theme_dark .md-input-wrapper > label {
  color: #cbcbcb;
}
html.app_theme_dark .md-card {
  background: #424242;
}
html.app_theme_dark .uk-tooltip {
  background: #212121;
}
html.app_theme_dark .login_page .user_avatar {
  background-color: rgba(255, 255, 255, 0.4);
}

/*# sourceMappingURL=login_page.css.map */

/* error page */
/* animations */
[class*="uk-animation-"] {
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
}
/* alerts */
.uk-alert {
  border: none;
  background: #1976d2;
  color: #fff;
  text-shadow: none;
  padding-right: 32px;
  position: relative;
  display: block;
}
.uk-alert-success {
  background: #8bc34a !important;
}
.uk-alert-danger {
  background: #e53935 !important;
}
.uk-alert-warning {
  background: #ffa000 !important;
}
.uk-alert-info {
  background: #0097a7 !important;
}
.uk-alert-large {
  padding: 24px 32px 24px 24px;
}
.uk-alert-close {
  position: absolute;
  top: 10px;
  right: 8px;
  float: none !important;
  margin: 0 !important;
}
.uk-alert-close:after {
  color: #fff !important;
}
/* badges */
.uk-badge {
  background: #0097a7;
  padding: 2px 6px;
  border: none;
  border-radius: 2px;
  text-shadow: none;
  font-size: 11px;
  line-height: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.uk-badge a {
  color: #fff !important;
}
.uk-badge-default {
  background: #9e9e9e;
  color: #fff;
}
.uk-badge-primary {
  background: #2196f3;
}
.uk-badge-danger {
  background: #e53935;
}
.uk-badge-warning {
  background: #ffa000;
}
.uk-badge-success {
  background: #7cb342;
}
.uk-badge-muted {
  background: #bdbdbd;
}
.uk-badge-notification {
  border-radius: 20px;
}
.uk-badge-large {
  font-size: 13px;
  line-height: 16px;
  padding: 4px 8px;
}
.uk-badge.inline-label {
  vertical-align: 1px;
  margin-left: 4px;
}
.uk-badge-outline {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #212121;
  padding-bottom: 0;
  line-height: 16px;
}
.uk-badge-inline {
  vertical-align: 2px;
}
.uk-badge-group {
  overflow: hidden;
}
.uk-badge-group .uk-badge {
  float: left;
  display: block;
  margin: 0 4px 4px 0;
}
/* buttons */
.uk-button {
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* comments */
.uk-comment-list > li + li {
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  margin-top: 16px !important;
}
.uk-comment-list .uk-comment + ul {
  margin: 8px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .uk-comment-list .uk-comment + ul {
    padding-left: 48px;
  }
}
.uk-comment-header {
  padding: 16px 8px 8px;
  border: none;
  background: none;
  margin-bottom: 0;
}
.uk-comment-title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
/* dialog modals */
.uk-modal {
  z-index: 1304;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 250ms ease-out;
  overflow: auto !important;
}
.uk-modal.uk-modal-no-backdrop {
  background: transparent;
}
.uk-modal-dialog {
  border-radius: 2px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  padding: 24px;
  display: block !important;
  -webkit-animation: none !important;
          animation: none !important;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease-in;
  transform: scale(0);
}
.uk-modal-dialog-blank {
  padding: 0;
  background: none;
  box-shadow: none;
}
.uk-open .uk-modal-dialog {
  transform: scale(1);
}
.uk-modal-dialog .uk-modal-header {
  background: none;
  border-bottom: none;
  margin: 0 -24px 24px;
  padding: 0 32px 0 24px;
  overflow: hidden;
}
.uk-modal-dialog .uk-modal-header .uk-modal-title {
  margin: 0;
  font: 500 18px / 28px "Roboto", sans-serif;
}
.uk-modal-dialog .uk-modal-header .uk-modal-title span {
  font-size: 16px;
  display: block;
  color: #727272;
}
.uk-modal-dialog .uk-modal-header .material-icons {
  font-size: 24px;
  vertical-align: -4px;
  cursor: default;
}
.uk-modal-dialog .uk-modal-footer {
  margin: 16px -16px -16px;
  padding: 16px;
  background: #fff;
  border-top: none;
}
.uk-modal-dialog .uk-modal-footer:before,
.uk-modal-dialog .uk-modal-footer:after {
  content: " ";
  display: table;
}
.uk-modal-dialog .uk-modal-footer:after {
  clear: both;
}
.uk-modal-dialog .uk-modal-footer:before,
.uk-modal-dialog .uk-modal-footer:after {
  content: " ";
  display: table;
}
.uk-modal-dialog .uk-modal-footer:after {
  clear: both;
}
.uk-modal-dialog .uk-modal-footer .md-icon-btn {
  margin-top: 2px;
}
.uk-modal-dialog .uk-modal-caption {
  bottom: 16px;
  margin: 0 32px;
}
.uk-modal-dialog > .uk-close:first-child {
  top: 8px;
  right: 8px;
  position: absolute;
  float: none;
  margin: 0;
}
.uk-modal-dialog-lightbox {
  padding: 0;
}
.uk-modal-dialog-lightbox > .uk-close:first-child {
  top: -11px;
  right: -11px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border: none;
  z-index: 10;
}
.uk-modal-dialog .uk-overflow-container {
  margin: 16px 0;
}
.uk-modal-card-fullscreen {
  overflow: hidden !important;
}
.uk-modal-card-fullscreen .uk-modal-close {
  float: left;
  margin: 8px 8px 0 0;
  display: block;
}
.uk-modal-card-fullscreen > .uk-modal-dialog > .md-card > .md-card-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 10;
}
.uk-modal-card-fullscreen > .uk-modal-dialog > .md-card > .md-card-content {
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.uk-modal .uk-margin.uk-modal-content {
  margin-bottom: 0;
}
.uk-modal.uk-modal-dialog-replace .uk-modal-content {
  font-size: 18px;
}
.uk-modal-spinner {
  -webkit-animation: uk-rotate 2s infinite linear;
          animation: uk-rotate 2s infinite linear;
  margin-left: -12px;
  margin-top: -17px;
  left: 50%;
  right: auto;
}
.uk-modal .uk-modal-aside {
  padding: 16px 32px 32px;
}
/* dropdowns */
.uk-dropdown {
  transform: scale(0.25, 0);
  opacity: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: none !important;
          animation: none !important;
  transform-origin: 50% 0 !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  border-radius: 2px;
}
.uk-dropdown.uk-dropdown-xlarge {
  width: 360px;
}
@media only screen and (max-width: 479px) {
  .uk-dropdown.uk-dropdown-xlarge {
    width: 260px;
  }
}
.uk-dropdown.uk-dropdown-large {
  width: 260px;
}
.uk-dropdown.uk-dropdown-small {
  width: 160px;
}
.uk-dropdown > ul > li > a {
  font-size: 14px;
  color: #212121;
}
.uk-dropdown > ul > li > a:hover {
  background: rgba(0, 0, 0, 0.085);
}
.uk-dropdown > ul > li.uk-active > a {
  background: rgba(0, 0, 0, 0.085);
}
.uk-dropdown > ul > li.padding_sm {
  padding: 2px 4px;
}
.uk-dropdown > ul > li.padding_md {
  padding: 4px 8px;
}
.uk-dropdown.dropdown-modal {
  z-index: 1310;
}
.uk-dropdown.dropdown-fs {
  z-index: 9999;
}
.uk-dropdown.uk-dropdown-scrollable {
  -webkit-overflow-scrolling: touch;
}
[data-uk-dropdown*="top-"] .uk-dropdown {
  transform-origin: 50% 100% !important;
}
[data-uk-dropdown*="left-"] .uk-dropdown {
  transform-origin: 100% 50% !important;
}
[data-uk-dropdown*="right-"] .uk-dropdown {
  transform-origin: 0 50% !important;
}
[data-uk-dropdown*='justify'] {
  position: static !important;
}
[data-uk-dropdown*='justify'] [class*="uk-dropdown-width"] {
  left: 0 !important;
  width: 100% !important;
  min-width: inherit !important;
  margin-left: 0 !important;
}
.uk-dropdown-active {
  display: block !important;
}
.uk-dropdown-shown {
  transform: scale(1, 1);
  opacity: 1;
}
.uk-nav-dropdown > li > a:focus,
.uk-nav-dropdown > li > a:hover {
  text-shadow: none;
  box-shadow: none;
  color: #212121;
  background: rgba(153, 153, 153, 0.2);
}
/* forms */
fieldset {
  border: none;
  margin: 0;
}
fieldset + * {
  margin-top: 15px;
}
.uk-form input:not([type]),
.uk-form input[type=color],
.uk-form input[type=date],
.uk-form input[type=datetime-local],
.uk-form input[type=email],
.uk-form input[type=month],
.uk-form input[type=number],
.uk-form input[type=password],
.uk-form input[type=search],
.uk-form input[type=tel],
.uk-form input[type=text],
.uk-form input[type=time],
.uk-form input[type=url],
.uk-form input[type=week],
.uk-form select,
.uk-form textarea {
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: border 200ms ease-in;
  resize: none;
}
.uk-form input:not([type]):focus,
.uk-form input[type=color]:focus,
.uk-form input[type=date]:focus,
.uk-form input[type=datetime-local]:focus,
.uk-form input[type=email]:focus,
.uk-form input[type=month]:focus,
.uk-form input[type=number]:focus,
.uk-form input[type=password]:focus,
.uk-form input[type=search]:focus,
.uk-form input[type=tel]:focus,
.uk-form input[type=text]:focus,
.uk-form input[type=time]:focus,
.uk-form input[type=url]:focus,
.uk-form input[type=week]:focus,
.uk-form select:focus,
.uk-form textarea:focus {
  background: none;
  border-color: #2196f3;
}
.uk-form textarea {
  transition: border-color 200ms ease-in, height 280ms ease-in;
}
.uk-form-row {
  transition: all 200ms ease-out;
}
.uk-form-row + .uk-form-row {
  margin-top: 24px;
}
.uk-form-stacked .uk-form-label {
  font-weight: 500;
  font-size: 13px;
  display: block;
  padding-bottom: 8px;
}
.uk-form-stacked .uk-form-label + p {
  margin-top: 0;
}
.uk-form-help-block {
  display: block;
  font-size: 12px;
  color: #727272;
  padding: 4px 0 0 0;
  font-style: italic;
}
.uk-form-width-large,
.uk-form-width-medium,
.uk-form-width-small,
.uk-form-width-mini {
  max-width: 100%;
}
/* grid */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 24px;
}
.uk-grid.uk-grid-small + .uk-grid-small,
.uk-grid.uk-grid-small > * > .uk-panel + .uk-panel,
.uk-grid.uk-grid-small > .uk-grid-margin {
  margin-top: 10px;
}
.uk-grid-divider.uk-grid-collapse {
  margin-left: 0;
  margin-right: 0;
}
.uk-grid-divider.uk-grid-collapse > * {
  padding-left: 0;
  padding-right: 0;
}
.uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1) + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-2-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-3-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-4-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-5-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-6-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-7-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-8-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-9-']:nth-child + .uk-flex-item-1 {
  border-left: 1px solid #ddd;
}
@media only screen and (min-width: 768px) {
  .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1) + .uk-flex-item-1 {
    border-left: 1px solid #ddd;
  }
}
@media only screen and (min-width: 960px) {
  .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1) + .uk-flex-item-1 {
    border-left: 1px solid #ddd;
  }
}
.uk-height-viewport {
  min-height: 200px;
}
/* icons */
[class*="uk-icon-"] {
  color: #727272;
}
/* input groups */
.uk-input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  /*&-icon {
        font-size: 20px !important;
        vertical-align: -3px;
    }*/
}
.uk-input-group > input[type=text] {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.uk-input-group-addon,
.uk-input-group > input[type=text] {
  display: table-cell;
}
.uk-input-group-addon {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
  padding: 0 16px;
  font-size: 16px;
  min-width: 22px;
}
.uk-input-group > .md-input-wrapper {
  display: inline-block;
}
.uk-input-group.uk-input-group-danger .uk-input-group-addon i {
  color: #e53935 !important;
}
.uk-input-group.uk-input-group-danger + .parsley-errors-list {
  margin-left: 58px;
}
.uk-input-group.uk-input-group-success .uk-input-group-addon i {
  color: #7cb342 !important;
}
/* list */
.uk-list-hover li:hover {
  background: rgba(0, 0, 0, 0.1);
}
/* nav */
.uk-nav-header {
  color: #727272;
  font-weight: normal;
}
.uk-nav-divider {
  box-shadow: none;
  border-top-color: rgba(0, 0, 0, 0.12);
}
.uk-nav-divider + .uk-nav-header {
  margin-top: 0;
}
.uk-nav-label {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 8px;
}
.uk-nav-side > li > a {
  font-weight: 500;
  line-height: 22px;
}
.uk-nav-side > li > a > i {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: -7px;
}
.uk-nav-side > li > a:hover,
.uk-nav-side > li > a:focus {
  background: transparent;
  box-shadow: none;
}
.uk-nav-side > li.uk-active > a {
  background: transparent;
  box-shadow: none;
}
.uk-nav-side > li.uk-active > a,
.uk-nav-side > li.uk-active > a > i {
  color: #7cb342;
}
.uk-nav-side > li li a {
  text-shadow: none;
  color: #212121;
}
.uk-nav-side ul.uk-nav-sub {
  padding-top: 0;
  padding-left: 24px;
}
/* pagination */
.uk-pagination {
  margin: 0;
}
.uk-pagination > li {
  outline: none !important;
}
.uk-pagination > li > a,
.uk-pagination > li > span {
  border: none;
  padding: 4px 8px;
  min-width: 32px;
  line-height: 24px;
  height: 32px;
  box-sizing: border-box;
  text-shadow: none;
  color: #212121;
  border-radius: 4px;
}
.uk-pagination > li > a [class*="uk-icon-"],
.uk-pagination > li > span [class*="uk-icon-"] {
  font-size: 16px;
}
.uk-pagination > li > a {
  background: transparent;
}
.uk-pagination > li > a:hover {
  background: #e1efd2;
}
.uk-pagination > li.uk-active > a,
.uk-pagination > li.uk-active > span {
  background: #7cb342;
}
.uk-pagination > li.uk-active > a,
.uk-pagination > li.uk-active > span,
.uk-pagination > li.uk-active > a:hover,
.uk-pagination > li.uk-active > span:hover {
  color: #fff;
}
.uk-pagination > li.uk-disabled > a,
.uk-pagination > li.uk-disabled > span {
  border: none;
  text-shadow: none;
  background: transparent !important;
  color: #aaa;
  cursor: default;
}
/* panels */
.uk-panel-box {
  border-radius: 2px;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}
.uk-panel-box .uk-panel-teaser {
  border-radius: 2px 2px 0 0;
}
/* tables */
.uk-table td {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.uk-table th {
  border-bottom: 1px #444;
}
.uk-table-nowrap td,
.uk-table-nowrap th {
  white-space: nowrap;
}
.uk-table-align-vertical td,
.uk-table-align-vertical th {
  vertical-align: middle;
}
.uk-table tr th.small_col,
.uk-table tr td.small_col {
  width: 1%;
}
.uk-table tr.row_checked td {
  background: #e3f2fd;
}
.uk-table .uk-table {
  margin-bottom: 0;
}
.uk-table .uk-table tr:last-child td {
  border-bottom: none;
}
.uk-table-no-border td {
  border-bottom-color: transparent;
}
/* sticky */
.uk-sticky-placeholder .uk-active {
  z-index: 1094;
}
/* subnav */
.uk-subnav-pill > * > * {
  color: #212121;
}
.uk-subnav-pill > .uk-active > * {
  background: #7cb342;
}
/* tables */
.uk-table thead th {
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
.uk-table thead th,
.uk-table tfoot td,
.uk-table tfoot th {
  font-style: normal;
  font-weight: 400;
  color: #727272;
  font-size: 14px;
}
.uk-table td {
  border-bottom-color: #e0e0e0;
}
.uk-table tfoot td,
.uk-table tfoot th {
  border-top: 2px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: rgba(0, 0, 0, 0.085);
}
.uk-table-hover tbody tr:hover {
  background: #e3f2fd;
}
/* thumbnails */
.uk-thumbnail {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.12);
}
.uk-thumbnail-caption {
  padding: 4px 4px 0;
  line-height: 20px;
  color: #727272;
  font-size: 12px;
}
/* utilities */
.uk-text-small {
  font-size: 12px;
}
.uk-text-muted {
  color: #757575 !important;
}
.uk-text-primary {
  color: #2196f3 !important;
}
.uk-text-danger {
  color: #e53935 !important;
}
.uk-text-success {
  color: #7cb342 !important;
}
.uk-text-warning {
  color: #ffa000 !important;
}
.uk-margin-bottom {
  margin-bottom: 16px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 8px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 32px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 48px !important;
}
.uk-margin-medium-top {
  margin-top: 32px !important;
}
.uk-margin-large-top {
  margin-top: 48px !important;
}
.uk-close {
  font-size: 18px;
  opacity: 1;
}
.uk-close:hover,
.uk-close:focus {
  opacity: 1;
}
.uk-close:after {
  opacity: 1 !important;
  color: #727272;
  content: '\e5cd';
  font-family: "Material Icons";
}
.uk-float-none {
  float: none !important;
}
/* ------------ Components ------------ */
/* accordion */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `uk-accordion-title`
 ========================================================================== */
.uk-accordion-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #f5f5f5;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
}
/* Sub-object: `uk-accordion-content`
 ========================================================================== */
.uk-accordion-content {
  padding: 0 15px 15px 15px;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
.uk-accordion-title {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 0;
  border: none;
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 24px 8px 16px;
  position: relative;
}
.uk-accordion-title:after {
  content: '\e313';
  font-family: "Material Icons";
  font-size: 18px;
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  color: #727272;
  transition: transform 280ms;
}
.uk-accordion-title.uk-active:after {
  transform: rotate(-180deg);
}
.uk-accordion-title-primary {
  background: #2196f3;
  color: #fff;
}
.uk-accordion-title-primary:after {
  color: #fff;
}
.uk-accordion-title-danger {
  background: #e53935;
  color: #fff;
}
.uk-accordion-title-danger:after {
  color: #fff;
}
.uk-accordion-title-success {
  background: #7cb342;
  color: #fff;
}
.uk-accordion-title-success:after {
  color: #fff;
}
.uk-accordion-title-warning {
  background: #ffa000;
  color: #fff;
}
.uk-accordion-title-warning:after {
  color: #fff;
}
.uk-accordion-content {
  padding: 16px;
}
.uk-accordion-alt .uk-accordion-title {
  background: #fff;
  margin: 0;
  padding: 16px 24px 16px 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-accordion-alt .uk-accordion-title:first-child {
  border-top: none;
}
.uk-accordion-alt .uk-accordion-title:after {
  color: #2196f3;
  content: '\e145';
  right: auto;
  left: 16px;
  top: 16px;
}
.uk-accordion-alt .uk-accordion-title.uk-active:after {
  transform: rotate(-180deg);
  content: '\e15b';
}
.uk-accordion-alt .uk-accordion-content {
  padding: 24px;
}
/* dotnav */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-dotnav {
  display: flex;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 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-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav:before,
.uk-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-dotnav:after {
  clear: both;
}
.uk-dotnav > * {
  float: left;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background: rgba(50, 50, 50, 0.4);
  transform: scale(1.3);
}
/* Modifier: `uk-dotnav-contrast`
 ========================================================================== */
.uk-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-dotnav-contrast > * > :hover,
.uk-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > .uk-active > * {
  background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.uk-dotnav-vertical {
  flex-direction: column;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav-vertical > * {
  float: none;
}
/* progress */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Clearing
 * 2. Vertical alignment if text is used
 */
.uk-progress {
  box-sizing: border-box;
  height: 20px;
  margin-bottom: 15px;
  background: #f5f5f5;
  /* 1 */
  overflow: hidden;
  /* 2 */
  line-height: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-progress {
  margin-top: 15px;
}
/* Sub-object: `uk-progress-bar`
 ========================================================================== */
/*
 * 1. Transition
 * 2. Needed for text
 */
.uk-progress-bar {
  width: 0;
  height: 100%;
  background: #00a8e6;
  float: left;
  /* 1 */
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/* Size modifiers
 ========================================================================== */
/* Mini */
.uk-progress-mini {
  height: 6px;
}
/* Small */
.uk-progress-small {
  height: 12px;
}
/* Color modifiers
 ========================================================================== */
.uk-progress-success .uk-progress-bar {
  background-color: #8cc14c;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #faa732;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #da314b;
}
/* Modifier: `uk-progress-striped`
 ========================================================================== */
.uk-progress-striped .uk-progress-bar {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}
/*
 * Animation
 */
.uk-progress-striped.uk-active .uk-progress-bar {
  -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  animation: uk-progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
/* Size modifiers
     ========================================================================== */
.uk-progress-mini,
.uk-progress-small {
  border-radius: 500px;
}
.uk-progress {
  box-shadow: none;
  border-radius: 2px;
}
.uk-progress-bar {
  background: #009688;
}
.uk-progress-success .uk-progress-bar {
  background-color: #7cb342;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #e53935;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #ffa000;
}
/* htmleditor */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: HTML editor
 ========================================================================== */
/* Sub-object `uk-htmleditor-navbar`
 ========================================================================== */
.uk-htmleditor-navbar {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
/*
 * 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: 41px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444;
  font-size: 11px;
  cursor: pointer;
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  text-shadow: 0 1px 0 #fff;
}
/*
 * 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: #fafafa;
  color: #444;
  outline: none;
  /* 2 */
  position: relative;
  z-index: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* OnClick */
.uk-htmleditor-navbar-nav > li > a:active {
  background-color: #eee;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
}
/* Active */
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background-color: #fafafa;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* 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;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
/*
 * 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: 41px;
  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;
}
/*
     * Apply same `border-radius` as `uk-htmleditor-navbar`
     */
.uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-navbar-flip`
     */
/* Collapse border */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav > li > a {
  margin-left: 0;
  margin-right: -1px;
}
/* Apply same `border-radius` as `uk-htmleditor-navbar` */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 0;
}
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:last-child > li:last-child > a {
  border-top-right-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-fullscreen`
     */
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  border: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar-nav > li > a {
  border-radius: 0 !important;
}
.uk-htmleditor-navbar {
  border-radius: 0;
  background: #f9f9f9;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.uk-htmleditor-navbar-nav > li > a {
  border: none;
  border-radius: 0 !important;
  height: 38px;
}
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background: #ebebeb;
}
.uk-htmleditor-navbar-nav > li:hover > a,
.uk-htmleditor-navbar-nav > li > a:focus {
  background: #ebebeb;
}
.uk-htmleditor-content {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-htmleditor-fullscreen {
  z-index: 1154;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  top: 38px;
}
/* upload */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form file
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-file {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 2. Expand height and required for the cursor
 */
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  font-size: 500px;
}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Upload
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
.uk-file-upload {
  width: 100%;
  padding: 32px 16px;
  box-sizing: border-box;
  background: #f5f5f5;
  text-align: center;
  transition: all 200ms ease-in;
}
.uk-file-upload p {
  margin: 0;
}
.uk-file-upload.uk-dragover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
div.uk-form-file {
  padding: 3px 2px;
}
div.uk-form-file.md-btn {
  padding: 2px 12px;
}
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  left: 0;
  font-size: 500px;
}
.uk-form-file input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}
/* form select */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.uk-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}
/* datepicker */
.uk-datepicker {
  z-index: 1094;
  width: auto;
  padding: 0;
}
.uk-datepicker-nav {
  margin-bottom: 15px;
  text-align: center;
  line-height: 20px;
  background: #009688;
  padding: 10px 0;
}
.uk-datepicker-nav a,
.uk-datepicker-nav a:hover {
  text-decoration: none;
  color: #fff;
}
.uk-datepicker-nav .uk-form-select {
  font: 400 16px / 22px "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 4px;
}
.uk-datepicker-nav .uk-form-select + .uk-form-select {
  margin-left: 2px;
}
.uk-datepicker-previous {
  float: left;
  margin-left: 8px;
}
.uk-datepicker-previous:after {
  content: "\f053";
}
.uk-datepicker-next {
  float: right;
  margin-right: 8px;
}
.uk-datepicker-next:after {
  content: "\f054";
}
.uk-datepicker-previous:after,
.uk-datepicker-next:after {
  width: 20px;
  font-family: FontAwesome;
}
.uk-datepicker.dp-top {
  transform-origin: 50% 100% !important;
}
.uk-datepicker-table {
  width: 100%;
}
.uk-datepicker-table th,
.uk-datepicker-table td {
  padding: 2px;
  font: 400 13px / 15px "Roboto", sans-serif;
}
.uk-datepicker-table th {
  color: #727272;
  font-size: 12px;
  text-transform: uppercase;
}
.uk-datepicker-table a {
  display: block;
  width: 30px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: #212121;
}
.uk-datepicker-table a:hover {
  background-color: rgba(0, 0, 0, 0.085);
  color: #212121;
  outline: none;
}
.uk-datepicker-table a.uk-active {
  background-color: #009688;
  color: #fff;
}
a.uk-datepicker-table-muted {
  color: #999;
}
/* autocomplete, timepicker */
.uk-autocomplete .uk-dropdown {
  display: block;
  max-height: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 0;
  border: none;
  transform: scale(0.25, 0);
  opacity: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: none !important;
          animation: none !important;
  transform-origin: 0 0;
}
.uk-autocomplete.uk-open .uk-dropdown {
  transform: scale(1);
  opacity: 1;
  max-height: 210px;
}
[data-uk-autocomplete] .uk-dropdown {
  width: 100%;
  box-sizing: border-box;
}
[data-uk-autocomplete] .uk-dropdown .uk-nav {
  margin: 0;
}
/* password toggle */
.uk-form-password-toggle {
  position: absolute;
  right: 8px;
  top: 16px;
  color: #727272;
}
.uk-form-password-toggle:hover {
  color: #727272;
}
/* nestable */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Nestable
 ========================================================================== */
.uk-nestable {
  padding: 0;
  list-style: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-nestable a,
.uk-nestable img {
  -webkit-touch-callout: none;
}
/* Sub-object `uk-nestable-list`
 ========================================================================== */
.uk-nestable-list {
  margin: 0;
  padding-left: 40px;
  list-style: none;
}
/* Sub-modifier `uk-nestable-item`
 ========================================================================== */
/*
 * 1. Deactivate browser touch actions in IE11
 */
.uk-nestable-item {
  /* 1 */
  touch-action: none;
}
.uk-nestable-item + .uk-nestable-item {
  margin-top: 10px;
}
.uk-nestable-list:not(.uk-nestable-dragged) > .uk-nestable-item:first-child {
  margin-top: 10px;
}
/* Sub-modifier `uk-nestable-dragged`
 ========================================================================== */
/*
 * 1. Reset style
 */
.uk-nestable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
  /* 1 */
  padding-left: 0;
}
/* Sub-modifier `uk-nestable-placeholder`
 ========================================================================== */
.uk-nestable-placeholder {
  position: relative;
}
.uk-nestable-placeholder > * {
  opacity: 0;
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px dashed #ddd;
  opacity: 1;
}
/* Empty List
 ========================================================================== */
.uk-nestable-empty {
  min-height: 30px;
}
/* Sub-object `uk-nestable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-nestable-handle {
  touch-action: none;
}
/* Hover */
.uk-nestable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-nestable-moving`
 ========================================================================== */
.uk-nestable-moving,
.uk-nestable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-nestable-moving iframe {
  pointer-events: none;
}
/* [data-nestable-action='toggle']
 ========================================================================== */
/*
 * 1. Makes text unselectable. Happens if double clicked by mistake
 */
[data-nestable-action='toggle'] {
  cursor: pointer;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Sub-object `.uk-nestable-toggle`
 ========================================================================== */
.uk-nestable-toggle {
  display: inline-block;
  visibility: hidden;
}
.uk-nestable-toggle:after {
  content: "\f147";
  font-family: FontAwesome;
}
.uk-parent > :not(.uk-nestable-list) .uk-nestable-toggle {
  visibility: visible;
}
/*
 * Collapsed
 */
.uk-collapsed .uk-nestable-list {
  display: none;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\f196";
}
/* Sub-object `uk-nestable-panel`
 ========================================================================== */
.uk-nestable-panel {
  padding: 5px;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 0 #fff;
}
.uk-nestable-handle {
  margin-right: 16px;
}
.uk-nestable-panel {
  padding: 8px 16px;
  background: #fff;
  border-radius: 4px;
  border: none;
  text-shadow: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: none;
  background: rgba(0, 0, 0, 0.085);
  opacity: 1;
}
.uk-nestable-toggle {
  font-size: 18px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 8px;
  display: none;
}
.uk-nestable-toggle:after {
  vertical-align: top;
  content: '\e316';
  font-family: "Material Icons";
}
.uk-parent > .uk-nestable-panel .uk-nestable-toggle {
  display: inline-block;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\e313";
}
/* notify */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Notify
 ========================================================================== */
/*
 * Message container for positioning
 */
.uk-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `uk-notify-message`
========================================================================== */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  border: 1px solid #444;
  border-radius: 4px;
}
/* Close in notify
 ========================================================================== */
.uk-notify-message > .uk-close {
  visibility: hidden;
  float: right;
}
.uk-notify-message:hover > .uk-close {
  visibility: visible;
}
/* Modifier: `uk-notify-message-primary`
 ========================================================================== */
.uk-notify-message-primary {
  background: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
/* Modifier: `uk-notify-message-success`
 ========================================================================== */
.uk-notify-message-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `uk-notify-message-warning`
 ========================================================================== */
.uk-notify-message-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `uk-notify-message-danger`
 ========================================================================== */
.uk-notify-message-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}
.uk-notify {
  z-index: 1114;
  width: 400px;
  top: 56px;
  max-width: 100%;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  margin-left: -200px;
}
.uk-notify-top-left {
  left: 24px;
}
.uk-notify-top-right {
  right: 24px;
}
.uk-notify-bottom-left {
  left: 24px;
}
.uk-notify-bottom-right {
  right: 24px;
}
.uk-notify-bottom-center,
.uk-notify-bottom-left,
.uk-notify-bottom-right {
  top: auto;
  bottom: 8px;
}
.uk-notify-message {
  background: #323232;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 18px;
  border: none;
}
.uk-notify .uk-close {
  display: none;
}
.uk-notify .notify-action {
  float: right;
  text-transform: uppercase;
  color: #8bc34a;
  margin-left: 16px;
}
.uk-notify .notify-action:hover {
  color: #689f38;
}
.uk-notify .notify-content {
  overflow: hidden;
}
.uk-notify-message-info {
  background: #1976d2;
  color: #fff;
}
.uk-notify-message-success {
  background: #7cb342;
}
.uk-notify-message-warning {
  background: #ffa000;
}
.uk-notify-message-danger {
  background: #e53935;
}
.uk-notify-message-info,
.uk-notify-message-success,
.uk-notify-message-warning,
.uk-notify-message-danger {
  color: #fff;
}
.uk-notify-message-info .notify-action,
.uk-notify-message-success .notify-action,
.uk-notify-message-warning .notify-action,
.uk-notify-message-danger .notify-action {
  color: #fff;
}
.uk-notify-message-info .notify-action:hover,
.uk-notify-message-success .notify-action:hover,
.uk-notify-message-warning .notify-action:hover,
.uk-notify-message-danger .notify-action:hover {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .uk-notify-top-center,
  .uk-notify-top-left,
  .uk-notify-top-right,
  .uk-notify-bottom-center,
  .uk-notify-bottom-left,
  .uk-notify-bottom-right {
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
  }
  .uk-notify-top-center > .uk-notify-message,
  .uk-notify-top-left > .uk-notify-message,
  .uk-notify-top-right > .uk-notify-message,
  .uk-notify-bottom-center > .uk-notify-message,
  .uk-notify-bottom-left > .uk-notify-message,
  .uk-notify-bottom-right > .uk-notify-message {
    border-radius: 0;
    padding: 16px 32px;
  }
  .uk-notify-top-center,
  .uk-notify-top-left,
  .uk-notify-top-right {
    top: 0;
    bottom: auto;
  }
  .uk-notify-bottom-center,
  .uk-notify-bottom-left,
  .uk-notify-bottom-right {
    top: auto;
    bottom: -10px;
  }
}
@media only screen and (min-width: 960px) {
  .sidebar_main_active .uk-notify-top-left,
  .sidebar_main_open .uk-notify-top-left {
    left: 256px;
  }
  .sidebar_main_active .uk-notify-top-center,
  .sidebar_main_open .uk-notify-top-center {
    margin-left: -80px;
  }
  .sidebar_main_active .uk-notify-bottom-left,
  .sidebar_main_open .uk-notify-bottom-left {
    left: 256px;
  }
  .sidebar_main_active .uk-notify-bottom-center,
  .sidebar_main_open .uk-notify-bottom-center {
    margin-left: -80px;
  }
}
/* slideshow */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.uk-slideshow {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  touch-action: pan-y;
}
/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.uk-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}
/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.uk-slideshow > .uk-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}
/*
 * Hide default images which is only relevant to keep existing proportions
 */
.uk-slideshow > li > img {
  visibility: hidden;
}
/*
 * Pointer for controls
 */
[data-uk-slideshow-slide] {
  cursor: pointer;
}
/* Modifier: `uk-slideshow-fullscreen`
 ========================================================================== */
.uk-slideshow-fullscreen,
.uk-slideshow-fullscreen > li {
  height: 100vh;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-slideshow-fade-in {
  -webkit-animation: uk-fade 0.5s linear;
  animation: uk-fade 0.5s linear;
}
.uk-slideshow-fade-out {
  -webkit-animation: uk-fade 0.5s linear reverse;
  animation: uk-fade 0.5s linear reverse;
}
/*
 * Scroll
 */
.uk-slideshow-scroll-forward-in {
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
  animation: uk-slide-right 0.5s ease-in-out;
}
.uk-slideshow-scroll-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-scroll-backward-in {
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
  animation: uk-slide-left 0.5s ease-in-out;
}
.uk-slideshow-scroll-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
/*
 * Scale
 */
.uk-slideshow-scale-out {
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
}
/*
 * Swipe
 */
.uk-slideshow-swipe-forward-in {
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  animation: uk-slide-left-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-backward-in {
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  animation: uk-slide-right-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-forward-in:before,
.uk-slideshow-swipe-backward-in:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  animation: uk-fade 0.5s ease-in-out reverse;
}
/* slider */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * RTL Compatibility
 */
[data-uk-slider] {
  direction: ltr;
}
html[dir="rtl"] .uk-slider > * {
  direction: rtl;
}
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.uk-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 */
.uk-slider:not(.uk-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Sub-object item
 * 1. Position items above each other
 */
.uk-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}
/*
 * Dragged
 */
.uk-slider:not(.uk-drag) {
  transition: transform 200ms linear;
}
/*
 * 1. Makes text unselectable
 */
.uk-slider.uk-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-slider a,
.uk-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.uk-slider img {
  pointer-events: none;
}
/* Modifier: `uk-slider-fullscreen`
 ========================================================================== */
.uk-slider-fullscreen,
.uk-slider-fullscreen > li {
  height: 100vh;
}
.uk-slider .uk-active .md-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.uk-slider-center li {
  opacity: 0.4;
}
.uk-slider-center li.uk-active {
  opacity: 1;
}
/* slidenav */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.uk-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  /* 3 */
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.uk-slidenav:hover,
.uk-slidenav:focus {
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  /* 4 */
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}
/* Active */
.uk-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}
/*
 * Icons
 */
.uk-slidenav-previous:before {
  content: "\f104";
  font-family: FontAwesome;
}
.uk-slidenav-next:before {
  content: "\f105";
  font-family: FontAwesome;
}
/* Sub-object: `uk-slidenav-position`
 ========================================================================== */
/*
 * Create position context
 */
.uk-slidenav-position {
  position: relative;
}
/*
 * Center vertically
 */
.uk-slidenav-position .uk-slidenav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}
.uk-slidenav-position:hover .uk-slidenav {
  display: block;
}
.uk-slidenav-position .uk-slidenav-previous {
  left: 20px;
}
.uk-slidenav-position .uk-slidenav-next {
  right: 20px;
}
/* Modifier: `uk-slidenav-contrast`
 ========================================================================== */
.uk-slidenav-contrast {
  color: rgba(255, 255, 255, 0.5);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-slidenav-contrast:hover,
.uk-slidenav-contrast:focus {
  color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-slidenav-contrast:active {
  color: rgba(255, 255, 255, 0.9);
}
/* tooltips */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 5px 8px;
  /* 4 */
  background: #333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.uk-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333;
}
/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.uk-tooltip-top:after,
.uk-tooltip-top-left:after,
.uk-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333;
}
/*
 * Bottom
 */
.uk-tooltip-bottom:after,
.uk-tooltip-bottom-left:after,
.uk-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333;
}
/*
 * Top/Bottom center
 */
.uk-tooltip-top:after,
.uk-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}
/*
 * Top/Bottom left
 */
.uk-tooltip-top-left:after,
.uk-tooltip-bottom-left:after {
  left: 10px;
}
/*
 * Top/Bottom right
 */
.uk-tooltip-top-right:after,
.uk-tooltip-bottom-right:after {
  right: 10px;
}
/*
 * Left
 */
.uk-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
/*
 * Right
 */
.uk-tooltip-right:after {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: #333;
}
.uk-tooltip {
  background: #424242;
  color: #fff;
  font-size: 13px;
  padding: 3px 16px;
  line-height: 22px;
  text-shadow: none;
  min-width: 80px;
  text-align: center;
  z-index: 1304;
  opacity: 0;
}
.uk-tooltip .uk-tooltip-inner {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.uk-tooltip:after {
  display: none !important;
}
.uk-tooltip.long-text {
  text-align: left;
}
.uk-tooltip.long-text .uk-tooltip-inner {
  white-space: normal;
  overflow: visible;
  line-height: 18px;
  padding: 4px 0;
}
.uk-tooltip-small {
  transform: scale(0.85);
}
.uk-tooltip-top {
  z-index: 9999;
}
.touch .uk-tooltip {
  opacity: 1;
}
/* tabs */
.uk-tab {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.uk-sticky-placeholder .uk-tab {
  background: #fff;
  padding-top: 8px;
}
.uk-tab > li {
  margin-bottom: 0;
  margin-top: 0 ;
  z-index: 1;
}
.uk-tab > li > a {
  font-size: 13px;
  text-transform: uppercase;
  color: #212121;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 !important;
  font-weight: 500;
  min-width: 100px;
  max-width: 100%;
  text-align: center;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px !important;
  margin: 0 !important;
  box-sizing: border-box;
  position: relative;
  top: 1px;
  text-shadow: none;
}
.uk-tab > li > a:hover,
.uk-tab > li > a:focus {
  background: none;
  color: #212121;
  border-bottom-color: #b2dbfb;
}
.uk-tab > li.uk-active > a {
  background: transparent !important;
  border-bottom-color: #2196f3;
}
.uk-tab > li.uk-disabled > a,
.uk-tab > li.uk-disabled > a:hover,
.uk-tab > li.uk-disabled > a:focus {
  color: #aaa;
}
.uk-tab-bottom li {
  margin-top: 0;
}
.uk-tab-bottom li > a {
  border-top: 2px solid transparent;
  border-bottom: none;
  top: auto;
  bottom: 1px;
}
.uk-tab-bottom li > a:hover,
.uk-tab-bottom li > a:focus {
  border-top-color: #b2dbfb;
}
.uk-tab-bottom li.uk-active > a {
  border-top-color: #2196f3;
}
.uk-tab-left {
  border-bottom: none;
}
.uk-tab-left li > a {
  border-right: 2px solid transparent;
  border-bottom: none;
  text-align: right;
  top: auto;
  bottom: auto;
}
.uk-tab-left li > a:hover,
.uk-tab-left li > a:focus {
  border-right-color: #b2dbfb;
}
.uk-tab-left li.uk-active > a {
  border-right-color: #2196f3;
}
.uk-tab-right {
  border-bottom: none;
}
.uk-tab-right li > a {
  border-left: 2px solid transparent;
  border-bottom: none;
  text-align: left;
  top: auto;
  bottom: auto;
}
.uk-tab-right li > a:hover,
.uk-tab-right li > a:focus {
  border-left-color: #b2dbfb;
}
.uk-tab-right li.uk-active > a {
  border-left-color: #2196f3;
}
.uk-tab-responsive li a {
  border: none !important;
}
.uk-tab-responsive > a:before {
  content: '\e5d2';
  font-family: "Material Icons";
  color: #727272;
  margin-right: 8px;
  vertical-align: -4px;
  font-size: 18px;
}
.uk-tab-icons > li > a {
  min-width: 64px;
}
.uk-tab-icons > li > a > .material-icons {
  font-size: 24px;
}
.uk-tab-double-header {
  margin: 10px 24px 0 !important;
}
.uk-tab-double-header > li > a {
  color: #fff;
  border-bottom: 4px solid transparent;
}
.uk-tab-double-header > li > a:hover,
.uk-tab-double-header > li > a:focus {
  color: #fff;
  border-bottom-color: #39a1f4;
}
.uk-tab-double-header > li.uk-active > a {
  color: #fff;
  border-bottom-color: #7cb342;
}
.uk-tab-double-header > li.uk-tab-responsive > a {
  border-bottom: none;
  padding-bottom: 5px !important;
}
.uk-tab-double-header > li.uk-tab-responsive > a:before {
  color: #fff;
}
/* text truncate */
.uk-text-truncate {
  display: block;
}
/* sortable */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable > * {
  touch-action: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-sortable a,
.uk-sortable img {
  -webkit-touch-callout: none;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Sub-modifier `uk-sortable-dragged`
 ========================================================================== */
.uk-sortable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
}
/* Sub-modifier `uk-sortable-placeholder`
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
}
/* Empty List
 ========================================================================== */
.uk-sortable-empty {
  min-height: 30px;
}
/* Sub-object `uk-sortable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable-handle {
  touch-action: none;
}
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-sortable-moving`
 ========================================================================== */
.uk-sortable-moving,
.uk-sortable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
  pointer-events: none;
}
.uk-sortable > * {
  touch-action: auto;
}
.uk-sortable.sortable-handler > * {
  cursor: move;
}
.uk-sortable .sortable-handler {
  cursor: move;
}
.uk-sortable-single {
  min-height: 0;
}
.uk-switcher {
  overflow: hidden;
}
/*
* add extra Uikit grid sizes
*
* usage:
* set custom breakpoint (1480px) and name ("xlarge-x")
* @media (min-width: 1480px) {
*  .add-grid-sizes(xlarge-x);
* }
*/
@media (min-width: 1480px) {
  /* Whole */
  .uk-width-xLarge-1-1,
  .uk-grid-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,
  .uk-grid-width-xLarge-1-2 > *,
  .uk-grid-width-xLarge-2-4 > *,
  .uk-grid-width-xLarge-3-6 > *,
  .uk-grid-width-xLarge-5-10 > * {
    width: 50%;
  }
  /* Thirds */
  .uk-width-xLarge-1-3,
  .uk-width-xLarge-2-6,
  .uk-grid-width-xLarge-1-3 > *,
  .uk-grid-width-xLarge-2-6 > * {
    width: 33.333%;
  }
  .uk-width-xLarge-2-3,
  .uk-width-xLarge-4-6,
  .uk-grid-width-xLarge-2-3 > *,
  .uk-grid-width-xLarge-4-6 > * {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-xLarge-1-4,
  .uk-grid-width-xLarge-1-4 > * {
    width: 25%;
  }
  .uk-width-xLarge-3-4,
  .uk-grid-width-xLarge-3-4 > * {
    width: 75%;
  }
  /* Fifths */
  .uk-width-xLarge-1-5,
  .uk-width-xLarge-2-10,
  .uk-grid-width-xLarge-1-5 > *,
  .uk-grid-width-xLarge-2-10 > * {
    width: 20%;
  }
  .uk-width-xLarge-2-5,
  .uk-width-xLarge-4-10,
  .uk-grid-width-xLarge-2-5 > *,
  .uk-grid-width-xLarge-4-10 > * {
    width: 40%;
  }
  .uk-width-xLarge-3-5,
  .uk-width-xLarge-6-10,
  .uk-grid-width-xLarge-3-5 > *,
  .uk-grid-width-xLarge-6-10 > * {
    width: 60%;
  }
  .uk-width-xLarge-4-5,
  .uk-width-xLarge-8-10,
  .uk-grid-width-xLarge-4-5 > *,
  .uk-grid-width-xLarge-8-10 > * {
    width: 80%;
  }
  /* Sixths */
  .uk-width-xLarge-1-6,
  .uk-grid-width-xLarge-1-6 > * {
    width: 16.666%;
  }
  .uk-width-xLarge-5-6,
  .uk-grid-width-xLarge-5-6 > * {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-xLarge-1-10,
  .uk-grid-width-xLarge-1-10 > * {
    width: 10%;
  }
  .uk-width-xLarge-3-10,
  .uk-grid-width-xLarge-3-10 > * {
    width: 30%;
  }
  .uk-width-xLarge-7-10,
  .uk-grid-width-xLarge-7-10 > * {
    width: 70%;
  }
  .uk-width-xLarge-9-10,
  .uk-grid-width-xLarge-9-10 > * {
    width: 90%;
  }
}
/* ie9 fixes */
.lte-ie9 *[class*="uk-animation-"] {
  opacity: 1 !important;
}
/* bg colors */
.md-bg-cyan {
  background-color: #00acc1 !important;
  color: #fff;
}
.md-bg-light-green {
  background-color: #7cb342 !important;
  color: #fff;
}
.md-bg-grey {
  background-color: #616161 !important;
  color: #fff;
}
.md-bg-red {
  background-color: #d32f2f !important;
  color: #fff;
}
.md-bg-light-blue {
  background-color: #0288d1 !important;
  color: #fff;
}
.md-bg-teal {
  background-color: #00897b !important;
  color: #fff;
}
.md-bg-purple {
  background-color: #8e24aa !important;
  color: #fff;
}
/* buttons */
.md-btn {
  background: #fff;
  border: none;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  min-height: 31px;
  min-width: 70px;
  padding: 2px 16px;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  transition: all 280ms ease;
  color: #212121;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  font: 500 14px / 31px "Roboto", sans-serif !important;
}
.md-btn:hover,
.md-btn:focus,
.md-btn:active,
.uk-button-dropdown.uk-open > .md-btn {
  background: #fff;
  outline: none;
  text-decoration: none;
  color: #212121;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.md-btn:active,
.md-btn.uk-active,
.uk-button-dropdown.uk-open > .md-btn {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.md-btn.uk-active {
  position: relative;
}
.md-btn.uk-active:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: '';
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}
.md-btn-flat {
  box-shadow: none !important;
  background: none;
}
.md-btn-flat:hover,
.md-btn-flat:focus {
  background: rgba(153, 153, 153, 0.2);
}
.md-btn-flat:active,
.md-btn-flat.uk-active {
  background: rgba(153, 153, 153, 0.4);
}
.md-btn-flat-danger,
.md-btn-flat-danger:hover,
.md-btn-flat-danger:focus,
.md-btn-flat-danger:active,
.md-btn-flat-danger .uk-active {
  color: #e53935;
}
.md-btn-flat-danger:hover,
.md-btn-flat-danger:focus,
.md-btn-flat-danger:active {
  background: #fceaea;
}
.md-btn-flat-danger.uk-active {
  color: #cd1e1a;
  background: #f6bebd;
}
.md-btn-flat-primary,
.md-btn-flat-primary:hover,
.md-btn-flat-primary:focus,
.md-btn-flat-primary:active,
.md-btn-flat-primary.uk-active {
  color: #1976d2;
}
.md-btn-flat-primary:hover,
.md-btn-flat-primary:focus,
.md-btn-flat-primary:active {
  background: #e3f2fd;
}
.md-btn-flat-primary.uk-active {
  color: #0c7cd5;
  background: #b2dbfb;
}
.md-btn-flat-success,
.md-btn-flat-success:hover,
.md-btn-flat-success:focus,
.md-btn-flat-success:active,
.md-btn-flat-success.uk-active {
  color: #7cb342;
}
.md-btn-flat-success:hover,
.md-btn-flat-success:focus,
.md-btn-flat-success:active {
  background: #e1efd2;
}
.md-btn-flat-success.uk-active {
  color: #628e34;
  background: #c8e1ad;
}
.md-btn-flat-warning,
.md-btn-flat-warning:hover,
.md-btn-flat-warning:focus,
.md-btn-flat-warning:active,
.md-btn-flat-warning.uk-active {
  color: #ffa000;
}
.md-btn-flat-warning:hover,
.md-btn-flat-warning:focus,
.md-btn-flat-warning:active {
  background: #ffeccc;
}
.md-btn-flat-warning.uk-active {
  color: #cc8000;
  background: #ffd999;
}
.md-btn-flat.disabled {
  background: none !important;
}
.md-btn-danger,
.md-btn-danger:hover,
.md-btn-danger:focus,
.md-btn-danger:active,
.md-btn-danger.uk-active {
  background: #e53935;
}
.md-btn-primary,
.md-btn-primary:hover,
.md-btn-primary:focus,
.md-btn-primary:active,
.md-btn-primary.uk-active {
  background: #2196f3;
}
.md-btn-success,
.md-btn-success:hover,
.md-btn-success:focus,
.md-btn-success:active,
.md-btn-success.uk-active {
  background: #7cb342;
}
.md-btn-warning,
.md-btn-warning:hover,
.md-btn-warning:focus,
.md-btn-warning:active,
.md-btn-warning.uk-active {
  background: #ffa000;
}
.md-btn-danger,
.md-btn-primary,
.md-btn-success,
.md-btn-warning,
.md-btn-danger:hover,
.md-btn-primary:hover,
.md-btn-success:hover,
.md-btn-warning:hover,
.md-btn-danger:focus,
.md-btn-primary:focus,
.md-btn-success:focus,
.md-btn-warning:focus,
.md-btn-danger:active,
.md-btn-primary:active,
.md-btn-success:active,
.md-btn-warning:active,
.md-btn-danger.uk-active,
.md-btn-primary.uk-active,
.md-btn-success.uk-active,
.md-btn-warning.uk-active,
.md-btn-danger > i,
.md-btn-primary > i,
.md-btn-success > i,
.md-btn-warning > i {
  color: #fff;
}
.md-btn.disabled,
.md-btn.disabled:hover,
.md-btn.disabled:focus,
.md-btn.disabled:active,
.md-btn.disabled.uk-active {
  color: #a8a8a8;
  background: #eaeaea;
  box-shadow: none !important;
  cursor: default;
  pointer-events: none;
}
.md-btn > i.material-icons {
  margin-top: 5px;
  font-size: 18px;
}
.md-btn-mini {
  line-height: 21px !important;
  min-width: 12px;
  font-size: 10px !important;
  min-height: 24px;
}
.md-btn-small {
  line-height: 27px !important;
  min-width: 14px;
  font-size: 11px !important;
}
.md-btn-large {
  line-height: 42px !important;
  font-size: 16px !important;
}
.md-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.md-btn + .md-btn {
  margin-left: 8px;
}
.md-btn-block {
  width: 100%;
}
.md-btn-block + .md-btn-block {
  margin-left: 0;
  margin-top: 12px;
}
.md-btn + .md-btn-group {
  margin-left: 16px;
}
.md-btn-facebook {
  background: #3b5998 !important;
}
.md-btn-twitter {
  background: #00aced !important;
}
.md-btn-gplus {
  background: #dd4b39 !important;
}
.md-btn-facebook,
.md-btn-twitter,
.md-btn-gplus,
.md-btn-facebook > i,
.md-btn-twitter > i,
.md-btn-gplus > i {
  color: #fff !important;
}
.md-btn-icon > i.no_margin {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.md-btn-icon-large,
.md-btn-icon.md-btn-large {
  min-width: 72px;
}
.md-btn-icon-large > i,
.md-btn-icon.md-btn-large > i {
  font-size: 24px;
  margin-right: 12px;
  vertical-align: -3px;
}
.md-btn-icon-default,
.md-btn-icon {
  min-width: 64px;
}
.md-btn-icon-default > i,
.md-btn-icon > i {
  font-size: 18px;
  margin-right: 8px;
  vertical-align: -2px;
}
.md-btn-icon-small,
.md-btn-icon.md-btn-small {
  min-width: 48px;
}
.md-btn-icon-small > i,
.md-btn-icon.md-btn-small > i {
  font-size: 16px;
  margin-right: 6px;
  vertical-align: -2px;
}
.md-btn-icon-mini,
.md-btn-icon.md-btn-mini {
  min-width: 36px;
}
.md-btn-icon-mini > i,
.md-btn-icon.md-btn-mini > i {
  font-size: 16px;
  margin-right: 4px;
  vertical-align: -2px;
}
.md-fab {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: #727272;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.md-fab:hover,
.md-fab:focus,
.md-fab:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.md-fab > i {
  font-size: 36px;
  line-height: 64px;
  height: inherit;
  width: inherit;
  position: absolute;
  left: 0;
  top: 0;
  color: #727272;
}
.md-fab.md-fab-accent {
  background: #7cb342;
}
.md-fab.md-fab-accent > i {
  color: #fff;
}
.md-fab.md-fab-success {
  background: #7cb342;
}
.md-fab.md-fab-success > i {
  color: #fff;
}
.md-fab.md-fab-danger {
  background: #e53935;
}
.md-fab.md-fab-danger > i {
  color: #fff;
}
.md-fab.md-fab-primary {
  background: #2196f3;
}
.md-fab.md-fab-primary > i {
  color: #fff;
}
.md-fab.md-fab-warning {
  background: #ffa000;
}
.md-fab.md-fab-warning > i {
  color: #fff;
}
.md-fab.md-fab-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.md-fab.md-fab-small > i {
  line-height: 48px;
  height: inherit;
  width: inherit;
  font-size: 24px;
}
.md-fab-speed-dial .md-fab-action-close {
  display: none;
}
.md-fab-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1004;
  transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 767px) {
  .md-fab-wrapper {
    bottom: 20px;
    right: 20px;
  }
}
.md-fab-wrapper > .md-fab + .md-fab {
  margin-top: 16px;
}
.md-fab-wrapper.md-fab-in-card {
  position: absolute;
}
.md-fab-speed-dial .md-fab-wrapper-small {
  position: absolute;
  bottom: 80px;
  right: 8px;
  min-height: 48px;
  width: 48px;
  z-index: -1;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  right: 0;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(2) {
  bottom: 64px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(3) {
  bottom: 128px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(4) {
  bottom: 192px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(5) {
  bottom: 256px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(6) {
  bottom: 320px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(7) {
  bottom: 384px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(8) {
  bottom: 448px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small {
  position: absolute;
  right: 80px;
  bottom: 8px;
  min-height: 48px;
  width: 48px;
  z-index: -1;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  right: 0;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(2) {
  right: 64px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(3) {
  right: 128px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(4) {
  right: 192px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(5) {
  right: 256px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(6) {
  right: 320px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(7) {
  right: 384px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(8) {
  right: 448px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab {
  display: inline-block;
  vertical-align: bottom;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small {
  display: none;
  min-height: 48px;
  width: auto;
  z-index: -1;
  white-space: nowrap;
  padding-bottom: 8px;
  vertical-align: bottom;
  position: static;
  right: auto;
  bottom: auto;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small {
  position: static;
  right: auto;
  display: inline-block;
  vertical-align: bottom;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small + .md-fab-small {
  margin-left: 16px;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small:last-child {
  margin-right: 16px;
}
.md-fab-speed-dial-horizontal[data-fab-hover].md-fab-over .md-fab-wrapper-small {
  display: inline-block;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small {
  margin-left: 8px;
  position: static;
  display: none;
  bottom: auto;
  right: auto;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small {
  position: static;
  bottom: auto;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small + .md-fab-small {
  margin-top: 16px;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small:last-child {
  margin-bottom: 16px;
}
.md-fab-speed-dial[data-fab-hover].md-fab-over .md-fab-wrapper-small {
  display: block;
}
.md-fab-toolbar {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.md-fab-toolbar > i {
  cursor: pointer;
}
.md-fab-toolbar-actions {
  visibility: hidden;
  white-space: nowrap;
  padding: 0 16px;
  overflow: hidden;
  box-sizing: border-box;
}
.md-fab-toolbar-actions > a,
.md-fab-toolbar-actions > button {
  display: block;
  float: left;
  opacity: 0;
  margin: 0 0 0 16px;
  height: 64px;
  width: 48px;
  box-sizing: border-box;
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.md-fab-toolbar-actions > a:first-child,
.md-fab-toolbar-actions > button:first-child {
  margin-left: 0;
}
.md-fab-toolbar-actions .material-icons {
  font-size: 36px;
  line-height: 64px;
}
.md-fab-toolbar.md-fab-animated {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}
.md-fab-toolbar.md-fab-animated > i {
  display: none;
}
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions {
  visibility: visible;
}
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > a,
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > button {
  opacity: 1;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a,
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button {
  height: 48px;
  width: 36px;
  padding: 0;
  margin: 0 0 0 8px;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a:first-child,
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button:first-child {
  margin-left: 0;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions .material-icons {
  font-size: 24px;
  line-height: 48px;
  height: inherit;
}
.md-fab-sheet {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.md-fab-sheet > i {
  cursor: pointer;
}
.md-fab-sheet-actions {
  visibility: hidden;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  padding: 4px 0;
}
.md-fab-sheet-actions > a {
  display: block;
  opacity: 0;
  padding: 4px 16px;
  box-sizing: border-box;
  font: 400 16px / 32px "Roboto", sans-serif;
  text-align: left;
}
.md-fab-sheet-actions > a,
.md-fab-sheet-actions > a:hover {
  color: #212121;
}
.md-fab-sheet-actions .material-icons {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: -6px;
}
.md-fab-sheet.md-fab-animated {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}
.md-fab-sheet.md-fab-animated > i {
  display: none;
}
.md-fab-sheet.md-fab-active .md-fab-sheet-actions {
  visibility: visible;
}
.md-fab-sheet.md-fab-active .md-fab-sheet-actions > a {
  opacity: 1;
}
.sidebar_secondary_active .md-fab-wrapper {
  margin-right: 264px;
}
@media only screen and (max-width: 767px) {
  .sidebar_secondary_active .md-fab-wrapper {
    margin-right: 280px;
  }
}
.md-toggle-group .md-toggle-button {
  border-width: 0 0 2px;
  border-style: solid;
  border-color: transparent;
  background: none;
  line-height: 30px;
  min-width: 42px;
  text-align: center;
  padding: 0 8px;
  vertical-align: middle;
  cursor: pointer;
}
.md-toggle-group .md-toggle-button.md-toggle-active {
  border-bottom-color: #212121;
}
.md-toggle-group.md-toggle-group-small .md-toggle-button {
  font-size: 11px;
  line-height: 24px;
  min-width: 16px;
  padding: 0 6px;
}
.md-btn-group {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.md-btn-group .md-btn {
  vertical-align: top;
  margin-left: 0 !important;
}
.md-btn-group .md-btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.md-btn-group .md-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.md-btn-group .md-btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* forms */
select,
textarea,
input:not([type]),
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  outline: none;
}
select.md-input,
textarea.md-input,
input:not([type]).md-input,
input[type="text"].md-input,
input[type="password"].md-input,
input[type="datetime"].md-input,
input[type="datetime-local"].md-input,
input[type="date"].md-input,
input[type="month"].md-input,
input[type="time"].md-input,
input[type="week"].md-input,
input[type="number"].md-input,
input[type="email"].md-input,
input[type="url"].md-input,
input[type="search"].md-input,
input[type="tel"].md-input,
input[type="color"].md-input {
  border-radius: 0;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  font: 400 15px / 18px "Roboto", sans-serif;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
  box-sizing: border-box;
  padding: 12px 4px;
  background: transparent;
  width: 100%;
  display: block;
}
select.md-input.md-input-danger,
textarea.md-input.md-input-danger,
input:not([type]).md-input.md-input-danger,
input[type="text"].md-input.md-input-danger,
input[type="password"].md-input.md-input-danger,
input[type="datetime"].md-input.md-input-danger,
input[type="datetime-local"].md-input.md-input-danger,
input[type="date"].md-input.md-input-danger,
input[type="month"].md-input.md-input-danger,
input[type="time"].md-input.md-input-danger,
input[type="week"].md-input.md-input-danger,
input[type="number"].md-input.md-input-danger,
input[type="email"].md-input.md-input-danger,
input[type="url"].md-input.md-input-danger,
input[type="search"].md-input.md-input-danger,
input[type="tel"].md-input.md-input-danger,
input[type="color"].md-input.md-input-danger {
  border-color: #e53935;
}
select.md-input.md-input-danger:focus,
textarea.md-input.md-input-danger:focus,
input:not([type]).md-input.md-input-danger:focus,
input[type="text"].md-input.md-input-danger:focus,
input[type="password"].md-input.md-input-danger:focus,
input[type="datetime"].md-input.md-input-danger:focus,
input[type="datetime-local"].md-input.md-input-danger:focus,
input[type="date"].md-input.md-input-danger:focus,
input[type="month"].md-input.md-input-danger:focus,
input[type="time"].md-input.md-input-danger:focus,
input[type="week"].md-input.md-input-danger:focus,
input[type="number"].md-input.md-input-danger:focus,
input[type="email"].md-input.md-input-danger:focus,
input[type="url"].md-input.md-input-danger:focus,
input[type="search"].md-input.md-input-danger:focus,
input[type="tel"].md-input.md-input-danger:focus,
input[type="color"].md-input.md-input-danger:focus {
  border-bottom-color: #e53935;
}
select.md-input.md-input-success,
textarea.md-input.md-input-success,
input:not([type]).md-input.md-input-success,
input[type="text"].md-input.md-input-success,
input[type="password"].md-input.md-input-success,
input[type="datetime"].md-input.md-input-success,
input[type="datetime-local"].md-input.md-input-success,
input[type="date"].md-input.md-input-success,
input[type="month"].md-input.md-input-success,
input[type="time"].md-input.md-input-success,
input[type="week"].md-input.md-input-success,
input[type="number"].md-input.md-input-success,
input[type="email"].md-input.md-input-success,
input[type="url"].md-input.md-input-success,
input[type="search"].md-input.md-input-success,
input[type="tel"].md-input.md-input-success,
input[type="color"].md-input.md-input-success {
  border-color: #7cb342;
}
select.md-input.md-input-success:focus,
textarea.md-input.md-input-success:focus,
input:not([type]).md-input.md-input-success:focus,
input[type="text"].md-input.md-input-success:focus,
input[type="password"].md-input.md-input-success:focus,
input[type="datetime"].md-input.md-input-success:focus,
input[type="datetime-local"].md-input.md-input-success:focus,
input[type="date"].md-input.md-input-success:focus,
input[type="month"].md-input.md-input-success:focus,
input[type="time"].md-input.md-input-success:focus,
input[type="week"].md-input.md-input-success:focus,
input[type="number"].md-input.md-input-success:focus,
input[type="email"].md-input.md-input-success:focus,
input[type="url"].md-input.md-input-success:focus,
input[type="search"].md-input.md-input-success:focus,
input[type="tel"].md-input.md-input-success:focus,
input[type="color"].md-input.md-input-success:focus {
  border-bottom-color: #7cb342;
}
select.md-input:focus,
textarea.md-input:focus,
input:not([type]).md-input:focus,
input[type="text"].md-input:focus,
input[type="password"].md-input:focus,
input[type="datetime"].md-input:focus,
input[type="datetime-local"].md-input:focus,
input[type="date"].md-input:focus,
input[type="month"].md-input:focus,
input[type="time"].md-input:focus,
input[type="week"].md-input:focus,
input[type="number"].md-input:focus,
input[type="email"].md-input:focus,
input[type="url"].md-input:focus,
input[type="search"].md-input:focus,
input[type="tel"].md-input:focus,
input[type="color"].md-input:focus {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}
select.md-input-small,
textarea.md-input-small,
input:not([type]).md-input-small,
input[type="text"].md-input-small,
input[type="password"].md-input-small,
input[type="datetime"].md-input-small,
input[type="datetime-local"].md-input-small,
input[type="date"].md-input-small,
input[type="month"].md-input-small,
input[type="time"].md-input-small,
input[type="week"].md-input-small,
input[type="number"].md-input-small,
input[type="email"].md-input-small,
input[type="url"].md-input-small,
input[type="search"].md-input-small,
input[type="tel"].md-input-small,
input[type="color"].md-input-small {
  padding: 4px;
}
select.md-input.uk-form-width-mini,
textarea.md-input.uk-form-width-mini,
input:not([type]).md-input.uk-form-width-mini,
input[type="text"].md-input.uk-form-width-mini,
input[type="password"].md-input.uk-form-width-mini,
input[type="datetime"].md-input.uk-form-width-mini,
input[type="datetime-local"].md-input.uk-form-width-mini,
input[type="date"].md-input.uk-form-width-mini,
input[type="month"].md-input.uk-form-width-mini,
input[type="time"].md-input.uk-form-width-mini,
input[type="week"].md-input.uk-form-width-mini,
input[type="number"].md-input.uk-form-width-mini,
input[type="email"].md-input.uk-form-width-mini,
input[type="url"].md-input.uk-form-width-mini,
input[type="search"].md-input.uk-form-width-mini,
input[type="tel"].md-input.uk-form-width-mini,
input[type="color"].md-input.uk-form-width-mini {
  width: 40px;
}
select.md-input.uk-form-width-small,
textarea.md-input.uk-form-width-small,
input:not([type]).md-input.uk-form-width-small,
input[type="text"].md-input.uk-form-width-small,
input[type="password"].md-input.uk-form-width-small,
input[type="datetime"].md-input.uk-form-width-small,
input[type="datetime-local"].md-input.uk-form-width-small,
input[type="date"].md-input.uk-form-width-small,
input[type="month"].md-input.uk-form-width-small,
input[type="time"].md-input.uk-form-width-small,
input[type="week"].md-input.uk-form-width-small,
input[type="number"].md-input.uk-form-width-small,
input[type="email"].md-input.uk-form-width-small,
input[type="url"].md-input.uk-form-width-small,
input[type="search"].md-input.uk-form-width-small,
input[type="tel"].md-input.uk-form-width-small,
input[type="color"].md-input.uk-form-width-small {
  width: 130px;
}
select.md-input.uk-form-width-medium,
textarea.md-input.uk-form-width-medium,
input:not([type]).md-input.uk-form-width-medium,
input[type="text"].md-input.uk-form-width-medium,
input[type="password"].md-input.uk-form-width-medium,
input[type="datetime"].md-input.uk-form-width-medium,
input[type="datetime-local"].md-input.uk-form-width-medium,
input[type="date"].md-input.uk-form-width-medium,
input[type="month"].md-input.uk-form-width-medium,
input[type="time"].md-input.uk-form-width-medium,
input[type="week"].md-input.uk-form-width-medium,
input[type="number"].md-input.uk-form-width-medium,
input[type="email"].md-input.uk-form-width-medium,
input[type="url"].md-input.uk-form-width-medium,
input[type="search"].md-input.uk-form-width-medium,
input[type="tel"].md-input.uk-form-width-medium,
input[type="color"].md-input.uk-form-width-medium {
  width: 200px;
}
select.md-input.uk-form-width-large,
textarea.md-input.uk-form-width-large,
input:not([type]).md-input.uk-form-width-large,
input[type="text"].md-input.uk-form-width-large,
input[type="password"].md-input.uk-form-width-large,
input[type="datetime"].md-input.uk-form-width-large,
input[type="datetime-local"].md-input.uk-form-width-large,
input[type="date"].md-input.uk-form-width-large,
input[type="month"].md-input.uk-form-width-large,
input[type="time"].md-input.uk-form-width-large,
input[type="week"].md-input.uk-form-width-large,
input[type="number"].md-input.uk-form-width-large,
input[type="email"].md-input.uk-form-width-large,
input[type="url"].md-input.uk-form-width-large,
input[type="search"].md-input.uk-form-width-large,
input[type="tel"].md-input.uk-form-width-large,
input[type="color"].md-input.uk-form-width-large {
  width: 500px;
}
select.md-input.inverted-colors,
textarea.md-input.inverted-colors,
input:not([type]).md-input.inverted-colors,
input[type="text"].md-input.inverted-colors,
input[type="password"].md-input.inverted-colors,
input[type="datetime"].md-input.inverted-colors,
input[type="datetime-local"].md-input.inverted-colors,
input[type="date"].md-input.inverted-colors,
input[type="month"].md-input.inverted-colors,
input[type="time"].md-input.inverted-colors,
input[type="week"].md-input.inverted-colors,
input[type="number"].md-input.inverted-colors,
input[type="email"].md-input.inverted-colors,
input[type="url"].md-input.inverted-colors,
input[type="search"].md-input.inverted-colors,
input[type="tel"].md-input.inverted-colors,
input[type="color"].md-input.inverted-colors {
  color: #fff;
  border-bottom-color: #fff;
}
select.md-input.inverted-colors::-webkit-input-placeholder,
textarea.md-input.inverted-colors::-webkit-input-placeholder,
input:not([type]).md-input.inverted-colors::-webkit-input-placeholder,
input[type="text"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="password"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="datetime"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="datetime-local"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="date"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="month"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="time"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="week"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="number"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="email"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="url"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="search"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="tel"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="color"].md-input.inverted-colors::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
select.md-input.inverted-colors::-moz-placeholder,
textarea.md-input.inverted-colors::-moz-placeholder,
input:not([type]).md-input.inverted-colors::-moz-placeholder,
input[type="text"].md-input.inverted-colors::-moz-placeholder,
input[type="password"].md-input.inverted-colors::-moz-placeholder,
input[type="datetime"].md-input.inverted-colors::-moz-placeholder,
input[type="datetime-local"].md-input.inverted-colors::-moz-placeholder,
input[type="date"].md-input.inverted-colors::-moz-placeholder,
input[type="month"].md-input.inverted-colors::-moz-placeholder,
input[type="time"].md-input.inverted-colors::-moz-placeholder,
input[type="week"].md-input.inverted-colors::-moz-placeholder,
input[type="number"].md-input.inverted-colors::-moz-placeholder,
input[type="email"].md-input.inverted-colors::-moz-placeholder,
input[type="url"].md-input.inverted-colors::-moz-placeholder,
input[type="search"].md-input.inverted-colors::-moz-placeholder,
input[type="tel"].md-input.inverted-colors::-moz-placeholder,
input[type="color"].md-input.inverted-colors::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
select.md-input.inverted-colors:-ms-input-placeholder,
textarea.md-input.inverted-colors:-ms-input-placeholder,
input:not([type]).md-input.inverted-colors:-ms-input-placeholder,
input[type="text"].md-input.inverted-colors:-ms-input-placeholder,
input[type="password"].md-input.inverted-colors:-ms-input-placeholder,
input[type="datetime"].md-input.inverted-colors:-ms-input-placeholder,
input[type="datetime-local"].md-input.inverted-colors:-ms-input-placeholder,
input[type="date"].md-input.inverted-colors:-ms-input-placeholder,
input[type="month"].md-input.inverted-colors:-ms-input-placeholder,
input[type="time"].md-input.inverted-colors:-ms-input-placeholder,
input[type="week"].md-input.inverted-colors:-ms-input-placeholder,
input[type="number"].md-input.inverted-colors:-ms-input-placeholder,
input[type="email"].md-input.inverted-colors:-ms-input-placeholder,
input[type="url"].md-input.inverted-colors:-ms-input-placeholder,
input[type="search"].md-input.inverted-colors:-ms-input-placeholder,
input[type="tel"].md-input.inverted-colors:-ms-input-placeholder,
input[type="color"].md-input.inverted-colors:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
select.md-input.inverted-colors:-moz-placeholder,
textarea.md-input.inverted-colors:-moz-placeholder,
input:not([type]).md-input.inverted-colors:-moz-placeholder,
input[type="text"].md-input.inverted-colors:-moz-placeholder,
input[type="password"].md-input.inverted-colors:-moz-placeholder,
input[type="datetime"].md-input.inverted-colors:-moz-placeholder,
input[type="datetime-local"].md-input.inverted-colors:-moz-placeholder,
input[type="date"].md-input.inverted-colors:-moz-placeholder,
input[type="month"].md-input.inverted-colors:-moz-placeholder,
input[type="time"].md-input.inverted-colors:-moz-placeholder,
input[type="week"].md-input.inverted-colors:-moz-placeholder,
input[type="number"].md-input.inverted-colors:-moz-placeholder,
input[type="email"].md-input.inverted-colors:-moz-placeholder,
input[type="url"].md-input.inverted-colors:-moz-placeholder,
input[type="search"].md-input.inverted-colors:-moz-placeholder,
input[type="tel"].md-input.inverted-colors:-moz-placeholder,
input[type="color"].md-input.inverted-colors:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
select.md-input.uk-form-width-mini {
  width: 65px;
}
.md-input-width-small {
  min-width: 80px !important;
}
.md-input-width-medium {
  min-width: 160px !important;
}
.md-input-width-large {
  min-width: 320px !important;
}
textarea.md-input {
  min-height: 80px;
  resize: none;
  overflow: hidden;
  transition: height 200ms ease-out;
  line-height: 24px;
}
textarea.no_autosize {
  min-height: inherit;
  overflow: auto;
  transition: none;
  resize: both;
}
.md-input-wrapper {
  position: relative;
  padding-top: 4px;
  width: 100%;
  display: block;
}
.md-input-wrapper .md-input-bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.md-input-wrapper .md-input-bar:before,
.md-input-wrapper .md-input-bar:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1976d2;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.md-input-wrapper .md-input-bar:before {
  left: 50%;
}
.md-input-wrapper .md-input-bar:after {
  right: 50%;
}
.md-input-wrapper .md-input-bar.uk-form-width-mini {
  width: 40px;
}
.md-input-wrapper .md-input-bar.uk-form-width-small {
  width: 130px;
}
.md-input-wrapper .md-input-bar.uk-form-width-medium {
  width: 200px;
}
.md-input-wrapper .md-input-bar.uk-form-width-large {
  width: 500px;
}
.md-input-wrapper > label {
  color: #727272;
  position: absolute;
  top: 16px;
  left: 4px;
  right: 0;
  pointer-events: none;
  transition: all 150ms ease-out;
}
.md-input-wrapper + * {
  margin-top: 10px;
}
.md-input-wrapper.md-input-wrapper-disabled > label {
  color: rgba(0, 0, 0, 0.26);
}
.md-input-wrapper-count {
  padding-bottom: 24px;
}
.md-input-wrapper-count .md-input-bar {
  bottom: 24px;
}
.md-input-wrapper-count .text-count-wrapper {
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.md-input-wrapper-count > .md-input-wrapper-count .text-count-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}
.md-input-filled > label,
.md-input-focus > label {
  top: -6px;
  font-size: 12px;
}
.md-input-filled.md-input-wrapper-count .text-count-wrapper,
.md-input-focus.md-input-wrapper-count .text-count-wrapper {
  opacity: 1;
}
.md-input-focus .md-input-bar:before,
.md-input-focus .md-input-bar:after {
  width: 50%;
}
.md-input-wrapper-danger .md-input-bar:before,
.md-input-wrapper-danger .md-input-bar:after {
  background: #e53935;
}
.md-input-wrapper-danger.md-input-wrapper-count .text-count-wrapper {
  color: #e53935;
}
.md-input-wrapper-success .md-input-bar:before,
.md-input-wrapper-success .md-input-bar:after {
  background: #7cb342;
}
.md-input-wrapper-success.md-input-wrapper-count .text-count-wrapper {
  color: #7cb342;
}
.md-form-group {
  position: relative;
}
label.md-label {
  color: #999;
  padding: 0 6px;
  font-size: 11px;
}
.add-clear-span {
  display: block;
}
.add-clear-span input {
  padding-right: 24px !important;
}
.add-clear-span a {
  top: 12px !important;
  right: 4px !important;
}
.add-clear-span a .material-icons {
  font-size: 20px;
}
/*** utils ***/
/* avatar */
.md-user-image {
  width: 34px;
  border-radius: 50%;
}
.md-user-image-large {
  width: 82px;
  border-radius: 50%;
}
.md-user-placeholder {
  background-color: rgba(0, 0, 0, 0.085);
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.md-user-letters {
  display: inline-block;
  line-height: 35px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.085);
}
/* icons */
.md-icon {
  font-size: 24px;
  line-height: 32px !important;
  height: 32px !important;
  color: #727272;
  border-radius: 50%;
  cursor: pointer;
  transition: background 280ms ease-out, color 280ms ease-out;
  width: 32px !important;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.md-icon:hover,
.md-icon:focus,
.md-icon:active,
.md-icon.active {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
.md-icon-light {
  color: #fff;
}
.md-icon-light:hover,
.md-icon-light:focus,
.md-icon-light:active {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.md-icon-dark {
  color: #212121;
}
.md-icon-dark:hover,
.md-icon-dark:focus,
.md-icon-dark:active {
  color: #212121;
  background: rgba(255, 255, 255, 0.6);
}
.md-icon + .md-icon {
  margin-left: 4px;
}
.md-icon-btn {
  display: inline-block;
}
.md-icon-btn.active .md-icon {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
button.md-icon {
  background: none;
  border: none;
  outline: none;
}
.uk-open > .md-icon {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
.uk-open > .md-icon-light {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.uk-open > .md-icon-dark {
  color: #212121;
  background: rgba(255, 255, 255, 0.6);
}
/* dropdown list */
.md-list-inputs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.md-list-inputs > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.md-list-inputs li + li {
  margin-top: 8px;
}
.md-list-inputs li .icheckbox_md {
  float: left;
}
.md-list-inputs li label {
  overflow: hidden;
  padding-left: 8px;
  display: block;
  cursor: pointer;
}
/* hr */
.md-hr {
  margin: 32px 0;
  height: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.12);
}
/* animated show */
@-webkit-keyframes hierarchical_show {
  0% {
    opacity: 0;
    transform: scale3d(0.2, 0.2, 2);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes hierarchical_show {
  0% {
    opacity: 0;
    transform: scale3d(0.2, 0.2, 2);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.hierarchical_show {
  will-change: transform, opacity;
}
.hierarchical_show > * {
  visibility: hidden;
}
.hierarchical_show_inView > * {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
  -webkit-animation-name: hierarchical_show;
          animation-name: hierarchical_show;
  visibility: visible;
}
@-webkit-keyframes hierarchical_slide {
  0% {
    opacity: 0;
    transform: translate3d(0, 160%, 0);
  }
  33% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes hierarchical_slide {
  0% {
    opacity: 0;
    transform: translate3d(0, 160%, 0);
  }
  33% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.hierarchical_slide {
  will-change: transform, opacity;
}
.hierarchical_slide > * {
  visibility: hidden;
}
.hierarchical_slide_inView > * {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
  -webkit-animation-name: hierarchical_slide;
          animation-name: hierarchical_slide;
  visibility: visible;
}
.fast_animation {
  -webkit-animation-duration: 280ms;
          animation-duration: 280ms;
}
html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ececec;
}
body {
  min-height: 100%;
  font: 400 14px / 1.42857143 "Roboto", sans-serif;
  padding-top: 48px;
  box-sizing: border-box;
}
a,
button {
  outline: none !important;
}
a {
  color: #1e88e5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover,
a:active {
  color: #0d47a1;
  text-decoration: none;
}
pre,
code,
code[class*="language-"],
pre[class*="language-"] {
  font: 400 12px / 18px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
  box-sizing: border-box;
}
pre[class*="language-"] {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0;
}
pre[class*="language-"]:before,
pre[class*="language-"]:after {
  display: none;
}
.line-numbers .line-numbers-rows {
  border-right-color: rgba(0, 0, 0, 0.12);
}
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  font: 400 12px / 18px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
  color: #d32f2f;
}
pre.large_code,
code.large_code {
  font: 400 14px / 24px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
}
.touchscroll {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.transform-origin-50 {
  transform-origin: 50% 50%;
}
blockquote {
  border-left: 4px solid rgba(0, 0, 0, 0.085);
}
/* clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.heading_a {
  margin: 0;
  font: 400 18px / 24px "Roboto", sans-serif;
}
.heading_a .sub-heading {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  display: block;
  color: #727272;
}
.heading_b {
  margin: 0;
  font: 400 22px / 28px "Roboto", sans-serif;
}
.heading_b .sub-heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  display: block;
  color: #727272;
}
.heading_c {
  margin: 0;
  font: 400 16px / 20px "Roboto", sans-serif;
}
.heading_c .sub-heading {
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  display: block;
  color: #727272;
}
.heading_list {
  color: #727272;
  font: 500 13px / 16px "Roboto", sans-serif;
  padding: 0 16px;
  margin: 0 0 16px;
}
.heading_a + .uk-grid,
.heading_b + .uk-grid,
.heading_c + .uk-grid,
.heading_list + .uk-grid {
  margin-top: 24px;
}
.uk-grid + .heading_a,
.uk-grid + .heading_b,
.uk-grid + .heading_c,
.uk-grid + .heading_list {
  margin-top: 24px;
}
/* uikit extend */
.uk-text-large {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 16px;
}
* > .uk-text-large {
  margin-top: 16px;
}
.uk-text-small {
  font-size: 12px !important;
}
.uk-text-upper {
  text-transform: uppercase;
}
.uk-text-italic {
  font-style: italic;
}
.uk-text-del {
  text-decoration: line-through;
}
.uk-table.no-border td,
.uk-table .no-border td {
  border-bottom: none;
}
.uk-table .row-selected {
  background: #fff8e1 !important;
}
.uk-table [data-link] {
  cursor: pointer;
}
.uk-text-pre {
  white-space: pre;
}
.table_tree {
  margin-bottom: 4px !important;
}
.table_tree .table-child-row {
  display: none;
}
.table_tree .toggle-childrens {
  display: block;
  padding-left: 24px;
  position: relative;
}
.table_tree .toggle-childrens:before {
  content: '\e313';
  font-family: "Material Icons";
  font-size: 28px;
  position: absolute;
  left: -6px;
  top: -10px;
  color: #727272;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}
.table_tree .table-child-row {
  display: table-row;
}
.table_tree .table-child-row .child-row-main-col {
  padding-left: 40px;
}
.table_tree .show_child_row .toggle-childrens:before {
  transform: rotate(-90deg);
}
/* custom styles */
address {
  margin: 0;
}
address p {
  margin: 0;
}
address p + p {
  margin-top: 4px;
}
.grid-block {
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(179, 179, 179, 0.085);
  padding: 48px 0;
}
.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.inline-list > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.inline-list li {
  float: left;
  margin: 0 8px 8px 0;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(102, 102, 102, 0.085);
}
.img_thumb {
  width: 80px;
  max-width: 100%;
  height: auto;
}
.img_thumb.square {
  height: 80px;
}
.img_small {
  width: 120px;
  max-width: 100%;
  height: auto;
}
.img_small.square {
  height: 120px;
}
.img_medium {
  width: 240px;
  max-width: 100%;
  height: auto;
}
.img_medium.square {
  height: 240px;
}
.img_large {
  width: 400px;
  max-width: 100%;
  height: auto;
}
.img_large.square {
  height: 400px;
}
/* forms */
.inline-label {
  padding-left: 4px;
  cursor: pointer;
  vertical-align: -1px;
}
.form_hr {
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  margin: 32px 0 16px;
}
/* layout */
#page_content:before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  opacity: 0;
  transition: opacity 400ms;
  z-index: -1;
}
#page_content_inner {
  padding: 24px 24px 100px;
}
#page_overflow {
  min-height: 100%;
  overflow-y: auto;
}
@media only screen and (min-width: 1220px) {
  .boxed_layout #page_content {
    max-width: 1220px;
    margin: 0 auto !important;
  }
  .boxed_layout .uk-width-large-8-10.uk-container-center {
    width: 100%;
  }
  .boxed_layout.sidebar_main_open #page_content,
  .boxed_layout.sidebar_main_active #page_content {
    padding-left: 240px;
  }
  .boxed_layout .md-top-bar {
    max-width: 1172px;
    margin: 0 auto;
  }
  .boxed_layout #page_heading {
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
  }
}
.disable_transitions #sidebar_main,
.disable_transitions #page_content,
.disable_transitions #header_main,
.disable_transitions #top_bar,
.disable_transitions #header_main .sSwitch .sSwitchIcon,
.disable_transitions #header_main .sSwitch .sSwitchIcon:before,
.disable_transitions #header_main .sSwitch .sSwitchIcon:after {
  transition: none !important;
}
body {
  padding: 0;
}
.error_page_header {
  background: #1565c0;
  padding: 80px 0 20px;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 40px;
}
html.app_theme_dark {
  background: #424242;
  color: #fff;
}
html.app_theme_dark a:not(.md-btn) {
  color: #039be5;
}
html.app_theme_dark a:not(.md-btn):hover,
html.app_theme_dark a:not(.md-btn):active {
  color: #0277bd;
}
html.app_theme_dark h1,
html.app_theme_dark h2,
html.app_theme_dark h3,
html.app_theme_dark h4,
html.app_theme_dark h5,
html.app_theme_dark h6 {
  color: #fefefe;
}

/*# sourceMappingURL=error_page.css.map */

/*
*  Altair Admin
*  author: tzd
*
*  Content:
*    1. variables/mixins
*    2. UIkit custom styles
*    3. Kendo UI custom styles
*    4. custom components
*    5. material design styles
*    6. plugins
*    7. partials (header,sidebars,top bar)
*    8. pages
*    9. altair admin styles
*    10. print styles
*
*/
/* 1. altair variables/mixins ======================== */
/* 2. UIkit custom styles ============================ */
/* animations */
[class*="uk-animation-"] {
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
}
/* alerts */
.uk-alert {
  border: none;
  background: #1976d2;
  color: #fff;
  text-shadow: none;
  padding-right: 32px;
  position: relative;
  display: block;
}
.uk-alert-success {
  background: #8bc34a !important;
}
.uk-alert-danger {
  background: #e53935 !important;
}
.uk-alert-warning {
  background: #ffa000 !important;
}
.uk-alert-info {
  background: #0097a7 !important;
}
.uk-alert-large {
  padding: 24px 32px 24px 24px;
}
.uk-alert-close {
  position: absolute;
  top: 10px;
  right: 8px;
  float: none !important;
  margin: 0 !important;
}
.uk-alert-close:after {
  color: #fff !important;
}
/* badges */
.uk-badge {
  background: #0097a7;
  padding: 2px 6px;
  border: none;
  border-radius: 2px;
  text-shadow: none;
  font-size: 11px;
  line-height: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.uk-badge a {
  color: #fff !important;
}
.uk-badge-default {
  background: #9e9e9e;
  color: #fff;
}
.uk-badge-primary {
  background: #2196f3;
}
.uk-badge-danger {
  background: #e53935;
}
.uk-badge-warning {
  background: #ffa000;
}
.uk-badge-success {
  background: #7cb342;
}
.uk-badge-muted {
  background: #bdbdbd;
}
.uk-badge-notification {
  border-radius: 20px;
}
.uk-badge-large {
  font-size: 13px;
  line-height: 16px;
  padding: 4px 8px;
}
.uk-badge.inline-label {
  vertical-align: 1px;
  margin-left: 4px;
}
.uk-badge-outline {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #212121;
  padding-bottom: 0;
  line-height: 16px;
}
.uk-badge-inline {
  vertical-align: 2px;
}
.uk-badge-group {
  overflow: hidden;
}
.uk-badge-group .uk-badge {
  float: left;
  display: block;
  margin: 0 4px 4px 0;
}
/* buttons */
.uk-button {
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* comments */
.uk-comment-list > li + li {
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  margin-top: 16px !important;
}
.uk-comment-list .uk-comment + ul {
  margin: 8px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .uk-comment-list .uk-comment + ul {
    padding-left: 48px;
  }
}
.uk-comment-header {
  padding: 16px 8px 8px;
  border: none;
  background: none;
  margin-bottom: 0;
}
.uk-comment-title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
/* dialog modals */
.uk-modal {
  z-index: 1304;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 250ms ease-out;
  overflow: auto !important;
}
.uk-modal.uk-modal-no-backdrop {
  background: transparent;
}
.uk-modal-dialog {
  border-radius: 2px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  padding: 24px;
  display: block !important;
  -webkit-animation: none !important;
          animation: none !important;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease-in;
  transform: scale(0);
}
.uk-modal-dialog-blank {
  padding: 0;
  background: none;
  box-shadow: none;
}
.uk-open .uk-modal-dialog {
  transform: scale(1);
}
.uk-modal-dialog .uk-modal-header {
  background: none;
  border-bottom: none;
  margin: 0 -24px 24px;
  padding: 0 32px 0 24px;
  overflow: hidden;
}
.uk-modal-dialog .uk-modal-header .uk-modal-title {
  margin: 0;
  font: 500 18px / 28px "Roboto", sans-serif;
}
.uk-modal-dialog .uk-modal-header .uk-modal-title span {
  font-size: 16px;
  display: block;
  color: #727272;
}
.uk-modal-dialog .uk-modal-header .material-icons {
  font-size: 24px;
  vertical-align: -4px;
  cursor: default;
}
.uk-modal-dialog .uk-modal-footer {
  margin: 16px -16px -16px;
  padding: 16px;
  background: #fff;
  border-top: none;
}
.uk-modal-dialog .uk-modal-footer:before,
.uk-modal-dialog .uk-modal-footer:after {
  content: " ";
  display: table;
}
.uk-modal-dialog .uk-modal-footer:after {
  clear: both;
}
.uk-modal-dialog .uk-modal-footer:before,
.uk-modal-dialog .uk-modal-footer:after {
  content: " ";
  display: table;
}
.uk-modal-dialog .uk-modal-footer:after {
  clear: both;
}
.uk-modal-dialog .uk-modal-footer .md-icon-btn {
  margin-top: 2px;
}
.uk-modal-dialog .uk-modal-caption {
  bottom: 16px;
  margin: 0 32px;
}
.uk-modal-dialog > .uk-close:first-child {
  top: 8px;
  right: 8px;
  position: absolute;
  float: none;
  margin: 0;
}
.uk-modal-dialog-lightbox {
  padding: 0;
}
.uk-modal-dialog-lightbox > .uk-close:first-child {
  top: -11px;
  right: -11px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border: none;
  z-index: 10;
}
.uk-modal-dialog .uk-overflow-container {
  margin: 16px 0;
}
.uk-modal-card-fullscreen {
  overflow: hidden !important;
}
.uk-modal-card-fullscreen .uk-modal-close {
  float: left;
  margin: 8px 8px 0 0;
  display: block;
}
.uk-modal-card-fullscreen > .uk-modal-dialog > .md-card > .md-card-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 10;
}
.uk-modal-card-fullscreen > .uk-modal-dialog > .md-card > .md-card-content {
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.uk-modal .uk-margin.uk-modal-content {
  margin-bottom: 0;
}
.uk-modal.uk-modal-dialog-replace .uk-modal-content {
  font-size: 18px;
}
.uk-modal-spinner {
  -webkit-animation: uk-rotate 2s infinite linear;
          animation: uk-rotate 2s infinite linear;
  margin-left: -12px;
  margin-top: -17px;
  left: 50%;
  right: auto;
}
.uk-modal .uk-modal-aside {
  padding: 16px 32px 32px;
}
/* dropdowns */
.uk-dropdown {
  transform: scale(0.25, 0);
  opacity: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: none !important;
          animation: none !important;
  transform-origin: 50% 0 !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  border-radius: 2px;
}
.uk-dropdown.uk-dropdown-xlarge {
  width: 360px;
}
@media only screen and (max-width: 479px) {
  .uk-dropdown.uk-dropdown-xlarge {
    width: 260px;
  }
}
.uk-dropdown.uk-dropdown-large {
  width: 260px;
}
.uk-dropdown.uk-dropdown-small {
  width: 160px;
}
.uk-dropdown > ul > li > a {
  font-size: 14px;
  color: #212121;
}
.uk-dropdown > ul > li > a:hover {
  background: rgba(0, 0, 0, 0.085);
}
.uk-dropdown > ul > li.uk-active > a {
  background: rgba(0, 0, 0, 0.085);
}
.uk-dropdown > ul > li.padding_sm {
  padding: 2px 4px;
}
.uk-dropdown > ul > li.padding_md {
  padding: 4px 8px;
}
.uk-dropdown.dropdown-modal {
  z-index: 1310;
}
.uk-dropdown.dropdown-fs {
  z-index: 9999;
}
.uk-dropdown.uk-dropdown-scrollable {
  -webkit-overflow-scrolling: touch;
}
[data-uk-dropdown*="top-"] .uk-dropdown {
  transform-origin: 50% 100% !important;
}
[data-uk-dropdown*="left-"] .uk-dropdown {
  transform-origin: 100% 50% !important;
}
[data-uk-dropdown*="right-"] .uk-dropdown {
  transform-origin: 0 50% !important;
}
[data-uk-dropdown*='justify'] {
  position: static !important;
}
[data-uk-dropdown*='justify'] [class*="uk-dropdown-width"] {
  left: 0 !important;
  width: 100% !important;
  min-width: inherit !important;
  margin-left: 0 !important;
}
.uk-dropdown-active {
  display: block !important;
}
.uk-dropdown-shown {
  transform: scale(1, 1);
  opacity: 1;
}
.uk-nav-dropdown > li > a:focus,
.uk-nav-dropdown > li > a:hover {
  text-shadow: none;
  box-shadow: none;
  color: #212121;
  background: rgba(153, 153, 153, 0.2);
}
/* forms */
fieldset {
  border: none;
  margin: 0;
}
fieldset + * {
  margin-top: 15px;
}
.uk-form input:not([type]),
.uk-form input[type=color],
.uk-form input[type=date],
.uk-form input[type=datetime-local],
.uk-form input[type=email],
.uk-form input[type=month],
.uk-form input[type=number],
.uk-form input[type=password],
.uk-form input[type=search],
.uk-form input[type=tel],
.uk-form input[type=text],
.uk-form input[type=time],
.uk-form input[type=url],
.uk-form input[type=week],
.uk-form select,
.uk-form textarea {
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: border 200ms ease-in;
  resize: none;
}
.uk-form input:not([type]):focus,
.uk-form input[type=color]:focus,
.uk-form input[type=date]:focus,
.uk-form input[type=datetime-local]:focus,
.uk-form input[type=email]:focus,
.uk-form input[type=month]:focus,
.uk-form input[type=number]:focus,
.uk-form input[type=password]:focus,
.uk-form input[type=search]:focus,
.uk-form input[type=tel]:focus,
.uk-form input[type=text]:focus,
.uk-form input[type=time]:focus,
.uk-form input[type=url]:focus,
.uk-form input[type=week]:focus,
.uk-form select:focus,
.uk-form textarea:focus {
  background: none;
  border-color: #2196f3;
}
.uk-form textarea {
  transition: border-color 200ms ease-in, height 280ms ease-in;
}
.uk-form-row {
  transition: all 200ms ease-out;
}
.uk-form-row + .uk-form-row {
  margin-top: 24px;
}
.uk-form-stacked .uk-form-label {
  font-weight: 500;
  font-size: 13px;
  display: block;
  padding-bottom: 8px;
}
.uk-form-stacked .uk-form-label + p {
  margin-top: 0;
}
.uk-form-help-block {
  display: block;
  font-size: 12px;
  color: #727272;
  padding: 4px 0 0 0;
  font-style: italic;
}
.uk-form-width-large,
.uk-form-width-medium,
.uk-form-width-small,
.uk-form-width-mini {
  max-width: 100%;
}
/* grid */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 24px;
}
.uk-grid.uk-grid-small + .uk-grid-small,
.uk-grid.uk-grid-small > * > .uk-panel + .uk-panel,
.uk-grid.uk-grid-small > .uk-grid-margin {
  margin-top: 10px;
}
.uk-grid-divider.uk-grid-collapse {
  margin-left: 0;
  margin-right: 0;
}
.uk-grid-divider.uk-grid-collapse > * {
  padding-left: 0;
  padding-right: 0;
}
.uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1) + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-2-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-3-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-4-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-5-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-6-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-7-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-8-']:nth-child + .uk-flex-item-1,
.uk-grid-divider > [class*='uk-width-9-']:nth-child + .uk-flex-item-1 {
  border-left: 1px solid #ddd;
}
@media only screen and (min-width: 768px) {
  .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1) + .uk-flex-item-1 {
    border-left: 1px solid #ddd;
  }
}
@media only screen and (min-width: 960px) {
  .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1) + .uk-flex-item-1 {
    border-left: 1px solid #ddd;
  }
}
.uk-height-viewport {
  min-height: 200px;
}
/* icons */
[class*="uk-icon-"] {
  color: #727272;
}
/* input groups */
.uk-input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  /*&-icon {
        font-size: 20px !important;
        vertical-align: -3px;
    }*/
}
.uk-input-group > input[type=text] {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.uk-input-group-addon,
.uk-input-group > input[type=text] {
  display: table-cell;
}
.uk-input-group-addon {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
  padding: 0 16px;
  font-size: 16px;
  min-width: 22px;
}
.uk-input-group > .md-input-wrapper {
  display: inline-block;
}
.uk-input-group.uk-input-group-danger .uk-input-group-addon i {
  color: #e53935 !important;
}
.uk-input-group.uk-input-group-danger + .parsley-errors-list {
  margin-left: 58px;
}
.uk-input-group.uk-input-group-success .uk-input-group-addon i {
  color: #7cb342 !important;
}
/* list */
.uk-list-hover li:hover {
  background: rgba(0, 0, 0, 0.1);
}
/* nav */
.uk-nav-header {
  color: #727272;
  font-weight: normal;
}
.uk-nav-divider {
  box-shadow: none;
  border-top-color: rgba(0, 0, 0, 0.12);
}
.uk-nav-divider + .uk-nav-header {
  margin-top: 0;
}
.uk-nav-label {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 8px;
}
.uk-nav-side > li > a {
  font-weight: 500;
  line-height: 22px;
}
.uk-nav-side > li > a > i {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: -7px;
}
.uk-nav-side > li > a:hover,
.uk-nav-side > li > a:focus {
  background: transparent;
  box-shadow: none;
}
.uk-nav-side > li.uk-active > a {
  background: transparent;
  box-shadow: none;
}
.uk-nav-side > li.uk-active > a,
.uk-nav-side > li.uk-active > a > i {
  color: #7cb342;
}
.uk-nav-side > li li a {
  text-shadow: none;
  color: #212121;
}
.uk-nav-side ul.uk-nav-sub {
  padding-top: 0;
  padding-left: 24px;
}
/* pagination */
.uk-pagination {
  margin: 0;
}
.uk-pagination > li {
  outline: none !important;
}
.uk-pagination > li > a,
.uk-pagination > li > span {
  border: none;
  padding: 4px 8px;
  min-width: 32px;
  line-height: 24px;
  height: 32px;
  box-sizing: border-box;
  text-shadow: none;
  color: #212121;
  border-radius: 4px;
}
.uk-pagination > li > a [class*="uk-icon-"],
.uk-pagination > li > span [class*="uk-icon-"] {
  font-size: 16px;
}
.uk-pagination > li > a {
  background: transparent;
}
.uk-pagination > li > a:hover {
  background: #e1efd2;
}
.uk-pagination > li.uk-active > a,
.uk-pagination > li.uk-active > span {
  background: #7cb342;
}
.uk-pagination > li.uk-active > a,
.uk-pagination > li.uk-active > span,
.uk-pagination > li.uk-active > a:hover,
.uk-pagination > li.uk-active > span:hover {
  color: #fff;
}
.uk-pagination > li.uk-disabled > a,
.uk-pagination > li.uk-disabled > span {
  border: none;
  text-shadow: none;
  background: transparent !important;
  color: #aaa;
  cursor: default;
}
/* panels */
.uk-panel-box {
  border-radius: 2px;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}
.uk-panel-box .uk-panel-teaser {
  border-radius: 2px 2px 0 0;
}
/* tables */
.uk-table td {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.uk-table th {
  border-bottom: 1px #444;
}
.uk-table-nowrap td,
.uk-table-nowrap th {
  white-space: nowrap;
}
.uk-table-align-vertical td,
.uk-table-align-vertical th {
  vertical-align: middle;
}
.uk-table tr th.small_col,
.uk-table tr td.small_col {
  width: 1%;
}
.uk-table tr.row_checked td {
  background: #e3f2fd;
}
.uk-table .uk-table {
  margin-bottom: 0;
}
.uk-table .uk-table tr:last-child td {
  border-bottom: none;
}
.uk-table-no-border td {
  border-bottom-color: transparent;
}
/* sticky */
.uk-sticky-placeholder .uk-active {
  z-index: 1094;
}
/* subnav */
.uk-subnav-pill > * > * {
  color: #212121;
}
.uk-subnav-pill > .uk-active > * {
  background: #7cb342;
}
/* tables */
.uk-table thead th {
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
.uk-table thead th,
.uk-table tfoot td,
.uk-table tfoot th {
  font-style: normal;
  font-weight: 400;
  color: #727272;
  font-size: 14px;
}
.uk-table td {
  border-bottom-color: #e0e0e0;
}
.uk-table tfoot td,
.uk-table tfoot th {
  border-top: 2px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: rgba(0, 0, 0, 0.085);
}
.uk-table-hover tbody tr:hover {
  background: #e3f2fd;
}
/* thumbnails */
.uk-thumbnail {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.12);
}
.uk-thumbnail-caption {
  padding: 4px 4px 0;
  line-height: 20px;
  color: #727272;
  font-size: 12px;
}
/* utilities */
.uk-text-small {
  font-size: 12px;
}
.uk-text-muted {
  color: #757575 !important;
}
.uk-text-primary {
  color: #2196f3 !important;
}
.uk-text-danger {
  color: #e53935 !important;
}
.uk-text-success {
  color: #7cb342 !important;
}
.uk-text-warning {
  color: #ffa000 !important;
}
.uk-margin-bottom {
  margin-bottom: 16px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 8px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 32px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 48px !important;
}
.uk-margin-medium-top {
  margin-top: 32px !important;
}
.uk-margin-large-top {
  margin-top: 48px !important;
}
.uk-close {
  font-size: 18px;
  opacity: 1;
}
.uk-close:hover,
.uk-close:focus {
  opacity: 1;
}
.uk-close:after {
  opacity: 1 !important;
  color: #727272;
  content: '\e5cd';
  font-family: "Material Icons";
}
.uk-float-none {
  float: none !important;
}
/* ------------ Components ------------ */
/* accordion */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `uk-accordion-title`
 ========================================================================== */
.uk-accordion-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #f5f5f5;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
}
/* Sub-object: `uk-accordion-content`
 ========================================================================== */
.uk-accordion-content {
  padding: 0 15px 15px 15px;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
.uk-accordion-title {
  background: rgba(153, 153, 153, 0.2);
  border-radius: 0;
  border: none;
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 24px 8px 16px;
  position: relative;
}
.uk-accordion-title:after {
  content: '\e313';
  font-family: "Material Icons";
  font-size: 18px;
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  color: #727272;
  transition: transform 280ms;
}
.uk-accordion-title.uk-active:after {
  transform: rotate(-180deg);
}
.uk-accordion-title-primary {
  background: #2196f3;
  color: #fff;
}
.uk-accordion-title-primary:after {
  color: #fff;
}
.uk-accordion-title-danger {
  background: #e53935;
  color: #fff;
}
.uk-accordion-title-danger:after {
  color: #fff;
}
.uk-accordion-title-success {
  background: #7cb342;
  color: #fff;
}
.uk-accordion-title-success:after {
  color: #fff;
}
.uk-accordion-title-warning {
  background: #ffa000;
  color: #fff;
}
.uk-accordion-title-warning:after {
  color: #fff;
}
.uk-accordion-content {
  padding: 16px;
}
.uk-accordion-alt .uk-accordion-title {
  background: #fff;
  margin: 0;
  padding: 16px 24px 16px 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-accordion-alt .uk-accordion-title:first-child {
  border-top: none;
}
.uk-accordion-alt .uk-accordion-title:after {
  color: #2196f3;
  content: '\e145';
  right: auto;
  left: 16px;
  top: 16px;
}
.uk-accordion-alt .uk-accordion-title.uk-active:after {
  transform: rotate(-180deg);
  content: '\e15b';
}
.uk-accordion-alt .uk-accordion-content {
  padding: 24px;
}
/* dotnav */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-dotnav {
  display: flex;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 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-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav:before,
.uk-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-dotnav:after {
  clear: both;
}
.uk-dotnav > * {
  float: left;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background: rgba(50, 50, 50, 0.4);
  transform: scale(1.3);
}
/* Modifier: `uk-dotnav-contrast`
 ========================================================================== */
.uk-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-dotnav-contrast > * > :hover,
.uk-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > .uk-active > * {
  background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.uk-dotnav-vertical {
  flex-direction: column;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-dotnav-vertical > * {
  float: none;
}
/* progress */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Clearing
 * 2. Vertical alignment if text is used
 */
.uk-progress {
  box-sizing: border-box;
  height: 20px;
  margin-bottom: 15px;
  background: #f5f5f5;
  /* 1 */
  overflow: hidden;
  /* 2 */
  line-height: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-progress {
  margin-top: 15px;
}
/* Sub-object: `uk-progress-bar`
 ========================================================================== */
/*
 * 1. Transition
 * 2. Needed for text
 */
.uk-progress-bar {
  width: 0;
  height: 100%;
  background: #00a8e6;
  float: left;
  /* 1 */
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
/* Size modifiers
 ========================================================================== */
/* Mini */
.uk-progress-mini {
  height: 6px;
}
/* Small */
.uk-progress-small {
  height: 12px;
}
/* Color modifiers
 ========================================================================== */
.uk-progress-success .uk-progress-bar {
  background-color: #8cc14c;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #faa732;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #da314b;
}
/* Modifier: `uk-progress-striped`
 ========================================================================== */
.uk-progress-striped .uk-progress-bar {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}
/*
 * Animation
 */
.uk-progress-striped.uk-active .uk-progress-bar {
  -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  animation: uk-progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes uk-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
/* Size modifiers
     ========================================================================== */
.uk-progress-mini,
.uk-progress-small {
  border-radius: 500px;
}
.uk-progress {
  box-shadow: none;
  border-radius: 2px;
}
.uk-progress-bar {
  background: #009688;
}
.uk-progress-success .uk-progress-bar {
  background-color: #7cb342;
}
.uk-progress-danger .uk-progress-bar {
  background-color: #e53935;
}
.uk-progress-warning .uk-progress-bar {
  background-color: #ffa000;
}
/* htmleditor */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: HTML editor
 ========================================================================== */
/* Sub-object `uk-htmleditor-navbar`
 ========================================================================== */
.uk-htmleditor-navbar {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
/*
 * 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: 41px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444;
  font-size: 11px;
  cursor: pointer;
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  text-shadow: 0 1px 0 #fff;
}
/*
 * 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: #fafafa;
  color: #444;
  outline: none;
  /* 2 */
  position: relative;
  z-index: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* OnClick */
.uk-htmleditor-navbar-nav > li > a:active {
  background-color: #eee;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
}
/* Active */
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background-color: #fafafa;
  color: #444;
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
/* 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;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
/*
 * 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: 41px;
  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;
}
/*
     * Apply same `border-radius` as `uk-htmleditor-navbar`
     */
.uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-navbar-flip`
     */
/* Collapse border */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav > li > a {
  margin-left: 0;
  margin-right: -1px;
}
/* Apply same `border-radius` as `uk-htmleditor-navbar` */
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:first-child > li:first-child > a {
  border-top-left-radius: 0;
}
.uk-htmleditor-navbar-flip .uk-htmleditor-navbar-nav:last-child > li:last-child > a {
  border-top-right-radius: 4px;
}
/*
     * Sub-modifier `uk-htmleditor-fullscreen`
     */
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  border: none;
  border-radius: 0;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar-nav > li > a {
  border-radius: 0 !important;
}
.uk-htmleditor-navbar {
  border-radius: 0;
  background: #f9f9f9;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.uk-htmleditor-navbar-nav > li > a {
  border: none;
  border-radius: 0 !important;
  height: 38px;
}
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background: #ebebeb;
}
.uk-htmleditor-navbar-nav > li:hover > a,
.uk-htmleditor-navbar-nav > li > a:focus {
  background: #ebebeb;
}
.uk-htmleditor-content {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-htmleditor-fullscreen {
  z-index: 1154;
}
.uk-htmleditor-fullscreen .uk-htmleditor-navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  top: 38px;
}
/* upload */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form file
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-file {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 2. Expand height and required for the cursor
 */
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  font-size: 500px;
}
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Upload
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
.uk-file-upload {
  width: 100%;
  padding: 32px 16px;
  box-sizing: border-box;
  background: #f5f5f5;
  text-align: center;
  transition: all 200ms ease-in;
}
.uk-file-upload p {
  margin: 0;
}
.uk-file-upload.uk-dragover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
div.uk-form-file {
  padding: 3px 2px;
}
div.uk-form-file.md-btn {
  padding: 2px 12px;
}
.uk-form-file input[type="file"] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  left: 0;
  font-size: 500px;
}
.uk-form-file input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}
/* form select */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.uk-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.uk-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}
/* datepicker */
.uk-datepicker {
  z-index: 1094;
  width: auto;
  padding: 0;
}
.uk-datepicker-nav {
  margin-bottom: 15px;
  text-align: center;
  line-height: 20px;
  background: #009688;
  padding: 10px 0;
}
.uk-datepicker-nav a,
.uk-datepicker-nav a:hover {
  text-decoration: none;
  color: #fff;
}
.uk-datepicker-nav .uk-form-select {
  font: 400 16px / 22px "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 4px;
}
.uk-datepicker-nav .uk-form-select + .uk-form-select {
  margin-left: 2px;
}
.uk-datepicker-previous {
  float: left;
  margin-left: 8px;
}
.uk-datepicker-previous:after {
  content: "\f053";
}
.uk-datepicker-next {
  float: right;
  margin-right: 8px;
}
.uk-datepicker-next:after {
  content: "\f054";
}
.uk-datepicker-previous:after,
.uk-datepicker-next:after {
  width: 20px;
  font-family: FontAwesome;
}
.uk-datepicker.dp-top {
  transform-origin: 50% 100% !important;
}
.uk-datepicker-table {
  width: 100%;
}
.uk-datepicker-table th,
.uk-datepicker-table td {
  padding: 2px;
  font: 400 13px / 15px "Roboto", sans-serif;
}
.uk-datepicker-table th {
  color: #727272;
  font-size: 12px;
  text-transform: uppercase;
}
.uk-datepicker-table a {
  display: block;
  width: 30px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: #212121;
}
.uk-datepicker-table a:hover {
  background-color: rgba(0, 0, 0, 0.085);
  color: #212121;
  outline: none;
}
.uk-datepicker-table a.uk-active {
  background-color: #009688;
  color: #fff;
}
a.uk-datepicker-table-muted {
  color: #999;
}
/* autocomplete, timepicker */
.uk-autocomplete .uk-dropdown {
  display: block;
  max-height: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 0;
  border: none;
  transform: scale(0.25, 0);
  opacity: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: none !important;
          animation: none !important;
  transform-origin: 0 0;
}
.uk-autocomplete.uk-open .uk-dropdown {
  transform: scale(1);
  opacity: 1;
  max-height: 210px;
}
[data-uk-autocomplete] .uk-dropdown {
  width: 100%;
  box-sizing: border-box;
}
[data-uk-autocomplete] .uk-dropdown .uk-nav {
  margin: 0;
}
/* password toggle */
.uk-form-password-toggle {
  position: absolute;
  right: 8px;
  top: 16px;
  color: #727272;
}
.uk-form-password-toggle:hover {
  color: #727272;
}
/* nestable */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Nestable
 ========================================================================== */
.uk-nestable {
  padding: 0;
  list-style: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-nestable a,
.uk-nestable img {
  -webkit-touch-callout: none;
}
/* Sub-object `uk-nestable-list`
 ========================================================================== */
.uk-nestable-list {
  margin: 0;
  padding-left: 40px;
  list-style: none;
}
/* Sub-modifier `uk-nestable-item`
 ========================================================================== */
/*
 * 1. Deactivate browser touch actions in IE11
 */
.uk-nestable-item {
  /* 1 */
  touch-action: none;
}
.uk-nestable-item + .uk-nestable-item {
  margin-top: 10px;
}
.uk-nestable-list:not(.uk-nestable-dragged) > .uk-nestable-item:first-child {
  margin-top: 10px;
}
/* Sub-modifier `uk-nestable-dragged`
 ========================================================================== */
/*
 * 1. Reset style
 */
.uk-nestable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
  /* 1 */
  padding-left: 0;
}
/* Sub-modifier `uk-nestable-placeholder`
 ========================================================================== */
.uk-nestable-placeholder {
  position: relative;
}
.uk-nestable-placeholder > * {
  opacity: 0;
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px dashed #ddd;
  opacity: 1;
}
/* Empty List
 ========================================================================== */
.uk-nestable-empty {
  min-height: 30px;
}
/* Sub-object `uk-nestable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-nestable-handle {
  touch-action: none;
}
/* Hover */
.uk-nestable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-nestable-moving`
 ========================================================================== */
.uk-nestable-moving,
.uk-nestable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-nestable-moving iframe {
  pointer-events: none;
}
/* [data-nestable-action='toggle']
 ========================================================================== */
/*
 * 1. Makes text unselectable. Happens if double clicked by mistake
 */
[data-nestable-action='toggle'] {
  cursor: pointer;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Sub-object `.uk-nestable-toggle`
 ========================================================================== */
.uk-nestable-toggle {
  display: inline-block;
  visibility: hidden;
}
.uk-nestable-toggle:after {
  content: "\f147";
  font-family: FontAwesome;
}
.uk-parent > :not(.uk-nestable-list) .uk-nestable-toggle {
  visibility: visible;
}
/*
 * Collapsed
 */
.uk-collapsed .uk-nestable-list {
  display: none;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\f196";
}
/* Sub-object `uk-nestable-panel`
 ========================================================================== */
.uk-nestable-panel {
  padding: 5px;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 0 #fff;
}
.uk-nestable-handle {
  margin-right: 16px;
}
.uk-nestable-panel {
  padding: 8px 16px;
  background: #fff;
  border-radius: 4px;
  border: none;
  text-shadow: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.uk-nestable-placeholder:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: none;
  background: rgba(0, 0, 0, 0.085);
  opacity: 1;
}
.uk-nestable-toggle {
  font-size: 18px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 8px;
  display: none;
}
.uk-nestable-toggle:after {
  vertical-align: top;
  content: '\e316';
  font-family: "Material Icons";
}
.uk-parent > .uk-nestable-panel .uk-nestable-toggle {
  display: inline-block;
}
.uk-collapsed .uk-nestable-toggle:after {
  content: "\e313";
}
/* notify */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Notify
 ========================================================================== */
/*
 * Message container for positioning
 */
.uk-notify {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99999999;
  box-sizing: border-box;
  width: 350px;
}
/* Position modifiers
========================================================================== */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 479px) {
  /*
     * Fit in small screen
     */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Sub-object: `uk-notify-message`
========================================================================== */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #444;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  border: 1px solid #444;
  border-radius: 4px;
}
/* Close in notify
 ========================================================================== */
.uk-notify-message > .uk-close {
  visibility: hidden;
  float: right;
}
.uk-notify-message:hover > .uk-close {
  visibility: visible;
}
/* Modifier: `uk-notify-message-primary`
 ========================================================================== */
.uk-notify-message-primary {
  background: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
/* Modifier: `uk-notify-message-success`
 ========================================================================== */
.uk-notify-message-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `uk-notify-message-warning`
 ========================================================================== */
.uk-notify-message-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `uk-notify-message-danger`
 ========================================================================== */
.uk-notify-message-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}
.uk-notify {
  z-index: 999999999;
  width: 400px;
  top: 56px;
  max-width: 100%;
}
.uk-notify-top-center,
.uk-notify-bottom-center {
  margin-left: -200px;
}
.uk-notify-top-left {
  left: 24px;
}
.uk-notify-top-right {
  right: 24px;
}
.uk-notify-bottom-left {
  left: 24px;
}
.uk-notify-bottom-right {
  right: 24px;
}
.uk-notify-bottom-center,
.uk-notify-bottom-left,
.uk-notify-bottom-right {
  top: auto;
  bottom: 8px;
}
.uk-notify-message {
  background: #323232;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 18px;
  border: none;
}
.uk-notify .uk-close {
  display: none;
}
.uk-notify .notify-action {
  float: right;
  text-transform: uppercase;
  color: #8bc34a;
  margin-left: 16px;
}
.uk-notify .notify-action:hover {
  color: #689f38;
}
.uk-notify .notify-content {
  overflow: hidden;
}
.uk-notify-message-info {
  background: #1976d2;
  color: #fff;
}
.uk-notify-message-success {
  background: #7cb342;
}
.uk-notify-message-warning {
  background: #ffa000;
}
.uk-notify-message-danger {
  background: #e53935;
}
.uk-notify-message-info,
.uk-notify-message-success,
.uk-notify-message-warning,
.uk-notify-message-danger {
  color: #fff;
}
.uk-notify-message-info .notify-action,
.uk-notify-message-success .notify-action,
.uk-notify-message-warning .notify-action,
.uk-notify-message-danger .notify-action {
  color: #fff;
}
.uk-notify-message-info .notify-action:hover,
.uk-notify-message-success .notify-action:hover,
.uk-notify-message-warning .notify-action:hover,
.uk-notify-message-danger .notify-action:hover {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .uk-notify-top-center,
  .uk-notify-top-left,
  .uk-notify-top-right,
  .uk-notify-bottom-center,
  .uk-notify-bottom-left,
  .uk-notify-bottom-right {
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
  }
  .uk-notify-top-center > .uk-notify-message,
  .uk-notify-top-left > .uk-notify-message,
  .uk-notify-top-right > .uk-notify-message,
  .uk-notify-bottom-center > .uk-notify-message,
  .uk-notify-bottom-left > .uk-notify-message,
  .uk-notify-bottom-right > .uk-notify-message {
    border-radius: 0;
    padding: 16px 32px;
  }
  .uk-notify-top-center,
  .uk-notify-top-left,
  .uk-notify-top-right {
    top: 0;
    bottom: auto;
  }
  .uk-notify-bottom-center,
  .uk-notify-bottom-left,
  .uk-notify-bottom-right {
    top: auto;
    bottom: -10px;
  }
}
@media only screen and (min-width: 960px) {
  .sidebar_main_active .uk-notify-top-left,
  .sidebar_main_open .uk-notify-top-left {
    left: 256px;
  }
  .sidebar_main_active .uk-notify-top-center,
  .sidebar_main_open .uk-notify-top-center {
    margin-left: -80px;
  }
  .sidebar_main_active .uk-notify-bottom-left,
  .sidebar_main_open .uk-notify-bottom-left {
    left: 256px;
  }
  .sidebar_main_active .uk-notify-bottom-center,
  .sidebar_main_open .uk-notify-bottom-center {
    margin-left: -80px;
  }
}
/* slideshow */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.uk-slideshow {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  touch-action: pan-y;
}
/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.uk-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}
/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.uk-slideshow > .uk-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}
/*
 * Hide default images which is only relevant to keep existing proportions
 */
.uk-slideshow > li > img {
  visibility: hidden;
}
/*
 * Pointer for controls
 */
[data-uk-slideshow-slide] {
  cursor: pointer;
}
/* Modifier: `uk-slideshow-fullscreen`
 ========================================================================== */
.uk-slideshow-fullscreen,
.uk-slideshow-fullscreen > li {
  height: 100vh;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-slideshow-fade-in {
  -webkit-animation: uk-fade 0.5s linear;
  animation: uk-fade 0.5s linear;
}
.uk-slideshow-fade-out {
  -webkit-animation: uk-fade 0.5s linear reverse;
  animation: uk-fade 0.5s linear reverse;
}
/*
 * Scroll
 */
.uk-slideshow-scroll-forward-in {
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
  animation: uk-slide-right 0.5s ease-in-out;
}
.uk-slideshow-scroll-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-scroll-backward-in {
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
  animation: uk-slide-left 0.5s ease-in-out;
}
.uk-slideshow-scroll-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
/*
 * Scale
 */
.uk-slideshow-scale-out {
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
}
/*
 * Swipe
 */
.uk-slideshow-swipe-forward-in {
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  animation: uk-slide-left-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-backward-in {
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  animation: uk-slide-right-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-forward-in:before,
.uk-slideshow-swipe-backward-in:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  animation: uk-fade 0.5s ease-in-out reverse;
}
/* slider */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * RTL Compatibility
 */
[data-uk-slider] {
  direction: ltr;
}
html[dir="rtl"] .uk-slider > * {
  direction: rtl;
}
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.uk-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 */
.uk-slider:not(.uk-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Sub-object item
 * 1. Position items above each other
 */
.uk-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}
/*
 * Dragged
 */
.uk-slider:not(.uk-drag) {
  transition: transform 200ms linear;
}
/*
 * 1. Makes text unselectable
 */
.uk-slider.uk-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-slider a,
.uk-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.uk-slider img {
  pointer-events: none;
}
/* Modifier: `uk-slider-fullscreen`
 ========================================================================== */
.uk-slider-fullscreen,
.uk-slider-fullscreen > li {
  height: 100vh;
}
.uk-slider .uk-active .md-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.uk-slider-center li {
  opacity: 0.4;
}
.uk-slider-center li.uk-active {
  opacity: 1;
}
/* slidenav */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.uk-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  /* 3 */
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.uk-slidenav:hover,
.uk-slidenav:focus {
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  /* 4 */
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}
/* Active */
.uk-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}
/*
 * Icons
 */
.uk-slidenav-previous:before {
  content: "\f104";
  font-family: FontAwesome;
}
.uk-slidenav-next:before {
  content: "\f105";
  font-family: FontAwesome;
}
/* Sub-object: `uk-slidenav-position`
 ========================================================================== */
/*
 * Create position context
 */
.uk-slidenav-position {
  position: relative;
}
/*
 * Center vertically
 */
.uk-slidenav-position .uk-slidenav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}
.uk-slidenav-position:hover .uk-slidenav {
  display: block;
}
.uk-slidenav-position .uk-slidenav-previous {
  left: 20px;
}
.uk-slidenav-position .uk-slidenav-next {
  right: 20px;
}
/* Modifier: `uk-slidenav-contrast`
 ========================================================================== */
.uk-slidenav-contrast {
  color: rgba(255, 255, 255, 0.5);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-slidenav-contrast:hover,
.uk-slidenav-contrast:focus {
  color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-slidenav-contrast:active {
  color: rgba(255, 255, 255, 0.9);
}
/* tooltips */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 5px 8px;
  /* 4 */
  background: #333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.uk-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333;
}
/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.uk-tooltip-top:after,
.uk-tooltip-top-left:after,
.uk-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333;
}
/*
 * Bottom
 */
.uk-tooltip-bottom:after,
.uk-tooltip-bottom-left:after,
.uk-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333;
}
/*
 * Top/Bottom center
 */
.uk-tooltip-top:after,
.uk-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}
/*
 * Top/Bottom left
 */
.uk-tooltip-top-left:after,
.uk-tooltip-bottom-left:after {
  left: 10px;
}
/*
 * Top/Bottom right
 */
.uk-tooltip-top-right:after,
.uk-tooltip-bottom-right:after {
  right: 10px;
}
/*
 * Left
 */
.uk-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
/*
 * Right
 */
.uk-tooltip-right:after {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: #333;
}
.uk-tooltip {
  background: #424242;
  color: #fff;
  font-size: 13px;
  padding: 3px 16px;
  line-height: 22px;
  text-shadow: none;
  min-width: 80px;
  text-align: center;
  z-index: 1304;
  opacity: 0;
}
.uk-tooltip .uk-tooltip-inner {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.uk-tooltip:after {
  display: none !important;
}
.uk-tooltip.long-text {
  text-align: left;
}
.uk-tooltip.long-text .uk-tooltip-inner {
  white-space: normal;
  overflow: visible;
  line-height: 18px;
  padding: 4px 0;
}
.uk-tooltip-small {
  transform: scale(0.85);
}
.uk-tooltip-top {
  z-index: 9999;
}
.touch .uk-tooltip {
  opacity: 1;
}
/* tabs */
.uk-tab {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.uk-sticky-placeholder .uk-tab {
  background: #fff;
  padding-top: 8px;
}
.uk-tab > li {
  margin-bottom: 0;
  margin-top: 0 ;
  z-index: 1;
}
.uk-tab > li > a {
  font-size: 13px;
  text-transform: uppercase;
  color: #212121;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 !important;
  font-weight: 500;
  min-width: 100px;
  max-width: 100%;
  text-align: center;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px !important;
  margin: 0 !important;
  box-sizing: border-box;
  position: relative;
  top: 1px;
  text-shadow: none;
}
.uk-tab > li > a:hover,
.uk-tab > li > a:focus {
  background: none;
  color: #212121;
  border-bottom-color: #b2dbfb;
}
.uk-tab > li.uk-active > a {
  background: transparent !important;
  border-bottom-color: #2196f3;
}
.uk-tab > li.uk-disabled > a,
.uk-tab > li.uk-disabled > a:hover,
.uk-tab > li.uk-disabled > a:focus {
  color: #aaa;
}
.uk-tab-bottom li {
  margin-top: 0;
}
.uk-tab-bottom li > a {
  border-top: 2px solid transparent;
  border-bottom: none;
  top: auto;
  bottom: 1px;
}
.uk-tab-bottom li > a:hover,
.uk-tab-bottom li > a:focus {
  border-top-color: #b2dbfb;
}
.uk-tab-bottom li.uk-active > a {
  border-top-color: #2196f3;
}
.uk-tab-left {
  border-bottom: none;
}
.uk-tab-left li > a {
  border-right: 2px solid transparent;
  border-bottom: none;
  text-align: right;
  top: auto;
  bottom: auto;
}
.uk-tab-left li > a:hover,
.uk-tab-left li > a:focus {
  border-right-color: #b2dbfb;
}
.uk-tab-left li.uk-active > a {
  border-right-color: #2196f3;
}
.uk-tab-right {
  border-bottom: none;
}
.uk-tab-right li > a {
  border-left: 2px solid transparent;
  border-bottom: none;
  text-align: left;
  top: auto;
  bottom: auto;
}
.uk-tab-right li > a:hover,
.uk-tab-right li > a:focus {
  border-left-color: #b2dbfb;
}
.uk-tab-right li.uk-active > a {
  border-left-color: #2196f3;
}
.uk-tab-responsive li a {
  border: none !important;
}
.uk-tab-responsive > a:before {
  content: '\e5d2';
  font-family: "Material Icons";
  color: #727272;
  margin-right: 8px;
  vertical-align: -4px;
  font-size: 18px;
}
.uk-tab-icons > li > a {
  min-width: 64px;
}
.uk-tab-icons > li > a > .material-icons {
  font-size: 24px;
}
.uk-tab-double-header {
  margin: 10px 24px 0 !important;
}
.uk-tab-double-header > li > a {
  color: #fff;
  border-bottom: 4px solid transparent;
}
.uk-tab-double-header > li > a:hover,
.uk-tab-double-header > li > a:focus {
  color: #fff;
  border-bottom-color: #39a1f4;
}
.uk-tab-double-header > li.uk-active > a {
  color: #fff;
  border-bottom-color: #7cb342;
}
.uk-tab-double-header > li.uk-tab-responsive > a {
  border-bottom: none;
  padding-bottom: 5px !important;
}
.uk-tab-double-header > li.uk-tab-responsive > a:before {
  color: #fff;
}
/* text truncate */
.uk-text-truncate {
  display: block;
}
/* sortable */
/*! UIkit 2.27.5 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable > * {
  touch-action: none;
}
/*
 * Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-sortable a,
.uk-sortable img {
  -webkit-touch-callout: none;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Sub-modifier `uk-sortable-dragged`
 ========================================================================== */
.uk-sortable-dragged {
  position: absolute;
  z-index: 1050;
  pointer-events: none;
}
/* Sub-modifier `uk-sortable-placeholder`
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
}
/* Empty List
 ========================================================================== */
.uk-sortable-empty {
  min-height: 30px;
}
/* Sub-object `uk-sortable-handle`
 ========================================================================== */
/*
 * Deactivate browser touch actions in IE11
 */
.uk-sortable-handle {
  touch-action: none;
}
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* Sub-object `uk-sortable-moving`
 ========================================================================== */
.uk-sortable-moving,
.uk-sortable-moving * {
  cursor: move;
}
/* Fixes dragging items over iframes */
.uk-sortable-moving iframe {
  pointer-events: none;
}
.uk-sortable > * {
  touch-action: auto;
}
.uk-sortable.sortable-handler > * {
  cursor: move;
}
.uk-sortable .sortable-handler {
  cursor: move;
}
.uk-sortable-single {
  min-height: 0;
}
.uk-switcher {
  overflow: hidden;
}
/*
* add extra Uikit grid sizes
*
* usage:
* set custom breakpoint (1480px) and name ("xlarge-x")
* @media (min-width: 1480px) {
*  .add-grid-sizes(xlarge-x);
* }
*/
@media (min-width: 1480px) {
  /* Whole */
  .uk-width-xLarge-1-1,
  .uk-grid-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,
  .uk-grid-width-xLarge-1-2 > *,
  .uk-grid-width-xLarge-2-4 > *,
  .uk-grid-width-xLarge-3-6 > *,
  .uk-grid-width-xLarge-5-10 > * {
    width: 50%;
  }
  /* Thirds */
  .uk-width-xLarge-1-3,
  .uk-width-xLarge-2-6,
  .uk-grid-width-xLarge-1-3 > *,
  .uk-grid-width-xLarge-2-6 > * {
    width: 33.333%;
  }
  .uk-width-xLarge-2-3,
  .uk-width-xLarge-4-6,
  .uk-grid-width-xLarge-2-3 > *,
  .uk-grid-width-xLarge-4-6 > * {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-xLarge-1-4,
  .uk-grid-width-xLarge-1-4 > * {
    width: 25%;
  }
  .uk-width-xLarge-3-4,
  .uk-grid-width-xLarge-3-4 > * {
    width: 75%;
  }
  /* Fifths */
  .uk-width-xLarge-1-5,
  .uk-width-xLarge-2-10,
  .uk-grid-width-xLarge-1-5 > *,
  .uk-grid-width-xLarge-2-10 > * {
    width: 20%;
  }
  .uk-width-xLarge-2-5,
  .uk-width-xLarge-4-10,
  .uk-grid-width-xLarge-2-5 > *,
  .uk-grid-width-xLarge-4-10 > * {
    width: 40%;
  }
  .uk-width-xLarge-3-5,
  .uk-width-xLarge-6-10,
  .uk-grid-width-xLarge-3-5 > *,
  .uk-grid-width-xLarge-6-10 > * {
    width: 60%;
  }
  .uk-width-xLarge-4-5,
  .uk-width-xLarge-8-10,
  .uk-grid-width-xLarge-4-5 > *,
  .uk-grid-width-xLarge-8-10 > * {
    width: 80%;
  }
  /* Sixths */
  .uk-width-xLarge-1-6,
  .uk-grid-width-xLarge-1-6 > * {
    width: 16.666%;
  }
  .uk-width-xLarge-5-6,
  .uk-grid-width-xLarge-5-6 > * {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-xLarge-1-10,
  .uk-grid-width-xLarge-1-10 > * {
    width: 10%;
  }
  .uk-width-xLarge-3-10,
  .uk-grid-width-xLarge-3-10 > * {
    width: 30%;
  }
  .uk-width-xLarge-7-10,
  .uk-grid-width-xLarge-7-10 > * {
    width: 70%;
  }
  .uk-width-xLarge-9-10,
  .uk-grid-width-xLarge-9-10 > * {
    width: 90%;
  }
}
/* ie9 fixes */
.lte-ie9 *[class*="uk-animation-"] {
  opacity: 1 !important;
}
/* 3. Kendo UI custom styles ========================= */
.k-button,
.k-header {
  font-weight: 400;
}
.k-list-wrapper {
  padding: 8px 0;
}
.k-list-wrapper-addon {
  margin-right: 16px;
  float: left;
}
.k-list-wrapper-addon > img {
  width: 34px;
  border-radius: 50%;
}
.k-list-wrapper-addon > img-large {
  width: 82px;
  border-radius: 50%;
}
.k-list-wrapper-content {
  overflow: hidden;
  display: block;
}
.k-list-wrapper-content > p {
  margin: 0;
  font-weight: 500;
  line-height: 18px;
}
.k-list-wrapper-content > span {
  display: block;
}
.k-tag-image {
  width: auto;
  height: 17px;
  margin: 4px 5px 0 0;
  vertical-align: top;
  border-radius: 50%;
}
.k-multiselect .k-delete,
.k-multiselect .k-button:not(.k-state-disabled):hover .k-delete {
  background-position: -162px -80px;
}
.k-multiselect .k-delete {
  opacity: 0.5;
}
.k-multiselect .k-button:not(.k-state-disabled):hover .k-delete {
  opacity: 1;
}
.k-window-title {
  font-size: 14px;
}
.k-panelbar li.k-item {
  background: #fff;
}
.k-panelbar li.k-state-default > .k-link.k-state-selected {
  box-shadow: none;
}
/* 4. custom components ============================== */
/**
 * Google Material Design Preloader
 *
 * CSS animated SVG implementation of the Google Material Design preloader
 *
 * Reference: http://goo.gl/ZfulRH
 * License: MIT
 * Author: Rudi Theunissen (rudolf.theunissen@gmail.com)
 * Version: 1.1.1
 */
.md-preloader {
  font-size: 0;
  display: inline-block;
  -webkit-animation: outer 6000ms linear infinite;
          animation: outer 6000ms linear infinite;
}
.md-preloader svg {
  -webkit-animation: inner 1200ms linear infinite;
          animation: inner 1200ms linear infinite;
}
.md-preloader svg circle {
  fill: none;
  stroke: #448aff;
  stroke-linecap: round;
  -webkit-animation: arc 1200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: arc 1200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@-webkit-keyframes outer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes outer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes inner {
  0% {
    transform: rotate(-64.8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes inner {
  0% {
    transform: rotate(-64.8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes arc {
  0% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dasharray: 172.59910039px, 210.48670779px;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: -172.59910039px;
  }
}
@keyframes arc {
  0% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dasharray: 172.59910039px, 210.48670779px;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 1 210.48670779px;
    stroke-dashoffset: -172.59910039px;
  }
}
.md-preloader-success svg circle {
  stroke: #7cb342;
}
.md-preloader-danger svg circle {
  stroke: #e53935;
}
.md-preloader-warning svg circle {
  stroke: #ffa000;
}
/* content preloader */
.content-preloader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  overflow: hidden;
  margin-left: -24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 8px;
  box-sizing: border-box;
  transform: scale(0);
  transition: top 400ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.content-preloader .regular-preloader {
  position: relative;
  width: 30px;
  height: 30px;
}
.content-preloader .regular-preloader > div {
  width: 26px;
  height: 26px;
}
.content-preloader.preloader-active {
  transform: scale(1);
  transition: top 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.content-preloader-success svg circle {
  stroke: #7cb342;
}
.content-preloader-danger svg circle {
  stroke: #e53935;
}
.content-preloader-warning svg circle {
  stroke: #ffa000;
}
.sidebar_main_active > .content-preloader,
.sidebar_main_open > .content-preloader {
  margin-left: 96px !important;
}
body > .content-preloader {
  position: fixed;
  z-index: 1099;
  top: -48px;
}
body > .content-preloader.preloader-active {
  top: 56px;
}
.sidebar_main_active body > .content-preloader,
.sidebar_main_open body > .content-preloader {
  margin-left: 96px;
}
.md-card > .content-preloader {
  position: absolute;
  z-index: 10;
  top: 0;
}
.md-card > .content-preloader.preloader-active {
  top: 64px;
}
/* timeline */
.timeline {
  position: relative;
  min-height: 40px;
  padding: 8px 0 8px 62px;
}
.timeline,
.timeline:before,
.timeline:after,
.timeline *,
.timeline *:before,
.timeline *:after {
  box-sizing: border-box;
}
.timeline:before {
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(0, 0, 0, 0.085);
  content: '';
  display: block;
}
.timeline_item {
  position: relative;
  min-height: 64px;
  padding: 16px 0;
}
.timeline_icon {
  position: absolute;
  left: -54px;
  top: 16px;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #9e9e9e;
  text-align: center;
  border: 4px solid #fff;
}
.timeline_icon .material-icons {
  color: #fff;
  font-size: 18px;
  line-height: 36px;
}
.timeline_icon_danger {
  background: #e53935;
}
.timeline_icon_success {
  background: #7cb342;
}
.timeline_icon_warning {
  background: #ffa000;
}
.timeline_icon_primary {
  background: #2196f3;
}
.timeline_date {
  float: left;
  min-width: 60px;
  color: #aaa;
  text-align: center;
  line-height: 18px;
  font-size: 16px;
  margin-right: 8px;
  padding-top: 6px;
}
.timeline_date span {
  font-size: 11px;
  display: block;
  text-transform: uppercase;
}
.timeline_content {
  padding: 5px 4px 8px;
  overflow: hidden;
}
.timeline_content_addon {
  background: #fff;
  margin-top: 8px;
  max-width: 340px;
  padding: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 4px;
}
.timeline_content_addon > img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.timeline_content_addon blockquote {
  margin: 8px 0 8px 8px;
  font-size: 15px;
}
.timeline.timeline_small {
  padding: 4px 0 4px 48px;
}
.timeline.timeline_small:before {
  left: 16px;
}
.timeline.timeline_small .timeline_item {
  min-height: 32px;
}
.timeline.timeline_small .timeline_icon {
  left: -50px;
  height: 40px;
  width: 40px;
}
.timeline.timeline_small .timeline_icon .material-icons {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
}
.timeline.timeline_small .timeline_date {
  float: none;
  text-align: left;
  font-size: 11px;
  padding-left: 4px;
}
.timeline.timeline_small .timeline_date span {
  display: inline;
}
.timeline.timeline_small .timeline_content {
  font-size: 13px;
}
.timeline.timeline_small .timeline_content .md-list li {
  margin-left: 0;
  text-align: center;
}
.timeline.timeline_small .timeline_content .md-list .md-list-addon-element {
  width: auto;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 0;
}
.timeline.timeline_small .timeline_content blockquote {
  font-size: 13px;
}
@media only screen and (min-width: 768px) {
  .timeline.timeline-center {
    padding: 8px 0;
  }
  .timeline.timeline-center:before {
    left: 50%;
    margin-left: -2px;
  }
  .timeline.timeline-center .timeline_item {
    padding: 24px 0;
    width: 50%;
  }
  .timeline.timeline-center .timeline_item .timeline_date {
    position: absolute;
    float: none;
    white-space: nowrap;
    padding-top: 6px;
    margin-right: 0;
  }
  .timeline.timeline-center .timeline_item .timeline_date span {
    display: inline;
  }
  .timeline.timeline-center .timeline_item .timeline_content {
    padding: 16px 24px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 4px;
    position: relative;
    overflow: visible;
  }
  .timeline.timeline-center .timeline_item .timeline_content_addon {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 100%;
    margin-top: 0;
  }
  .timeline.timeline-center .timeline_item .timeline_content_info {
    display: block;
    font-size: 13px;
    color: #727272;
    padding-bottom: 10px;
  }
  .timeline.timeline-center .timeline_item .timeline_content:before,
  .timeline.timeline-center .timeline_item .timeline_content:after {
    position: absolute;
    content: '';
    display: block;
    border: 8px solid transparent;
    top: 6px;
  }
  .timeline.timeline-center .timeline_item:nth-child(even) {
    margin-left: 50%;
  }
  .timeline.timeline-center .timeline_item:nth-child(even) .timeline_icon {
    left: -22px;
  }
  .timeline.timeline-center .timeline_item:nth-child(even) .timeline_content {
    margin-left: 40px;
  }
  .timeline.timeline-center .timeline_item:nth-child(even) .timeline_content:before {
    left: -16px;
    border-right-color: rgba(0, 0, 0, 0.1);
  }
  .timeline.timeline-center .timeline_item:nth-child(even) .timeline_content:after {
    left: -15px;
    border-right-color: #fff;
  }
  .timeline.timeline-center .timeline_item:nth-child(even) .timeline_date {
    right: 100%;
    padding-right: 40px;
  }
  .timeline.timeline-center .timeline_item:nth-child(odd) .timeline_icon {
    left: auto;
    right: -22px;
  }
  .timeline.timeline-center .timeline_item:nth-child(odd) .timeline_date {
    left: 100%;
    padding-left: 40px;
  }
  .timeline.timeline-center .timeline_item:nth-child(odd) .timeline_content {
    margin-right: 40px;
  }
  .timeline.timeline-center .timeline_item:nth-child(odd) .timeline_content:before {
    right: -16px;
    border-left-color: rgba(0, 0, 0, 0.1);
  }
  .timeline.timeline-center .timeline_item:nth-child(odd) .timeline_content:after {
    right: -15px;
    border-left-color: #fff;
  }
  .timeline.timeline-center .timeline_item:nth-child(odd) .timeline_content_addon {
    display: inline-block;
  }
}
.list_view > *,
.grid_view > * {
  transition: all 120ms cubic-bezier(0.4, 0, 0.2, 1);
}
.grid_view.uk-grid-medium {
  margin-top: -32px;
}
.grid_view.uk-grid-small {
  margin-top: -5px;
}
.list_view {
  margin-left: 0 !important;
}
.list_view > div,
.list_view > li {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.list_view > div .md-card,
.list_view > li .md-card {
  overflow: hidden;
}
.list_view > div .md-card-head,
.list_view > li .md-card-head {
  float: left;
  border: none;
  width: 200px;
}
.list_view > div .md-card-content,
.list_view > li .md-card-content {
  overflow: hidden;
}
.list_view > div + div,
.list_view > li + li {
  border-top: 1px solid #ededed;
  margin: 0 !important;
}
.js_collapsible_column.in-transition {
  transition: all 240ms ease;
}
.js_collapsible_column.in-transition > * {
  display: none;
}
.js_collapsible_column.collapsed {
  width: 65px;
}
.js_collapsible_column.collapsed .js_hidden {
  display: none;
}
/* 5. material design styles ========================= */
/* bg colors */
.md-bg-cyan {
  background-color: #00acc1 !important;
  color: #fff;
}
.md-bg-light-green {
  background-color: #7cb342 !important;
  color: #fff;
}
.md-bg-grey {
  background-color: #616161 !important;
  color: #fff;
}
.md-bg-red {
  background-color: #d32f2f !important;
  color: #fff;
}
.md-bg-light-blue {
  background-color: #0288d1 !important;
  color: #fff;
}
.md-bg-teal {
  background-color: #00897b !important;
  color: #fff;
}
.md-bg-purple {
  background-color: #8e24aa !important;
  color: #fff;
}
/* buttons */
.md-btn {
  background: #fff;
  border: none;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  min-height: 31px;
  min-width: 70px;
  padding: 2px 16px;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  transition: all 280ms ease;
  color: #212121;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  font: 500 14px / 31px "Roboto", sans-serif !important;
}
.md-btn:hover,
.md-btn:focus,
.md-btn:active,
.uk-button-dropdown.uk-open > .md-btn {
  background: #fff;
  outline: none;
  text-decoration: none;
  color: #212121;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.md-btn:active,
.md-btn.uk-active,
.uk-button-dropdown.uk-open > .md-btn {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.md-btn.uk-active {
  position: relative;
}
.md-btn.uk-active:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: '';
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}
.md-btn-flat {
  box-shadow: none !important;
  background: none;
}
.md-btn-flat:hover,
.md-btn-flat:focus {
  background: rgba(153, 153, 153, 0.2);
}
.md-btn-flat:active,
.md-btn-flat.uk-active {
  background: rgba(153, 153, 153, 0.4);
}
.md-btn-flat-danger,
.md-btn-flat-danger:hover,
.md-btn-flat-danger:focus,
.md-btn-flat-danger:active,
.md-btn-flat-danger .uk-active {
  color: #e53935;
}
.md-btn-flat-danger:hover,
.md-btn-flat-danger:focus,
.md-btn-flat-danger:active {
  background: #fceaea;
}
.md-btn-flat-danger.uk-active {
  color: #cd1e1a;
  background: #f6bebd;
}
.md-btn-flat-primary,
.md-btn-flat-primary:hover,
.md-btn-flat-primary:focus,
.md-btn-flat-primary:active,
.md-btn-flat-primary.uk-active {
  color: #1976d2;
}
.md-btn-flat-primary:hover,
.md-btn-flat-primary:focus,
.md-btn-flat-primary:active {
  background: #e3f2fd;
}
.md-btn-flat-primary.uk-active {
  color: #0c7cd5;
  background: #b2dbfb;
}
.md-btn-flat-success,
.md-btn-flat-success:hover,
.md-btn-flat-success:focus,
.md-btn-flat-success:active,
.md-btn-flat-success.uk-active {
  color: #7cb342;
}
.md-btn-flat-success:hover,
.md-btn-flat-success:focus,
.md-btn-flat-success:active {
  background: #e1efd2;
}
.md-btn-flat-success.uk-active {
  color: #628e34;
  background: #c8e1ad;
}
.md-btn-flat-warning,
.md-btn-flat-warning:hover,
.md-btn-flat-warning:focus,
.md-btn-flat-warning:active,
.md-btn-flat-warning.uk-active {
  color: #ffa000;
}
.md-btn-flat-warning:hover,
.md-btn-flat-warning:focus,
.md-btn-flat-warning:active {
  background: #ffeccc;
}
.md-btn-flat-warning.uk-active {
  color: #cc8000;
  background: #ffd999;
}
.md-btn-flat.disabled {
  background: none !important;
}
.md-btn-danger,
.md-btn-danger:hover,
.md-btn-danger:focus,
.md-btn-danger:active,
.md-btn-danger.uk-active {
  background: #e53935;
}
.md-btn-primary,
.md-btn-primary:hover,
.md-btn-primary:focus,
.md-btn-primary:active,
.md-btn-primary.uk-active {
  background: #2196f3;
}
.md-btn-success,
.md-btn-success:hover,
.md-btn-success:focus,
.md-btn-success:active,
.md-btn-success.uk-active {
  background: #7cb342;
}
.md-btn-warning,
.md-btn-warning:hover,
.md-btn-warning:focus,
.md-btn-warning:active,
.md-btn-warning.uk-active {
  background: #ffa000;
}
.md-btn-danger,
.md-btn-primary,
.md-btn-success,
.md-btn-warning,
.md-btn-danger:hover,
.md-btn-primary:hover,
.md-btn-success:hover,
.md-btn-warning:hover,
.md-btn-danger:focus,
.md-btn-primary:focus,
.md-btn-success:focus,
.md-btn-warning:focus,
.md-btn-danger:active,
.md-btn-primary:active,
.md-btn-success:active,
.md-btn-warning:active,
.md-btn-danger.uk-active,
.md-btn-primary.uk-active,
.md-btn-success.uk-active,
.md-btn-warning.uk-active,
.md-btn-danger > i,
.md-btn-primary > i,
.md-btn-success > i,
.md-btn-warning > i {
  color: #fff;
}
.md-btn.disabled,
.md-btn.disabled:hover,
.md-btn.disabled:focus,
.md-btn.disabled:active,
.md-btn.disabled.uk-active {
  color: #a8a8a8;
  background: #eaeaea;
  box-shadow: none !important;
  cursor: default;
  pointer-events: none;
}
.md-btn > i.material-icons {
  margin-top: 5px;
  font-size: 18px;
}
.md-btn-mini {
  line-height: 21px !important;
  min-width: 12px;
  font-size: 10px !important;
  min-height: 24px;
}
.md-btn-small {
  line-height: 27px !important;
  min-width: 14px;
  font-size: 11px !important;
}
.md-btn-large {
  line-height: 42px !important;
  font-size: 16px !important;
}
.md-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.md-btn + .md-btn {
  margin-left: 8px;
}
.md-btn-block {
  width: 100%;
}
.md-btn-block + .md-btn-block {
  margin-left: 0;
  margin-top: 12px;
}
.md-btn + .md-btn-group {
  margin-left: 16px;
}
.md-btn-facebook {
  background: #3b5998 !important;
}
.md-btn-twitter {
  background: #00aced !important;
}
.md-btn-gplus {
  background: #dd4b39 !important;
}
.md-btn-facebook,
.md-btn-twitter,
.md-btn-gplus,
.md-btn-facebook > i,
.md-btn-twitter > i,
.md-btn-gplus > i {
  color: #fff !important;
}
.md-btn-icon > i.no_margin {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.md-btn-icon-large,
.md-btn-icon.md-btn-large {
  min-width: 72px;
}
.md-btn-icon-large > i,
.md-btn-icon.md-btn-large > i {
  font-size: 24px;
  margin-right: 12px;
  vertical-align: -3px;
}
.md-btn-icon-default,
.md-btn-icon {
  min-width: 64px;
}
.md-btn-icon-default > i,
.md-btn-icon > i {
  font-size: 18px;
  margin-right: 8px;
  vertical-align: -2px;
}
.md-btn-icon-small,
.md-btn-icon.md-btn-small {
  min-width: 48px;
}
.md-btn-icon-small > i,
.md-btn-icon.md-btn-small > i {
  font-size: 16px;
  margin-right: 6px;
  vertical-align: -2px;
}
.md-btn-icon-mini,
.md-btn-icon.md-btn-mini {
  min-width: 36px;
}
.md-btn-icon-mini > i,
.md-btn-icon.md-btn-mini > i {
  font-size: 16px;
  margin-right: 4px;
  vertical-align: -2px;
}
.md-fab {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: #727272;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.md-fab:hover,
.md-fab:focus,
.md-fab:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.md-fab > i {
  font-size: 36px;
  line-height: 64px;
  height: inherit;
  width: inherit;
  position: absolute;
  left: 0;
  top: 0;
  color: #727272;
}
.md-fab.md-fab-accent {
  background: #7cb342;
}
.md-fab.md-fab-accent > i {
  color: #fff;
}
.md-fab.md-fab-success {
  background: #7cb342;
}
.md-fab.md-fab-success > i {
  color: #fff;
}
.md-fab.md-fab-danger {
  background: #e53935;
}
.md-fab.md-fab-danger > i {
  color: #fff;
}
.md-fab.md-fab-primary {
  background: #2196f3;
}
.md-fab.md-fab-primary > i {
  color: #fff;
}
.md-fab.md-fab-warning {
  background: #ffa000;
}
.md-fab.md-fab-warning > i {
  color: #fff;
}
.md-fab.md-fab-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.md-fab.md-fab-small > i {
  line-height: 48px;
  height: inherit;
  width: inherit;
  font-size: 24px;
}
.md-fab-speed-dial .md-fab-action-close {
  display: none;
}
.md-fab-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1004;
  transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 767px) {
  .md-fab-wrapper {
    bottom: 20px;
    right: 20px;
  }
}
.md-fab-wrapper > .md-fab + .md-fab {
  margin-top: 16px;
}
.md-fab-wrapper.md-fab-in-card {
  position: absolute;
}
.md-fab-speed-dial .md-fab-wrapper-small {
  position: absolute;
  bottom: 80px;
  right: 8px;
  min-height: 48px;
  width: 48px;
  z-index: -1;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  right: 0;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(2) {
  bottom: 64px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(3) {
  bottom: 128px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(4) {
  bottom: 192px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(5) {
  bottom: 256px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(6) {
  bottom: 320px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(7) {
  bottom: 384px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-last-child(8) {
  bottom: 448px;
}
.md-fab-speed-dial .md-fab-wrapper-small .md-fab-small:nth-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial.md-fab-active .md-fab-small:nth-last-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small {
  position: absolute;
  right: 80px;
  bottom: 8px;
  min-height: 48px;
  width: 48px;
  z-index: -1;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  right: 0;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(2) {
  right: 64px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(3) {
  right: 128px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(4) {
  right: 192px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(5) {
  right: 256px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(6) {
  right: 320px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(7) {
  right: 384px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-last-child(8) {
  right: 448px;
}
.md-fab-speed-dial-horizontal .md-fab-wrapper-small .md-fab-small:nth-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(1) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 50ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(2) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(3) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(4) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 200ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(5) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(6) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 300ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(7) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 350ms;
}
.md-fab-speed-dial-horizontal.md-fab-active .md-fab-small:nth-last-child(8) {
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms, opacity 100ms cubic-bezier(0.4, 0, 0.2, 1) 400ms;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab {
  display: inline-block;
  vertical-align: bottom;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small {
  display: none;
  min-height: 48px;
  width: auto;
  z-index: -1;
  white-space: nowrap;
  padding-bottom: 8px;
  vertical-align: bottom;
  position: static;
  right: auto;
  bottom: auto;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small {
  position: static;
  right: auto;
  display: inline-block;
  vertical-align: bottom;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small + .md-fab-small {
  margin-left: 16px;
}
.md-fab-speed-dial-horizontal[data-fab-hover] .md-fab-wrapper-small .md-fab-small:last-child {
  margin-right: 16px;
}
.md-fab-speed-dial-horizontal[data-fab-hover].md-fab-over .md-fab-wrapper-small {
  display: inline-block;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small {
  margin-left: 8px;
  position: static;
  display: none;
  bottom: auto;
  right: auto;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small {
  position: static;
  bottom: auto;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small + .md-fab-small {
  margin-top: 16px;
}
.md-fab-speed-dial[data-fab-hover] .md-fab-wrapper-small .md-fab-small:last-child {
  margin-bottom: 16px;
}
.md-fab-speed-dial[data-fab-hover].md-fab-over .md-fab-wrapper-small {
  display: block;
}
.md-fab-toolbar {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.md-fab-toolbar > i {
  cursor: pointer;
}
.md-fab-toolbar-actions {
  visibility: hidden;
  white-space: nowrap;
  padding: 0 16px;
  overflow: hidden;
  box-sizing: border-box;
}
.md-fab-toolbar-actions > a,
.md-fab-toolbar-actions > button {
  display: block;
  float: left;
  opacity: 0;
  margin: 0 0 0 16px;
  height: 64px;
  width: 48px;
  box-sizing: border-box;
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.md-fab-toolbar-actions > a:first-child,
.md-fab-toolbar-actions > button:first-child {
  margin-left: 0;
}
.md-fab-toolbar-actions .material-icons {
  font-size: 36px;
  line-height: 64px;
}
.md-fab-toolbar.md-fab-animated {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}
.md-fab-toolbar.md-fab-animated > i {
  display: none;
}
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions {
  visibility: visible;
}
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > a,
.md-fab-toolbar.md-fab-active .md-fab-toolbar-actions > button {
  opacity: 1;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a,
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button {
  height: 48px;
  width: 36px;
  padding: 0;
  margin: 0 0 0 8px;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > a:first-child,
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions > button:first-child {
  margin-left: 0;
}
.md-fab-toolbar.md-fab-small .md-fab-toolbar-actions .material-icons {
  font-size: 24px;
  line-height: 48px;
  height: inherit;
}
.md-fab-sheet {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.md-fab-sheet > i {
  cursor: pointer;
}
.md-fab-sheet-actions {
  visibility: hidden;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  padding: 4px 0;
}
.md-fab-sheet-actions > a {
  display: block;
  opacity: 0;
  padding: 4px 16px;
  box-sizing: border-box;
  font: 400 16px / 32px "Roboto", sans-serif;
  text-align: left;
}
.md-fab-sheet-actions > a,
.md-fab-sheet-actions > a:hover {
  color: #212121;
}
.md-fab-sheet-actions .material-icons {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: -6px;
}
.md-fab-sheet.md-fab-animated {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}
.md-fab-sheet.md-fab-animated > i {
  display: none;
}
.md-fab-sheet.md-fab-active .md-fab-sheet-actions {
  visibility: visible;
}
.md-fab-sheet.md-fab-active .md-fab-sheet-actions > a {
  opacity: 1;
}
.sidebar_secondary_active .md-fab-wrapper {
  margin-right: 264px;
}
@media only screen and (max-width: 767px) {
  .sidebar_secondary_active .md-fab-wrapper {
    margin-right: 280px;
  }
}
.md-toggle-group .md-toggle-button {
  border-width: 0 0 2px;
  border-style: solid;
  border-color: transparent;
  background: none;
  line-height: 30px;
  min-width: 42px;
  text-align: center;
  padding: 0 8px;
  vertical-align: middle;
  cursor: pointer;
}
.md-toggle-group .md-toggle-button.md-toggle-active {
  border-bottom-color: #212121;
}
.md-toggle-group.md-toggle-group-small .md-toggle-button {
  font-size: 11px;
  line-height: 24px;
  min-width: 16px;
  padding: 0 6px;
}
.md-btn-group {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.md-btn-group .md-btn {
  vertical-align: top;
  margin-left: 0 !important;
}
.md-btn-group .md-btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.md-btn-group .md-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.md-btn-group .md-btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.md-color-red-50 {
  color: #ffebee !important;
}
.md-bg-red-50 {
  background-color: #ffebee !important;
}
.md-color-red-100 {
  color: #ffcdd2 !important;
}
.md-bg-red-100 {
  background-color: #ffcdd2 !important;
}
.md-color-red-200 {
  color: #ef9a9a !important;
}
.md-bg-red-200 {
  background-color: #ef9a9a !important;
}
.md-color-red-300 {
  color: #e57373 !important;
}
.md-bg-red-300 {
  background-color: #e57373 !important;
}
.md-color-red-400 {
  color: #ef5350 !important;
}
.md-bg-red-400 {
  background-color: #ef5350 !important;
}
.md-color-red-500 {
  color: #f44336 !important;
}
.md-bg-red-500 {
  background-color: #f44336 !important;
}
.md-color-red-600 {
  color: #e53935 !important;
}
.md-bg-red-600 {
  background-color: #e53935 !important;
}
.md-color-red-700 {
  color: #d32f2f !important;
}
.md-bg-red-700 {
  background-color: #d32f2f !important;
}
.md-color-red-800 {
  color: #c62828 !important;
}
.md-bg-red-800 {
  background-color: #c62828 !important;
}
.md-color-red-900 {
  color: #b71c1c !important;
}
.md-bg-red-900 {
  background-color: #b71c1c !important;
}
.md-color-red-A100 {
  color: #ff8a80 !important;
}
.md-bg-red-A100 {
  background-color: #ff8a80 !important;
}
.md-color-red-A200 {
  color: #ff5252 !important;
}
.md-bg-red-A200 {
  background-color: #ff5252 !important;
}
.md-color-red-A400 {
  color: #ff1744 !important;
}
.md-bg-red-A400 {
  background-color: #ff1744 !important;
}
.md-color-red-A700 {
  color: #d50000 !important;
}
.md-bg-red-A700 {
  background-color: #d50000 !important;
}
.md-color-pink-50 {
  color: #fce4ec !important;
}
.md-bg-pink-50 {
  background-color: #fce4ec !important;
}
.md-color-pink-100 {
  color: #f8bbd0 !important;
}
.md-bg-pink-100 {
  background-color: #f8bbd0 !important;
}
.md-color-pink-200 {
  color: #f48fb1 !important;
}
.md-bg-pink-200 {
  background-color: #f48fb1 !important;
}
.md-color-pink-300 {
  color: #f06292 !important;
}
.md-bg-pink-300 {
  background-color: #f06292 !important;
}
.md-color-pink-400 {
  color: #ec407a !important;
}
.md-bg-pink-400 {
  background-color: #ec407a !important;
}
.md-color-pink-500 {
  color: #e91e63 !important;
}
.md-bg-pink-500 {
  background-color: #e91e63 !important;
}
.md-color-pink-600 {
  color: #d81b60 !important;
}
.md-bg-pink-600 {
  background-color: #d81b60 !important;
}
.md-color-pink-700 {
  color: #c2185b !important;
}
.md-bg-pink-700 {
  background-color: #c2185b !important;
}
.md-color-pink-800 {
  color: #ad1457 !important;
}
.md-bg-pink-800 {
  background-color: #ad1457 !important;
}
.md-color-pink-900 {
  color: #880e4f !important;
}
.md-bg-pink-900 {
  background-color: #880e4f !important;
}
.md-color-pink-A100 {
  color: #ff80ab !important;
}
.md-bg-pink-A100 {
  background-color: #ff80ab !important;
}
.md-color-pink-A200 {
  color: #ff4081 !important;
}
.md-bg-pink-A200 {
  background-color: #ff4081 !important;
}
.md-color-pink-A400 {
  color: #f50057 !important;
}
.md-bg-pink-A400 {
  background-color: #f50057 !important;
}
.md-color-pink-A700 {
  color: #c51162 !important;
}
.md-bg-pink-A700 {
  background-color: #c51162 !important;
}
.md-color-purple-50 {
  color: #f3e5f5 !important;
}
.md-bg-purple-50 {
  background-color: #f3e5f5 !important;
}
.md-color-purple-100 {
  color: #e1bee7 !important;
}
.md-bg-purple-100 {
  background-color: #e1bee7 !important;
}
.md-color-purple-200 {
  color: #ce93d8 !important;
}
.md-bg-purple-200 {
  background-color: #ce93d8 !important;
}
.md-color-purple-300 {
  color: #ba68c8 !important;
}
.md-bg-purple-300 {
  background-color: #ba68c8 !important;
}
.md-color-purple-400 {
  color: #ab47bc !important;
}
.md-bg-purple-400 {
  background-color: #ab47bc !important;
}
.md-color-purple-500 {
  color: #9c27b0 !important;
}
.md-bg-purple-500 {
  background-color: #9c27b0 !important;
}
.md-color-purple-600 {
  color: #8e24aa !important;
}
.md-bg-purple-600 {
  background-color: #8e24aa !important;
}
.md-color-purple-700 {
  color: #7b1fa2 !important;
}
.md-bg-purple-700 {
  background-color: #7b1fa2 !important;
}
.md-color-purple-800 {
  color: #6a1b9a !important;
}
.md-bg-purple-800 {
  background-color: #6a1b9a !important;
}
.md-color-purple-900 {
  color: #4a148c !important;
}
.md-bg-purple-900 {
  background-color: #4a148c !important;
}
.md-color-purple-A100 {
  color: #ea80fc !important;
}
.md-bg-purple-A100 {
  background-color: #ea80fc !important;
}
.md-color-purple-A200 {
  color: #e040fb !important;
}
.md-bg-purple-A200 {
  background-color: #e040fb !important;
}
.md-color-purple-A400 {
  color: #d500f9 !important;
}
.md-bg-purple-A400 {
  background-color: #d500f9 !important;
}
.md-color-purple-A700 {
  color: #aa00ff !important;
}
.md-bg-purple-A700 {
  background-color: #aa00ff !important;
}
.md-color-deep-purple-50 {
  color: #ede7f6 !important;
}
.md-bg-deep-purple-50 {
  background-color: #ede7f6 !important;
}
.md-color-deep-purple-100 {
  color: #d1c4e9 !important;
}
.md-bg-deep-purple-100 {
  background-color: #d1c4e9 !important;
}
.md-color-deep-purple-200 {
  color: #b39ddb !important;
}
.md-bg-deep-purple-200 {
  background-color: #b39ddb !important;
}
.md-color-deep-purple-300 {
  color: #9575cd !important;
}
.md-bg-deep-purple-300 {
  background-color: #9575cd !important;
}
.md-color-deep-purple-400 {
  color: #7e57c2 !important;
}
.md-bg-deep-purple-400 {
  background-color: #7e57c2 !important;
}
.md-color-deep-purple-500 {
  color: #673ab7 !important;
}
.md-bg-deep-purple-500 {
  background-color: #673ab7 !important;
}
.md-color-deep-purple-600 {
  color: #5e35b1 !important;
}
.md-bg-deep-purple-600 {
  background-color: #5e35b1 !important;
}
.md-color-deep-purple-700 {
  color: #512da8 !important;
}
.md-bg-deep-purple-700 {
  background-color: #512da8 !important;
}
.md-color-deep-purple-800 {
  color: #4527a0 !important;
}
.md-bg-deep-purple-800 {
  background-color: #4527a0 !important;
}
.md-color-deep-purple-900 {
  color: #311b92 !important;
}
.md-bg-deep-purple-900 {
  background-color: #311b92 !important;
}
.md-color-deep-purple-A100 {
  color: #b388ff !important;
}
.md-bg-deep-purple-A100 {
  background-color: #b388ff !important;
}
.md-color-deep-purple-A200 {
  color: #7c4dff !important;
}
.md-bg-deep-purple-A200 {
  background-color: #7c4dff !important;
}
.md-color-deep-purple-A400 {
  color: #651fff !important;
}
.md-bg-deep-purple-A400 {
  background-color: #651fff !important;
}
.md-color-deep-purple-A700 {
  color: #6200ea !important;
}
.md-bg-deep-purple-A700 {
  background-color: #6200ea !important;
}
.md-color-indigo-50 {
  color: #e8eaf6 !important;
}
.md-bg-indigo-50 {
  background-color: #e8eaf6 !important;
}
.md-color-indigo-100 {
  color: #c5cae9 !important;
}
.md-bg-indigo-100 {
  background-color: #c5cae9 !important;
}
.md-color-indigo-200 {
  color: #9fa8da !important;
}
.md-bg-indigo-200 {
  background-color: #9fa8da !important;
}
.md-color-indigo-300 {
  color: #7986cb !important;
}
.md-bg-indigo-300 {
  background-color: #7986cb !important;
}
.md-color-indigo-400 {
  color: #5c6bc0 !important;
}
.md-bg-indigo-400 {
  background-color: #5c6bc0 !important;
}
.md-color-indigo-500 {
  color: #3f51b5 !important;
}
.md-bg-indigo-500 {
  background-color: #3f51b5 !important;
}
.md-color-indigo-600 {
  color: #3949ab !important;
}
.md-bg-indigo-600 {
  background-color: #3949ab !important;
}
.md-color-indigo-700 {
  color: #303f9f !important;
}
.md-bg-indigo-700 {
  background-color: #303f9f !important;
}
.md-color-indigo-800 {
  color: #283593 !important;
}
.md-bg-indigo-800 {
  background-color: #283593 !important;
}
.md-color-indigo-900 {
  color: #1a237e !important;
}
.md-bg-indigo-900 {
  background-color: #1a237e !important;
}
.md-color-indigo-A100 {
  color: #8c9eff !important;
}
.md-bg-indigo-A100 {
  background-color: #8c9eff !important;
}
.md-color-indigo-A200 {
  color: #536dfe !important;
}
.md-bg-indigo-A200 {
  background-color: #536dfe !important;
}
.md-color-indigo-A400 {
  color: #3d5afe !important;
}
.md-bg-indigo-A400 {
  background-color: #3d5afe !important;
}
.md-color-indigo-A700 {
  color: #304ffe !important;
}
.md-bg-indigo-A700 {
  background-color: #304ffe !important;
}
.md-color-blue-50 {
  color: #e3f2fd !important;
}
.md-bg-blue-50 {
  background-color: #e3f2fd !important;
}
.md-color-blue-100 {
  color: #bbdefb !important;
}
.md-bg-blue-100 {
  background-color: #bbdefb !important;
}
.md-color-blue-200 {
  color: #90caf9 !important;
}
.md-bg-blue-200 {
  background-color: #90caf9 !important;
}
.md-color-blue-300 {
  color: #64b5f6 !important;
}
.md-bg-blue-300 {
  background-color: #64b5f6 !important;
}
.md-color-blue-400 {
  color: #42a5f5 !important;
}
.md-bg-blue-400 {
  background-color: #42a5f5 !important;
}
.md-color-blue-500 {
  color: #2196f3 !important;
}
.md-bg-blue-500 {
  background-color: #2196f3 !important;
}
.md-color-blue-600 {
  color: #1e88e5 !important;
}
.md-bg-blue-600 {
  background-color: #1e88e5 !important;
}
.md-color-blue-700 {
  color: #1976d2 !important;
}
.md-bg-blue-700 {
  background-color: #1976d2 !important;
}
.md-color-blue-800 {
  color: #1565c0 !important;
}
.md-bg-blue-800 {
  background-color: #1565c0 !important;
}
.md-color-blue-900 {
  color: #0d47a1 !important;
}
.md-bg-blue-900 {
  background-color: #0d47a1 !important;
}
.md-color-blue-A100 {
  color: #82b1ff !important;
}
.md-bg-blue-A100 {
  background-color: #82b1ff !important;
}
.md-color-blue-A200 {
  color: #448aff !important;
}
.md-bg-blue-A200 {
  background-color: #448aff !important;
}
.md-color-blue-A400 {
  color: #2979ff !important;
}
.md-bg-blue-A400 {
  background-color: #2979ff !important;
}
.md-color-blue-A700 {
  color: #2962ff !important;
}
.md-bg-blue-A700 {
  background-color: #2962ff !important;
}
.md-color-light-blue-50 {
  color: #e1f5fe !important;
}
.md-bg-light-blue-50 {
  background-color: #e1f5fe !important;
}
.md-color-light-blue-100 {
  color: #b3e5fc !important;
}
.md-bg-light-blue-100 {
  background-color: #b3e5fc !important;
}
.md-color-light-blue-200 {
  color: #81d4fa !important;
}
.md-bg-light-blue-200 {
  background-color: #81d4fa !important;
}
.md-color-light-blue-300 {
  color: #4fc3f7 !important;
}
.md-bg-light-blue-300 {
  background-color: #4fc3f7 !important;
}
.md-color-light-blue-400 {
  color: #29b6f6 !important;
}
.md-bg-light-blue-400 {
  background-color: #29b6f6 !important;
}
.md-color-light-blue-500 {
  color: #03a9f4 !important;
}
.md-bg-light-blue-500 {
  background-color: #03a9f4 !important;
}
.md-color-light-blue-600 {
  color: #039be5 !important;
}
.md-bg-light-blue-600 {
  background-color: #039be5 !important;
}
.md-color-light-blue-700 {
  color: #0288d1 !important;
}
.md-bg-light-blue-700 {
  background-color: #0288d1 !important;
}
.md-color-light-blue-800 {
  color: #0277bd !important;
}
.md-bg-light-blue-800 {
  background-color: #0277bd !important;
}
.md-color-light-blue-900 {
  color: #01579b !important;
}
.md-bg-light-blue-900 {
  background-color: #01579b !important;
}
.md-color-light-blue-A100 {
  color: #80d8ff !important;
}
.md-bg-light-blue-A100 {
  background-color: #80d8ff !important;
}
.md-color-light-blue-A200 {
  color: #40c4ff !important;
}
.md-bg-light-blue-A200 {
  background-color: #40c4ff !important;
}
.md-color-light-blue-A400 {
  color: #00b0ff !important;
}
.md-bg-light-blue-A400 {
  background-color: #00b0ff !important;
}
.md-color-light-blue-A700 {
  color: #0091ea !important;
}
.md-bg-light-blue-A700 {
  background-color: #0091ea !important;
}
.md-color-cyan-50 {
  color: #e0f7fa !important;
}
.md-bg-cyan-50 {
  background-color: #e0f7fa !important;
}
.md-color-cyan-100 {
  color: #b2ebf2 !important;
}
.md-bg-cyan-100 {
  background-color: #b2ebf2 !important;
}
.md-color-cyan-200 {
  color: #80deea !important;
}
.md-bg-cyan-200 {
  background-color: #80deea !important;
}
.md-color-cyan-300 {
  color: #4dd0e1 !important;
}
.md-bg-cyan-300 {
  background-color: #4dd0e1 !important;
}
.md-color-cyan-400 {
  color: #26c6da !important;
}
.md-bg-cyan-400 {
  background-color: #26c6da !important;
}
.md-color-cyan-500 {
  color: #00bcd4 !important;
}
.md-bg-cyan-500 {
  background-color: #00bcd4 !important;
}
.md-color-cyan-600 {
  color: #00acc1 !important;
}
.md-bg-cyan-600 {
  background-color: #00acc1 !important;
}
.md-color-cyan-700 {
  color: #0097a7 !important;
}
.md-bg-cyan-700 {
  background-color: #0097a7 !important;
}
.md-color-cyan-800 {
  color: #00838f !important;
}
.md-bg-cyan-800 {
  background-color: #00838f !important;
}
.md-color-cyan-900 {
  color: #006064 !important;
}
.md-bg-cyan-900 {
  background-color: #006064 !important;
}
.md-color-cyan-A100 {
  color: #84ffff !important;
}
.md-bg-cyan-A100 {
  background-color: #84ffff !important;
}
.md-color-cyan-A200 {
  color: #18ffff !important;
}
.md-bg-cyan-A200 {
  background-color: #18ffff !important;
}
.md-color-cyan-A400 {
  color: #00e5ff !important;
}
.md-bg-cyan-A400 {
  background-color: #00e5ff !important;
}
.md-color-cyan-A700 {
  color: #00b8d4 !important;
}
.md-bg-cyan-A700 {
  background-color: #00b8d4 !important;
}
.md-color-teal-50 {
  color: #e0f2f1 !important;
}
.md-bg-teal-50 {
  background-color: #e0f2f1 !important;
}
.md-color-teal-100 {
  color: #b2dfdb !important;
}
.md-bg-teal-100 {
  background-color: #b2dfdb !important;
}
.md-color-teal-200 {
  color: #80cbc4 !important;
}
.md-bg-teal-200 {
  background-color: #80cbc4 !important;
}
.md-color-teal-300 {
  color: #4db6ac !important;
}
.md-bg-teal-300 {
  background-color: #4db6ac !important;
}
.md-color-teal-400 {
  color: #26a69a !important;
}
.md-bg-teal-400 {
  background-color: #26a69a !important;
}
.md-color-teal-500 {
  color: #009688 !important;
}
.md-bg-teal-500 {
  background-color: #009688 !important;
}
.md-color-teal-600 {
  color: #00897b !important;
}
.md-bg-teal-600 {
  background-color: #00897b !important;
}
.md-color-teal-700 {
  color: #00796b !important;
}
.md-bg-teal-700 {
  background-color: #00796b !important;
}
.md-color-teal-800 {
  color: #00695c !important;
}
.md-bg-teal-800 {
  background-color: #00695c !important;
}
.md-color-teal-900 {
  color: #004d40 !important;
}
.md-bg-teal-900 {
  background-color: #004d40 !important;
}
.md-color-teal-A100 {
  color: #a7ffeb !important;
}
.md-bg-teal-A100 {
  background-color: #a7ffeb !important;
}
.md-color-teal-A200 {
  color: #64ffda !important;
}
.md-bg-teal-A200 {
  background-color: #64ffda !important;
}
.md-color-teal-A400 {
  color: #1de9b6 !important;
}
.md-bg-teal-A400 {
  background-color: #1de9b6 !important;
}
.md-color-teal-A700 {
  color: #00bfa5 !important;
}
.md-bg-teal-A700 {
  background-color: #00bfa5 !important;
}
.md-color-green-50 {
  color: #e8f5e9 !important;
}
.md-bg-green-50 {
  background-color: #e8f5e9 !important;
}
.md-color-green-100 {
  color: #c8e6c9 !important;
}
.md-bg-green-100 {
  background-color: #c8e6c9 !important;
}
.md-color-green-200 {
  color: #a5d6a7 !important;
}
.md-bg-green-200 {
  background-color: #a5d6a7 !important;
}
.md-color-green-300 {
  color: #81c784 !important;
}
.md-bg-green-300 {
  background-color: #81c784 !important;
}
.md-color-green-400 {
  color: #66bb6a !important;
}
.md-bg-green-400 {
  background-color: #66bb6a !important;
}
.md-color-green-500 {
  color: #4caf50 !important;
}
.md-bg-green-500 {
  background-color: #4caf50 !important;
}
.md-color-green-600 {
  color: #43a047 !important;
}
.md-bg-green-600 {
  background-color: #43a047 !important;
}
.md-color-green-700 {
  color: #388e3c !important;
}
.md-bg-green-700 {
  background-color: #388e3c !important;
}
.md-color-green-800 {
  color: #2e7d32 !important;
}
.md-bg-green-800 {
  background-color: #2e7d32 !important;
}
.md-color-green-900 {
  color: #1b5e20 !important;
}
.md-bg-green-900 {
  background-color: #1b5e20 !important;
}
.md-color-green-A100 {
  color: #b9f6ca !important;
}
.md-bg-green-A100 {
  background-color: #b9f6ca !important;
}
.md-color-green-A200 {
  color: #69f0ae !important;
}
.md-bg-green-A200 {
  background-color: #69f0ae !important;
}
.md-color-green-A400 {
  color: #00e676 !important;
}
.md-bg-green-A400 {
  background-color: #00e676 !important;
}
.md-color-green-A700 {
  color: #00c853 !important;
}
.md-bg-green-A700 {
  background-color: #00c853 !important;
}
.md-color-light-green-50 {
  color: #f1f8e9 !important;
}
.md-bg-light-green-50 {
  background-color: #f1f8e9 !important;
}
.md-color-light-green-100 {
  color: #dcedc8 !important;
}
.md-bg-light-green-100 {
  background-color: #dcedc8 !important;
}
.md-color-light-green-200 {
  color: #c5e1a5 !important;
}
.md-bg-light-green-200 {
  background-color: #c5e1a5 !important;
}
.md-color-light-green-300 {
  color: #aed581 !important;
}
.md-bg-light-green-300 {
  background-color: #aed581 !important;
}
.md-color-light-green-400 {
  color: #9ccc65 !important;
}
.md-bg-light-green-400 {
  background-color: #9ccc65 !important;
}
.md-color-light-green-500 {
  color: #8bc34a !important;
}
.md-bg-light-green-500 {
  background-color: #8bc34a !important;
}
.md-color-light-green-600 {
  color: #7cb342 !important;
}
.md-bg-light-green-600 {
  background-color: #7cb342 !important;
}
.md-color-light-green-700 {
  color: #689f38 !important;
}
.md-bg-light-green-700 {
  background-color: #689f38 !important;
}
.md-color-light-green-800 {
  color: #558b2f !important;
}
.md-bg-light-green-800 {
  background-color: #558b2f !important;
}
.md-color-light-green-900 {
  color: #33691e !important;
}
.md-bg-light-green-900 {
  background-color: #33691e !important;
}
.md-color-light-green-A100 {
  color: #ccff90 !important;
}
.md-bg-light-green-A100 {
  background-color: #ccff90 !important;
}
.md-color-light-green-A200 {
  color: #b2ff59 !important;
}
.md-bg-light-green-A200 {
  background-color: #b2ff59 !important;
}
.md-color-light-green-A400 {
  color: #76ff03 !important;
}
.md-bg-light-green-A400 {
  background-color: #76ff03 !important;
}
.md-color-light-green-A700 {
  color: #64dd17 !important;
}
.md-bg-light-green-A700 {
  background-color: #64dd17 !important;
}
.md-color-lime-50 {
  color: #f9fbe7 !important;
}
.md-bg-lime-50 {
  background-color: #f9fbe7 !important;
}
.md-color-lime-100 {
  color: #f0f4c3 !important;
}
.md-bg-lime-100 {
  background-color: #f0f4c3 !important;
}
.md-color-lime-200 {
  color: #e6ee9c !important;
}
.md-bg-lime-200 {
  background-color: #e6ee9c !important;
}
.md-color-lime-300 {
  color: #dce775 !important;
}
.md-bg-lime-300 {
  background-color: #dce775 !important;
}
.md-color-lime-400 {
  color: #d4e157 !important;
}
.md-bg-lime-400 {
  background-color: #d4e157 !important;
}
.md-color-lime-500 {
  color: #cddc39 !important;
}
.md-bg-lime-500 {
  background-color: #cddc39 !important;
}
.md-color-lime-600 {
  color: #c0ca33 !important;
}
.md-bg-lime-600 {
  background-color: #c0ca33 !important;
}
.md-color-lime-700 {
  color: #afb42b !important;
}
.md-bg-lime-700 {
  background-color: #afb42b !important;
}
.md-color-lime-800 {
  color: #9e9d24 !important;
}
.md-bg-lime-800 {
  background-color: #9e9d24 !important;
}
.md-color-lime-900 {
  color: #827717 !important;
}
.md-bg-lime-900 {
  background-color: #827717 !important;
}
.md-color-lime-A100 {
  color: #f4ff81 !important;
}
.md-bg-lime-A100 {
  background-color: #f4ff81 !important;
}
.md-color-lime-A200 {
  color: #eeff41 !important;
}
.md-bg-lime-A200 {
  background-color: #eeff41 !important;
}
.md-color-lime-A400 {
  color: #c6ff00 !important;
}
.md-bg-lime-A400 {
  background-color: #c6ff00 !important;
}
.md-color-lime-A700 {
  color: #aeea00 !important;
}
.md-bg-lime-A700 {
  background-color: #aeea00 !important;
}
.md-color-yellow-50 {
  color: #fffde7 !important;
}
.md-bg-yellow-50 {
  background-color: #fffde7 !important;
}
.md-color-yellow-100 {
  color: #fff9c4 !important;
}
.md-bg-yellow-100 {
  background-color: #fff9c4 !important;
}
.md-color-yellow-200 {
  color: #fff59d !important;
}
.md-bg-yellow-200 {
  background-color: #fff59d !important;
}
.md-color-yellow-300 {
  color: #fff176 !important;
}
.md-bg-yellow-300 {
  background-color: #fff176 !important;
}
.md-color-yellow-400 {
  color: #ffee58 !important;
}
.md-bg-yellow-400 {
  background-color: #ffee58 !important;
}
.md-color-yellow-500 {
  color: #ffeb3b !important;
}
.md-bg-yellow-500 {
  background-color: #ffeb3b !important;
}
.md-color-yellow-600 {
  color: #fdd835 !important;
}
.md-bg-yellow-600 {
  background-color: #fdd835 !important;
}
.md-color-yellow-700 {
  color: #fbc02d !important;
}
.md-bg-yellow-700 {
  background-color: #fbc02d !important;
}
.md-color-yellow-800 {
  color: #f9a825 !important;
}
.md-bg-yellow-800 {
  background-color: #f9a825 !important;
}
.md-color-yellow-900 {
  color: #f57f17 !important;
}
.md-bg-yellow-900 {
  background-color: #f57f17 !important;
}
.md-color-yellow-A100 {
  color: #ffff8d !important;
}
.md-bg-yellow-A100 {
  background-color: #ffff8d !important;
}
.md-color-yellow-A200 {
  color: #ffff00 !important;
}
.md-bg-yellow-A200 {
  background-color: #ffff00 !important;
}
.md-color-yellow-A400 {
  color: #ffea00 !important;
}
.md-bg-yellow-A400 {
  background-color: #ffea00 !important;
}
.md-color-yellow-A700 {
  color: #ffd600 !important;
}
.md-bg-yellow-A700 {
  background-color: #ffd600 !important;
}
.md-color-amber-50 {
  color: #fff8e1 !important;
}
.md-bg-amber-50 {
  background-color: #fff8e1 !important;
}
.md-color-amber-100 {
  color: #ffecb3 !important;
}
.md-bg-amber-100 {
  background-color: #ffecb3 !important;
}
.md-color-amber-200 {
  color: #ffe082 !important;
}
.md-bg-amber-200 {
  background-color: #ffe082 !important;
}
.md-color-amber-300 {
  color: #ffd54f !important;
}
.md-bg-amber-300 {
  background-color: #ffd54f !important;
}
.md-color-amber-400 {
  color: #ffca28 !important;
}
.md-bg-amber-400 {
  background-color: #ffca28 !important;
}
.md-color-amber-500 {
  color: #ffc107 !important;
}
.md-bg-amber-500 {
  background-color: #ffc107 !important;
}
.md-color-amber-600 {
  color: #ffb300 !important;
}
.md-bg-amber-600 {
  background-color: #ffb300 !important;
}
.md-color-amber-700 {
  color: #ffa000 !important;
}
.md-bg-amber-700 {
  background-color: #ffa000 !important;
}
.md-color-amber-800 {
  color: #ff8f00 !important;
}
.md-bg-amber-800 {
  background-color: #ff8f00 !important;
}
.md-color-amber-900 {
  color: #ff6f00 !important;
}
.md-bg-amber-900 {
  background-color: #ff6f00 !important;
}
.md-color-amber-A100 {
  color: #ffe57f !important;
}
.md-bg-amber-A100 {
  background-color: #ffe57f !important;
}
.md-color-amber-A200 {
  color: #ffd740 !important;
}
.md-bg-amber-A200 {
  background-color: #ffd740 !important;
}
.md-color-amber-A400 {
  color: #ffc400 !important;
}
.md-bg-amber-A400 {
  background-color: #ffc400 !important;
}
.md-color-amber-A700 {
  color: #ffab00 !important;
}
.md-bg-amber-A700 {
  background-color: #ffab00 !important;
}
.md-color-orange-50 {
  color: #fff3e0 !important;
}
.md-bg-orange-50 {
  background-color: #fff3e0 !important;
}
.md-color-orange-100 {
  color: #ffe0b2 !important;
}
.md-bg-orange-100 {
  background-color: #ffe0b2 !important;
}
.md-color-orange-200 {
  color: #ffcc80 !important;
}
.md-bg-orange-200 {
  background-color: #ffcc80 !important;
}
.md-color-orange-300 {
  color: #ffb74d !important;
}
.md-bg-orange-300 {
  background-color: #ffb74d !important;
}
.md-color-orange-400 {
  color: #ffa726 !important;
}
.md-bg-orange-400 {
  background-color: #ffa726 !important;
}
.md-color-orange-500 {
  color: #ff9800 !important;
}
.md-bg-orange-500 {
  background-color: #ff9800 !important;
}
.md-color-orange-600 {
  color: #fb8c00 !important;
}
.md-bg-orange-600 {
  background-color: #fb8c00 !important;
}
.md-color-orange-700 {
  color: #f57c00 !important;
}
.md-bg-orange-700 {
  background-color: #f57c00 !important;
}
.md-color-orange-800 {
  color: #ef6c00 !important;
}
.md-bg-orange-800 {
  background-color: #ef6c00 !important;
}
.md-color-orange-900 {
  color: #e65100 !important;
}
.md-bg-orange-900 {
  background-color: #e65100 !important;
}
.md-color-orange-A100 {
  color: #ffd180 !important;
}
.md-bg-orange-A100 {
  background-color: #ffd180 !important;
}
.md-color-orange-A200 {
  color: #ffab40 !important;
}
.md-bg-orange-A200 {
  background-color: #ffab40 !important;
}
.md-color-orange-A400 {
  color: #ff9100 !important;
}
.md-bg-orange-A400 {
  background-color: #ff9100 !important;
}
.md-color-orange-A700 {
  color: #ff6d00 !important;
}
.md-bg-orange-A700 {
  background-color: #ff6d00 !important;
}
.md-color-deep-orange-50 {
  color: #fbe9e7 !important;
}
.md-bg-deep-orange-50 {
  background-color: #fbe9e7 !important;
}
.md-color-deep-orange-100 {
  color: #ffccbc !important;
}
.md-bg-deep-orange-100 {
  background-color: #ffccbc !important;
}
.md-color-deep-orange-200 {
  color: #ffab91 !important;
}
.md-bg-deep-orange-200 {
  background-color: #ffab91 !important;
}
.md-color-deep-orange-300 {
  color: #ff8a65 !important;
}
.md-bg-deep-orange-300 {
  background-color: #ff8a65 !important;
}
.md-color-deep-orange-400 {
  color: #ff7043 !important;
}
.md-bg-deep-orange-400 {
  background-color: #ff7043 !important;
}
.md-color-deep-orange-500 {
  color: #ff5722 !important;
}
.md-bg-deep-orange-500 {
  background-color: #ff5722 !important;
}
.md-color-deep-orange-600 {
  color: #f4511e !important;
}
.md-bg-deep-orange-600 {
  background-color: #f4511e !important;
}
.md-color-deep-orange-700 {
  color: #e64a19 !important;
}
.md-bg-deep-orange-700 {
  background-color: #e64a19 !important;
}
.md-color-deep-orange-800 {
  color: #d84315 !important;
}
.md-bg-deep-orange-800 {
  background-color: #d84315 !important;
}
.md-color-deep-orange-900 {
  color: #bf360c !important;
}
.md-bg-deep-orange-900 {
  background-color: #bf360c !important;
}
.md-color-deep-orange-A100 {
  color: #ff9e80 !important;
}
.md-bg-deep-orange-A100 {
  background-color: #ff9e80 !important;
}
.md-color-deep-orange-A200 {
  color: #ff6e40 !important;
}
.md-bg-deep-orange-A200 {
  background-color: #ff6e40 !important;
}
.md-color-deep-orange-A400 {
  color: #ff3d00 !important;
}
.md-bg-deep-orange-A400 {
  background-color: #ff3d00 !important;
}
.md-color-deep-orange-A700 {
  color: #dd2c00 !important;
}
.md-bg-deep-orange-A700 {
  background-color: #dd2c00 !important;
}
.md-color-brown-50 {
  color: #efebe9 !important;
}
.md-bg-brown-50 {
  background-color: #efebe9 !important;
}
.md-color-brown-100 {
  color: #d7ccc8 !important;
}
.md-bg-brown-100 {
  background-color: #d7ccc8 !important;
}
.md-color-brown-200 {
  color: #bcaaa4 !important;
}
.md-bg-brown-200 {
  background-color: #bcaaa4 !important;
}
.md-color-brown-300 {
  color: #a1887f !important;
}
.md-bg-brown-300 {
  background-color: #a1887f !important;
}
.md-color-brown-400 {
  color: #8d6e63 !important;
}
.md-bg-brown-400 {
  background-color: #8d6e63 !important;
}
.md-color-brown-500 {
  color: #795548 !important;
}
.md-bg-brown-500 {
  background-color: #795548 !important;
}
.md-color-brown-600 {
  color: #6d4c41 !important;
}
.md-bg-brown-600 {
  background-color: #6d4c41 !important;
}
.md-color-brown-700 {
  color: #5d4037 !important;
}
.md-bg-brown-700 {
  background-color: #5d4037 !important;
}
.md-color-brown-800 {
  color: #4e342e !important;
}
.md-bg-brown-800 {
  background-color: #4e342e !important;
}
.md-color-brown-900 {
  color: #3e2723 !important;
}
.md-bg-brown-900 {
  background-color: #3e2723 !important;
}
.md-color-grey-50 {
  color: #fafafa !important;
}
.md-bg-grey-50 {
  background-color: #fafafa !important;
}
.md-color-grey-100 {
  color: #f5f5f5 !important;
}
.md-bg-grey-100 {
  background-color: #f5f5f5 !important;
}
.md-color-grey-200 {
  color: #eeeeee !important;
}
.md-bg-grey-200 {
  background-color: #eeeeee !important;
}
.md-color-grey-300 {
  color: #e0e0e0 !important;
}
.md-bg-grey-300 {
  background-color: #e0e0e0 !important;
}
.md-color-grey-400 {
  color: #bdbdbd !important;
}
.md-bg-grey-400 {
  background-color: #bdbdbd !important;
}
.md-color-grey-500 {
  color: #9e9e9e !important;
}
.md-bg-grey-500 {
  background-color: #9e9e9e !important;
}
.md-color-grey-600 {
  color: #757575 !important;
}
.md-bg-grey-600 {
  background-color: #757575 !important;
}
.md-color-grey-700 {
  color: #616161 !important;
}
.md-bg-grey-700 {
  background-color: #616161 !important;
}
.md-color-grey-800 {
  color: #424242 !important;
}
.md-bg-grey-800 {
  background-color: #424242 !important;
}
.md-color-grey-900 {
  color: #212121 !important;
}
.md-bg-grey-900 {
  background-color: #212121 !important;
}
.md-color-blue-grey-50 {
  color: #eceff1 !important;
}
.md-bg-blue-grey-50 {
  background-color: #eceff1 !important;
}
.md-color-blue-grey-100 {
  color: #cfd8dc !important;
}
.md-bg-blue-grey-100 {
  background-color: #cfd8dc !important;
}
.md-color-blue-grey-200 {
  color: #b0bec5 !important;
}
.md-bg-blue-grey-200 {
  background-color: #b0bec5 !important;
}
.md-color-blue-grey-300 {
  color: #90a4ae !important;
}
.md-bg-blue-grey-300 {
  background-color: #90a4ae !important;
}
.md-color-blue-grey-400 {
  color: #78909c !important;
}
.md-bg-blue-grey-400 {
  background-color: #78909c !important;
}
.md-color-blue-grey-500 {
  color: #607d8b !important;
}
.md-bg-blue-grey-500 {
  background-color: #607d8b !important;
}
.md-color-blue-grey-600 {
  color: #546e7a !important;
}
.md-bg-blue-grey-600 {
  background-color: #546e7a !important;
}
.md-color-blue-grey-700 {
  color: #455a64 !important;
}
.md-bg-blue-grey-700 {
  background-color: #455a64 !important;
}
.md-color-blue-grey-800 {
  color: #37474f !important;
}
.md-bg-blue-grey-800 {
  background-color: #37474f !important;
}
.md-color-blue-grey-900 {
  color: #263238 !important;
}
.md-bg-blue-grey-900 {
  background-color: #263238 !important;
}
.md-color-white {
  color: #fff !important;
}
.md-bg-white {
  background: #fff !important;
}
/* cards */
.md-card {
  background: #fff;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none;
}
.md-card + .md-card,
.md-card + .uk-grid,
.uk-grid + .md-card {
  margin-top: 25px;
}
.md-card .full_width_in_card {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.085);
}
.md-card .md-card-toolbar {
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
.md-card .md-card-toolbar:before,
.md-card .md-card-toolbar:after {
  content: " ";
  display: table;
}
.md-card .md-card-toolbar:after {
  clear: both;
}
.md-card .md-card-toolbar:before,
.md-card .md-card-toolbar:after {
  content: " ";
  display: table;
}
.md-card .md-card-toolbar:after {
  clear: both;
}
.md-card .md-card-toolbar-heading-text {
  font: 500 14px / 50px "Roboto", sans-serif;
  color: #212121;
  margin: 0;
  float: left;
  overflow: hidden;
  height: 48px;
}
.md-card .md-card-toolbar-heading-text.large {
  font-size: 18px;
  font-weight: 400;
}
.md-card .md-card-toolbar .md-toggle-group {
  float: left;
  margin: 8px 0 0 16px;
}
.md-card .md-card-toolbar .md-toggle-group.md-toggle-group-small {
  margin-top: 10px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions {
  float: right;
  padding-top: 10px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .uk-open .md-card-toolbar-icon {
  background: rgba(0, 0, 0, 0.085);
  color: #212121;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .md-card-dropdown {
  display: inline-block;
  position: relative;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control {
  min-width: 220px;
  margin-top: -3px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-input {
  min-height: 30px;
  padding: 4px 8px;
}
.md-card .md-card-toolbar .md-card-toolbar-actions .selectize-control .selectize-dropdown {
  margin-top: -34px;
}
.md-card .md-card-toolbar .md-icon + .md-card-dropdown {
  margin-left: 4px;
}
.md-card .md-card-toolbar .md-card-fullscreen-deactivate {
  margin: 9px 8px 0 0;
}
.md-card .md-card-toolbar-input {
  border: none;
  font: 400 18px / 24px "Roboto", sans-serif;
  height: auto;
  background: none !important;
  padding: 12px 0;
  width: 50%;
  box-sizing: border-box;
}
.md-card .md-card-toolbar .uk-tab {
  margin-top: -2px;
  border-bottom: none;
}
.md-card .md-card-toolbar .uk-tab li > a {
  padding: 10px 8px !important;
}
.md-card .md-card-head {
  height: 160px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.md-card .md-card-head-menu {
  position: absolute;
  right: 8px;
  top: 8px;
}
.md-card .md-card-head-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin-top: 16px;
  border: 2px solid #fff;
  display: inline-block;
}
.md-card .md-card-head-text {
  padding: 8px 16px 16px;
  font: 500 16px / 22px "Roboto", sans-serif;
  color: #212121;
  margin: 0;
}
.md-card .md-card-head-text span:not(.listNavSelector) {
  display: block;
  font: 400 12px / 18px "Roboto", sans-serif;
  margin-top: -2px;
}
.md-card .md-card-head-text.text_dark {
  color: #212121 !important;
}
.md-card .md-card-head-text-over {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.md-card .md-card-head-subtext {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 0 16px;
  text-align: right;
  color: #fff;
}
.md-card .md-card-head-subtext span {
  font-size: 26px;
}
.md-card .md-card-head-icon {
  font-size: 48px;
  color: #fff;
  vertical-align: middle;
}
.md-card .md-card-head.head_background {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-bottom-color: transparent;
}
.md-card .md-card-head.head_background .md-card-head-text {
  color: #fff;
}
.md-card .md-card-head.head_background_top {
  background-repeat: no-repeat;
  background-position: center top;
}
.md-card .md-card-head.head_background_bottom {
  background-repeat: no-repeat;
  background-position: center bottom;
}
.md-card .md-card-head .head_chart {
  height: 100px;
  width: 100%;
  position: absolute !important;
  left: 0;
  top: 40px;
}
.md-card .md-card-head .fitVid_player {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.md-card .md-card-head-img {
  height: 100%;
  width: auto;
}
.md-card .md-card-head iframe {
  height: 160px;
}
.md-card .md-card-content {
  padding: 16px;
}
.md-card .md-card-content.padding-reset {
  padding: 0;
}
.md-card .md-card-content.large-padding {
  padding: 24px 35px;
}
.md-card .md-card-content.small-padding {
  padding: 8px;
}
.md-card.md-card-fullscreen-activate {
  cursor: pointer;
}
.md-card.md-card-fullscreen {
  position: fixed;
  z-index: 9998;
  overflow-x: hidden;
  cursor: default;
}
.md-card.md-card-fullscreen .md-card-fullscreen-activate {
  display: none;
}
.md-card.md-card-fullscreen .md-card-fullscreen-hide {
  display: none;
}
.md-card .md-card-fullscreen-content {
  display: none;
  padding: 16px;
}
.md-card-fullscreen-content-hidden .md-card .md-card-fullscreen-content {
  display: block;
  visibility: hidden;
  padding: 0;
}
.md-card.mdToolbar_fixed {
  overflow-y: hidden;
}
.md-card.mdToolbar_fixed > .md-card-toolbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.md-card.mdToolbar_fixed > .md-card-content {
  overflow-y: scroll;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 48px;
  bottom: 0;
}
.md-card.mdToolbar_fixed > .md-card-content .md-card-fullscreen-content {
  padding: 16px 0;
}
.md-card.md-card-overlay {
  overflow: hidden;
  padding-bottom: 54px;
}
.md-card.md-card-overlay .md-card-content {
  height: 142px;
  overflow: hidden;
  box-sizing: border-box;
}
.md-card.md-card-overlay .md-card-content.no_truncate {
  position: relative;
}
.md-card.md-card-overlay .md-card-content.no_truncate:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-image: linear-gradient(to top, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  display: block;
  content: '';
  z-index: 10;
}
.md-card.md-card-overlay .md-card-content > pre {
  margin-top: 0;
  max-height: 110px;
}
.md-card.md-card-overlay .md-card-content > pre > code {
  overflow: hidden;
}
.md-card.md-card-overlay .md-card-overlay-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 16px;
  margin-top: -54px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
  bottom: 0;
  background: #fff;
  z-index: 10;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.md-card.md-card-overlay .md-card-overlay-content p {
  margin: 0;
}
.md-card.md-card-overlay .md-card-overlay-content p + * {
  margin-top: 16px;
}
.md-card.md-card-overlay .md-card-overlay-content p + p {
  margin-top: 4px;
}
.md-card.md-card-overlay .md-card-overlay-header {
  padding: 12px 0;
}
.md-card.md-card-overlay .md-card-overlay-header:before,
.md-card.md-card-overlay .md-card-overlay-header:after {
  content: " ";
  display: table;
}
.md-card.md-card-overlay .md-card-overlay-header:after {
  clear: both;
}
.md-card.md-card-overlay .md-card-overlay-header:before,
.md-card.md-card-overlay .md-card-overlay-header:after {
  content: " ";
  display: table;
}
.md-card.md-card-overlay .md-card-overlay-header:after {
  clear: both;
}
.md-card.md-card-overlay .md-card-overlay-header h3,
.md-card.md-card-overlay .md-card-overlay-header h4 {
  margin: 0;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding-right: 32px;
  box-sizing: border-box;
}
.md-card.md-card-overlay .md-card-overlay-header h3 {
  font: 400 16px / 30px "Roboto", sans-serif;
}
.md-card.md-card-overlay .md-card-overlay-header h4 {
  font: 500 14px / 30px "Roboto", sans-serif;
}
.md-card.md-card-overlay .md-card-overlay-header .md-icon {
  position: absolute;
  right: 12px;
  top: 11px;
}
.md-card.md-card-overlay-active .md-card-overlay-content {
  top: -1px;
  margin-top: 0;
}
.md-card.md-card-hover {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
}
.md-card.md-card-hover:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.uk-sortable-dragged .md-card {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.uk-sortable-dragged .md-card canvas {
  margin: 0 auto;
  display: block;
}
.md-card .heading_list {
  padding: 0;
}
.md-card-primary,
.md-card-success,
.md-card-danger,
.md-card-warning {
  border-left: 4px solid transparent;
}
.md-card-primary {
  border-left-color: #2196f3;
}
.md-card-success {
  border-left-color: #7cb342;
}
.md-card-danger {
  border-left-color: #e53935;
}
.md-card-warning {
  border-left-color: #ffa000;
}
.md-card-horizontal {
  position: relative;
  min-height: 200px;
}
.md-card-horizontal:before,
.md-card-horizontal:after {
  content: " ";
  display: table;
}
.md-card-horizontal:after {
  clear: both;
}
.md-card-horizontal:before,
.md-card-horizontal:after {
  content: " ";
  display: table;
}
.md-card-horizontal:after {
  clear: both;
}
.md-card-horizontal-grid {
  min-height: auto;
}
.md-card-horizontal .md-card-head {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
  width: 200px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .md-card-horizontal .md-card-head {
    width: 140px;
  }
}
.md-card-horizontal .md-card-head-grid {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.md-card-horizontal .md-card-head-menu {
  right: auto;
  left: 8px;
}
.md-card-horizontal .md-card-content {
  margin-left: 200px;
}
@media only screen and (max-width: 767px) {
  .md-card-horizontal .md-card-content {
    margin-left: 140px;
  }
}
.md-card-horizontal .md-card-content-grid {
  padding: 16px;
}
.md-expand,
.md-expand-group > * {
  opacity: 0;
}
.md-card-placeholder {
  min-width: 100%;
}
.md-card-list-wrapper,
.md-card-list-wrapper:before,
.md-card-list-wrapper:after,
.md-card-list-wrapper *,
.md-card-list-wrapper *:before,
.md-card-list-wrapper *:after {
  box-sizing: border-box;
}
.md-card-list-wrapper .md-card-list-header {
  position: absolute;
  top: -24px;
  left: 0;
}
.md-card-list-wrapper .md-card-list {
  margin: 48px 0 0 0;
  position: relative;
}
.md-card-list-wrapper .md-card-list:first-child {
  margin-top: 24px;
}
.md-card-list-wrapper .md-card-list > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.md-card-list-wrapper .md-card-list > ul > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.md-card-list-wrapper .md-card-list > ul > li {
  min-height: 34px;
  padding: 8px 16px;
  font-size: 13px;
  transition: background 150ms,padding 200ms;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.md-card-list-wrapper .md-card-list > ul > li:before,
.md-card-list-wrapper .md-card-list > ul > li:after {
  content: " ";
  display: table;
}
.md-card-list-wrapper .md-card-list > ul > li:after {
  clear: both;
}
.md-card-list-wrapper .md-card-list > ul > li:before,
.md-card-list-wrapper .md-card-list > ul > li:after {
  content: " ";
  display: table;
}
.md-card-list-wrapper .md-card-list > ul > li:after {
  clear: both;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown {
  background: #fff;
  padding: 8px 36px;
}
@media only screen and (max-width: 767px) {
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject {
    clear: both;
    float: none;
    padding-top: 16px;
  }
  .md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-subject > span {
    white-space: normal;
  }
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown .md-card-list-item-sender {
  width: auto;
  overflow: hidden;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected {
  position: relative;
}
.md-card-list-wrapper .md-card-list > ul > li.item-shown.md-card-list-item-selected:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #e3f2fd;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-select,
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
  float: left;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-select {
  padding: 6px 8px 0 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper,
.md-card-list-wrapper .md-card-list .md-card-list-item-sender,
.md-card-list-wrapper .md-card-list .md-card-list-item-subject,
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
  padding: 0 8px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar {
  background: #757575;
  color: #fff;
  width: 34px;
  border-radius: 50%;
  display: block;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper .md-card-list-item-avatar-large {
  width: 82px;
  border-radius: 50%;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-avatar-wrapper span.md-card-list-item-avatar {
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-sender {
  width: 220px;
  line-height: 34px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-sender > span {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 1219px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-sender {
    display: none;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject {
  overflow: hidden;
  font-weight: 500;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject > span {
  line-height: 34px;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
  display: none;
}
@media only screen and (max-width: 1219px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small {
    display: block;
  }
  .md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small + span {
    line-height: inherit;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-subject .md-card-list-item-sender-small > span {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  color: #999;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-date {
  line-height: 34px;
  float: right;
  color: #999;
}
@media only screen and (max-width: 479px) {
  .md-card-list-wrapper .md-card-list .md-card-list-item-date {
    display: none;
  }
}
.md-card-list-wrapper .md-card-list .md-card-list-item-menu {
  float: right;
  margin: 0 0 0 8px;
  position: relative;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-menu .uk-dropdown .material-icons {
  margin-right: 8px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content-wrapper {
  display: none;
  clear: both;
  opacity: 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content {
  padding: 16px 16px 0 0;
  max-height: 360px;
  overflow-x: hidden;
  margin: 0 0 40px;
  top: 20px;
  position: relative;
  font-size: 14px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-content + .md-card-list-item-reply {
  padding-top: 10px;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-reply {
  padding: 16px 0;
}
.md-card-list-wrapper .md-card-list .md-card-list-item-selected {
  background: #e3f2fd;
}
/* forms */
select,
textarea,
input:not([type]),
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  outline: none;
}
select.md-input,
textarea.md-input,
input:not([type]).md-input,
input[type="text"].md-input,
input[type="password"].md-input,
input[type="datetime"].md-input,
input[type="datetime-local"].md-input,
input[type="date"].md-input,
input[type="month"].md-input,
input[type="time"].md-input,
input[type="week"].md-input,
input[type="number"].md-input,
input[type="email"].md-input,
input[type="url"].md-input,
input[type="search"].md-input,
input[type="tel"].md-input,
input[type="color"].md-input {
  border-radius: 0;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  font: 400 15px / 18px "Roboto", sans-serif;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
  box-sizing: border-box;
  padding: 12px 4px;
  background: transparent;
  width: 100%;
  display: block;
}
select.md-input.md-input-danger,
textarea.md-input.md-input-danger,
input:not([type]).md-input.md-input-danger,
input[type="text"].md-input.md-input-danger,
input[type="password"].md-input.md-input-danger,
input[type="datetime"].md-input.md-input-danger,
input[type="datetime-local"].md-input.md-input-danger,
input[type="date"].md-input.md-input-danger,
input[type="month"].md-input.md-input-danger,
input[type="time"].md-input.md-input-danger,
input[type="week"].md-input.md-input-danger,
input[type="number"].md-input.md-input-danger,
input[type="email"].md-input.md-input-danger,
input[type="url"].md-input.md-input-danger,
input[type="search"].md-input.md-input-danger,
input[type="tel"].md-input.md-input-danger,
input[type="color"].md-input.md-input-danger {
  border-color: #e53935;
}
select.md-input.md-input-danger:focus,
textarea.md-input.md-input-danger:focus,
input:not([type]).md-input.md-input-danger:focus,
input[type="text"].md-input.md-input-danger:focus,
input[type="password"].md-input.md-input-danger:focus,
input[type="datetime"].md-input.md-input-danger:focus,
input[type="datetime-local"].md-input.md-input-danger:focus,
input[type="date"].md-input.md-input-danger:focus,
input[type="month"].md-input.md-input-danger:focus,
input[type="time"].md-input.md-input-danger:focus,
input[type="week"].md-input.md-input-danger:focus,
input[type="number"].md-input.md-input-danger:focus,
input[type="email"].md-input.md-input-danger:focus,
input[type="url"].md-input.md-input-danger:focus,
input[type="search"].md-input.md-input-danger:focus,
input[type="tel"].md-input.md-input-danger:focus,
input[type="color"].md-input.md-input-danger:focus {
  border-bottom-color: #e53935;
}
select.md-input.md-input-success,
textarea.md-input.md-input-success,
input:not([type]).md-input.md-input-success,
input[type="text"].md-input.md-input-success,
input[type="password"].md-input.md-input-success,
input[type="datetime"].md-input.md-input-success,
input[type="datetime-local"].md-input.md-input-success,
input[type="date"].md-input.md-input-success,
input[type="month"].md-input.md-input-success,
input[type="time"].md-input.md-input-success,
input[type="week"].md-input.md-input-success,
input[type="number"].md-input.md-input-success,
input[type="email"].md-input.md-input-success,
input[type="url"].md-input.md-input-success,
input[type="search"].md-input.md-input-success,
input[type="tel"].md-input.md-input-success,
input[type="color"].md-input.md-input-success {
  border-color: #7cb342;
}
select.md-input.md-input-success:focus,
textarea.md-input.md-input-success:focus,
input:not([type]).md-input.md-input-success:focus,
input[type="text"].md-input.md-input-success:focus,
input[type="password"].md-input.md-input-success:focus,
input[type="datetime"].md-input.md-input-success:focus,
input[type="datetime-local"].md-input.md-input-success:focus,
input[type="date"].md-input.md-input-success:focus,
input[type="month"].md-input.md-input-success:focus,
input[type="time"].md-input.md-input-success:focus,
input[type="week"].md-input.md-input-success:focus,
input[type="number"].md-input.md-input-success:focus,
input[type="email"].md-input.md-input-success:focus,
input[type="url"].md-input.md-input-success:focus,
input[type="search"].md-input.md-input-success:focus,
input[type="tel"].md-input.md-input-success:focus,
input[type="color"].md-input.md-input-success:focus {
  border-bottom-color: #7cb342;
}
select.md-input:focus,
textarea.md-input:focus,
input:not([type]).md-input:focus,
input[type="text"].md-input:focus,
input[type="password"].md-input:focus,
input[type="datetime"].md-input:focus,
input[type="datetime-local"].md-input:focus,
input[type="date"].md-input:focus,
input[type="month"].md-input:focus,
input[type="time"].md-input:focus,
input[type="week"].md-input:focus,
input[type="number"].md-input:focus,
input[type="email"].md-input:focus,
input[type="url"].md-input:focus,
input[type="search"].md-input:focus,
input[type="tel"].md-input:focus,
input[type="color"].md-input:focus {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}
select.md-input-small,
textarea.md-input-small,
input:not([type]).md-input-small,
input[type="text"].md-input-small,
input[type="password"].md-input-small,
input[type="datetime"].md-input-small,
input[type="datetime-local"].md-input-small,
input[type="date"].md-input-small,
input[type="month"].md-input-small,
input[type="time"].md-input-small,
input[type="week"].md-input-small,
input[type="number"].md-input-small,
input[type="email"].md-input-small,
input[type="url"].md-input-small,
input[type="search"].md-input-small,
input[type="tel"].md-input-small,
input[type="color"].md-input-small {
  padding: 4px;
}
select.md-input.uk-form-width-mini,
textarea.md-input.uk-form-width-mini,
input:not([type]).md-input.uk-form-width-mini,
input[type="text"].md-input.uk-form-width-mini,
input[type="password"].md-input.uk-form-width-mini,
input[type="datetime"].md-input.uk-form-width-mini,
input[type="datetime-local"].md-input.uk-form-width-mini,
input[type="date"].md-input.uk-form-width-mini,
input[type="month"].md-input.uk-form-width-mini,
input[type="time"].md-input.uk-form-width-mini,
input[type="week"].md-input.uk-form-width-mini,
input[type="number"].md-input.uk-form-width-mini,
input[type="email"].md-input.uk-form-width-mini,
input[type="url"].md-input.uk-form-width-mini,
input[type="search"].md-input.uk-form-width-mini,
input[type="tel"].md-input.uk-form-width-mini,
input[type="color"].md-input.uk-form-width-mini {
  width: 40px;
}
select.md-input.uk-form-width-small,
textarea.md-input.uk-form-width-small,
input:not([type]).md-input.uk-form-width-small,
input[type="text"].md-input.uk-form-width-small,
input[type="password"].md-input.uk-form-width-small,
input[type="datetime"].md-input.uk-form-width-small,
input[type="datetime-local"].md-input.uk-form-width-small,
input[type="date"].md-input.uk-form-width-small,
input[type="month"].md-input.uk-form-width-small,
input[type="time"].md-input.uk-form-width-small,
input[type="week"].md-input.uk-form-width-small,
input[type="number"].md-input.uk-form-width-small,
input[type="email"].md-input.uk-form-width-small,
input[type="url"].md-input.uk-form-width-small,
input[type="search"].md-input.uk-form-width-small,
input[type="tel"].md-input.uk-form-width-small,
input[type="color"].md-input.uk-form-width-small {
  width: 130px;
}
select.md-input.uk-form-width-medium,
textarea.md-input.uk-form-width-medium,
input:not([type]).md-input.uk-form-width-medium,
input[type="text"].md-input.uk-form-width-medium,
input[type="password"].md-input.uk-form-width-medium,
input[type="datetime"].md-input.uk-form-width-medium,
input[type="datetime-local"].md-input.uk-form-width-medium,
input[type="date"].md-input.uk-form-width-medium,
input[type="month"].md-input.uk-form-width-medium,
input[type="time"].md-input.uk-form-width-medium,
input[type="week"].md-input.uk-form-width-medium,
input[type="number"].md-input.uk-form-width-medium,
input[type="email"].md-input.uk-form-width-medium,
input[type="url"].md-input.uk-form-width-medium,
input[type="search"].md-input.uk-form-width-medium,
input[type="tel"].md-input.uk-form-width-medium,
input[type="color"].md-input.uk-form-width-medium {
  width: 200px;
}
select.md-input.uk-form-width-large,
textarea.md-input.uk-form-width-large,
input:not([type]).md-input.uk-form-width-large,
input[type="text"].md-input.uk-form-width-large,
input[type="password"].md-input.uk-form-width-large,
input[type="datetime"].md-input.uk-form-width-large,
input[type="datetime-local"].md-input.uk-form-width-large,
input[type="date"].md-input.uk-form-width-large,
input[type="month"].md-input.uk-form-width-large,
input[type="time"].md-input.uk-form-width-large,
input[type="week"].md-input.uk-form-width-large,
input[type="number"].md-input.uk-form-width-large,
input[type="email"].md-input.uk-form-width-large,
input[type="url"].md-input.uk-form-width-large,
input[type="search"].md-input.uk-form-width-large,
input[type="tel"].md-input.uk-form-width-large,
input[type="color"].md-input.uk-form-width-large {
  width: 500px;
}
select.md-input.inverted-colors,
textarea.md-input.inverted-colors,
input:not([type]).md-input.inverted-colors,
input[type="text"].md-input.inverted-colors,
input[type="password"].md-input.inverted-colors,
input[type="datetime"].md-input.inverted-colors,
input[type="datetime-local"].md-input.inverted-colors,
input[type="date"].md-input.inverted-colors,
input[type="month"].md-input.inverted-colors,
input[type="time"].md-input.inverted-colors,
input[type="week"].md-input.inverted-colors,
input[type="number"].md-input.inverted-colors,
input[type="email"].md-input.inverted-colors,
input[type="url"].md-input.inverted-colors,
input[type="search"].md-input.inverted-colors,
input[type="tel"].md-input.inverted-colors,
input[type="color"].md-input.inverted-colors {
  color: #fff;
  border-bottom-color: #fff;
}
select.md-input.inverted-colors::-webkit-input-placeholder,
textarea.md-input.inverted-colors::-webkit-input-placeholder,
input:not([type]).md-input.inverted-colors::-webkit-input-placeholder,
input[type="text"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="password"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="datetime"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="datetime-local"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="date"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="month"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="time"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="week"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="number"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="email"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="url"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="search"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="tel"].md-input.inverted-colors::-webkit-input-placeholder,
input[type="color"].md-input.inverted-colors::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
select.md-input.inverted-colors::-moz-placeholder,
textarea.md-input.inverted-colors::-moz-placeholder,
input:not([type]).md-input.inverted-colors::-moz-placeholder,
input[type="text"].md-input.inverted-colors::-moz-placeholder,
input[type="password"].md-input.inverted-colors::-moz-placeholder,
input[type="datetime"].md-input.inverted-colors::-moz-placeholder,
input[type="datetime-local"].md-input.inverted-colors::-moz-placeholder,
input[type="date"].md-input.inverted-colors::-moz-placeholder,
input[type="month"].md-input.inverted-colors::-moz-placeholder,
input[type="time"].md-input.inverted-colors::-moz-placeholder,
input[type="week"].md-input.inverted-colors::-moz-placeholder,
input[type="number"].md-input.inverted-colors::-moz-placeholder,
input[type="email"].md-input.inverted-colors::-moz-placeholder,
input[type="url"].md-input.inverted-colors::-moz-placeholder,
input[type="search"].md-input.inverted-colors::-moz-placeholder,
input[type="tel"].md-input.inverted-colors::-moz-placeholder,
input[type="color"].md-input.inverted-colors::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
select.md-input.inverted-colors:-ms-input-placeholder,
textarea.md-input.inverted-colors:-ms-input-placeholder,
input:not([type]).md-input.inverted-colors:-ms-input-placeholder,
input[type="text"].md-input.inverted-colors:-ms-input-placeholder,
input[type="password"].md-input.inverted-colors:-ms-input-placeholder,
input[type="datetime"].md-input.inverted-colors:-ms-input-placeholder,
input[type="datetime-local"].md-input.inverted-colors:-ms-input-placeholder,
input[type="date"].md-input.inverted-colors:-ms-input-placeholder,
input[type="month"].md-input.inverted-colors:-ms-input-placeholder,
input[type="time"].md-input.inverted-colors:-ms-input-placeholder,
input[type="week"].md-input.inverted-colors:-ms-input-placeholder,
input[type="number"].md-input.inverted-colors:-ms-input-placeholder,
input[type="email"].md-input.inverted-colors:-ms-input-placeholder,
input[type="url"].md-input.inverted-colors:-ms-input-placeholder,
input[type="search"].md-input.inverted-colors:-ms-input-placeholder,
input[type="tel"].md-input.inverted-colors:-ms-input-placeholder,
input[type="color"].md-input.inverted-colors:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
select.md-input.inverted-colors:-moz-placeholder,
textarea.md-input.inverted-colors:-moz-placeholder,
input:not([type]).md-input.inverted-colors:-moz-placeholder,
input[type="text"].md-input.inverted-colors:-moz-placeholder,
input[type="password"].md-input.inverted-colors:-moz-placeholder,
input[type="datetime"].md-input.inverted-colors:-moz-placeholder,
input[type="datetime-local"].md-input.inverted-colors:-moz-placeholder,
input[type="date"].md-input.inverted-colors:-moz-placeholder,
input[type="month"].md-input.inverted-colors:-moz-placeholder,
input[type="time"].md-input.inverted-colors:-moz-placeholder,
input[type="week"].md-input.inverted-colors:-moz-placeholder,
input[type="number"].md-input.inverted-colors:-moz-placeholder,
input[type="email"].md-input.inverted-colors:-moz-placeholder,
input[type="url"].md-input.inverted-colors:-moz-placeholder,
input[type="search"].md-input.inverted-colors:-moz-placeholder,
input[type="tel"].md-input.inverted-colors:-moz-placeholder,
input[type="color"].md-input.inverted-colors:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
select.md-input.uk-form-width-mini {
  width: 65px;
}
.md-input-width-small {
  min-width: 80px !important;
}
.md-input-width-medium {
  min-width: 160px !important;
}
.md-input-width-large {
  min-width: 320px !important;
}
textarea.md-input {
  min-height: 80px;
  resize: none;
  overflow: hidden;
  transition: height 200ms ease-out;
  line-height: 24px;
}
textarea.no_autosize {
  min-height: inherit;
  overflow: auto;
  transition: none;
  resize: both;
}
.md-input-wrapper {
  position: relative;
  padding-top: 4px;
  width: 100%;
  display: block;
}
.md-input-wrapper .md-input-bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.md-input-wrapper .md-input-bar:before,
.md-input-wrapper .md-input-bar:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #1976d2;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.md-input-wrapper .md-input-bar:before {
  left: 50%;
}
.md-input-wrapper .md-input-bar:after {
  right: 50%;
}
.md-input-wrapper .md-input-bar.uk-form-width-mini {
  width: 40px;
}
.md-input-wrapper .md-input-bar.uk-form-width-small {
  width: 130px;
}
.md-input-wrapper .md-input-bar.uk-form-width-medium {
  width: 200px;
}
.md-input-wrapper .md-input-bar.uk-form-width-large {
  width: 500px;
}
.md-input-wrapper > label {
  color: #727272;
  position: absolute;
  top: 16px;
  left: 4px;
  right: 0;
  pointer-events: none;
  transition: all 150ms ease-out;
}
.md-input-wrapper + * {
  margin-top: 10px;
}
.md-input-wrapper.md-input-wrapper-disabled > label {
  color: rgba(0, 0, 0, 0.26);
}
.md-input-wrapper-count {
  padding-bottom: 24px;
}
.md-input-wrapper-count .md-input-bar {
  bottom: 24px;
}
.md-input-wrapper-count .text-count-wrapper {
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.md-input-wrapper-count > .md-input-wrapper-count .text-count-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}
.md-input-filled > label,
.md-input-focus > label {
  top: -6px;
  font-size: 12px;
}
.md-input-filled.md-input-wrapper-count .text-count-wrapper,
.md-input-focus.md-input-wrapper-count .text-count-wrapper {
  opacity: 1;
}
.md-input-focus .md-input-bar:before,
.md-input-focus .md-input-bar:after {
  width: 50%;
}
.md-input-wrapper-danger .md-input-bar:before,
.md-input-wrapper-danger .md-input-bar:after {
  background: #e53935;
}
.md-input-wrapper-danger.md-input-wrapper-count .text-count-wrapper {
  color: #e53935;
}
.md-input-wrapper-success .md-input-bar:before,
.md-input-wrapper-success .md-input-bar:after {
  background: #7cb342;
}
.md-input-wrapper-success.md-input-wrapper-count .text-count-wrapper {
  color: #7cb342;
}
.md-form-group {
  position: relative;
}
label.md-label {
  color: #999;
  padding: 0 6px;
  font-size: 11px;
}
.add-clear-span {
  display: block;
}
.add-clear-span input {
  padding-right: 24px !important;
}
.add-clear-span a {
  top: 12px !important;
  right: 4px !important;
}
.add-clear-span a .material-icons {
  font-size: 20px;
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url("../icons/material-design-icons/MaterialIcons-Regular.eot");
  /* For IE6-8 */
  src: local('Material Icons'), local('MaterialIcons-Regular'), url("../icons/material-design-icons/MaterialIcons-Regular.woff2") format('woff2'), url("../icons/material-design-icons/MaterialIcons-Regular.woff") format('woff'), url("../icons/material-design-icons/MaterialIcons-Regular.ttf") format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  /* Preferred icon size */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  vertical-align: -4px;
  color: rgba(0, 0, 0, 0.54);
}
.material-icons.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}
.material-icons.md-18 {
  font-size: 18px !important;
  vertical-align: -4px;
}
.material-icons.md-24 {
  font-size: 24px !important;
  vertical-align: -8px;
}
.material-icons.md-36 {
  font-size: 36px !important;
  vertical-align: -16px;
}
.material-icons.md-48 {
  font-size: 48px !important;
  vertical-align: -24px;
}
.material-icons.md-light {
  color: #ffffff;
}
.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}
/* list */
.md-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.md-list > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.md-list,
.md-list:before,
.md-list:after,
.md-list *,
.md-list *:before,
.md-list *:after {
  box-sizing: border-box;
}
.md-list .uk-nestable-list > li,
.md-list > li {
  min-height: 48px;
  padding: 8px 4px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
}
.md-list .uk-nestable-list > li > .md-list-content,
.md-list > li > .md-list-content {
  overflow: hidden;
}
.md-list .uk-nestable-list > li > .md-list-content > span,
.md-list > li > .md-list-content > span {
  display: block;
}
.md-list .uk-nestable-list > li > .md-list-content .md-list-heading,
.md-list > li > .md-list-content .md-list-heading {
  margin: 0;
  font-weight: 500;
  display: block;
  overflow: hidden;
  padding-bottom: 1px;
}
.md-list .uk-nestable-list > li > .md-list-content .md-list-menu,
.md-list > li > .md-list-content .md-list-menu {
  float: right;
}
.md-list .uk-nestable-list > li > .md-list-content .md-list-menu .md-list-menu-toggle,
.md-list > li > .md-list-content .md-list-menu .md-list-menu-toggle {
  display: block;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  text-align: center;
}
.md-list .uk-nestable-list > li > .md-list-content .uk-badge,
.md-list > li > .md-list-content .uk-badge {
  float: right;
  color: #fff !important;
}
.md-list .uk-nestable-list > li > .md-list-content .md-list-action,
.md-list > li > .md-list-content .md-list-action {
  float: right;
  margin-left: 8px;
  margin-top: 2px;
  display: none;
}
.md-list .uk-nestable-list > li > .md-list-content .md-list-action-placeholder,
.md-list > li > .md-list-content .md-list-action-placeholder {
  float: right;
  margin-left: 8px;
  display: none;
  width: 32px;
  height: 32px;
}
.md-list .uk-nestable-list > li .md-list-action-dropdown,
.md-list > li .md-list-action-dropdown {
  position: absolute;
  right: 16px;
  top: 10px;
  display: none;
}
.md-list .uk-nestable-list > li > a.md-list-content,
.md-list > li > a.md-list-content {
  display: block;
  color: #212121;
}
.md-list .uk-nestable-list > li:last-child,
.md-list > li:last-child {
  border-bottom: none;
}
.md-list .uk-nestable-list > li.md-list-item-active,
.md-list > li.md-list-item-active {
  color: #7cb342;
  background: #ededed;
}
.md-list .uk-nestable-list > li.md-list-item-disabled > .md-list-content,
.md-list > li.md-list-item-disabled > .md-list-content {
  color: #bdbdbd;
}
.md-list .uk-nestable-list > li.md-list-item-disabled > .md-list-content span,
.md-list > li.md-list-item-disabled > .md-list-content span {
  color: #bdbdbd !important;
}
.md-list .uk-nestable-list > li.heading_list,
.md-list > li.heading_list {
  min-height: 32px;
  padding: 32px 8px 16px;
  border-bottom: none;
  background: transparent !important;
  text-transform: uppercase;
}
.uk-touch .md-list .uk-nestable-list > li > .md-list-addon-element .uk-nestable-handle,
.uk-touch .md-list > li > .md-list-addon-element .uk-nestable-handle,
.md-list .uk-nestable-list > li:hover > .md-list-addon-element .uk-nestable-handle,
.md-list > li:hover > .md-list-addon-element .uk-nestable-handle {
  display: block;
}
.uk-touch .md-list .uk-nestable-list > li > .md-list-content .md-list-action,
.uk-touch .md-list > li > .md-list-content .md-list-action,
.md-list .uk-nestable-list > li:hover > .md-list-content .md-list-action,
.md-list > li:hover > .md-list-content .md-list-action,
.uk-touch .md-list .uk-nestable-list > li > .md-list-content .md-list-action-placeholder,
.uk-touch .md-list > li > .md-list-content .md-list-action-placeholder,
.md-list .uk-nestable-list > li:hover > .md-list-content .md-list-action-placeholder,
.md-list > li:hover > .md-list-content .md-list-action-placeholder {
  display: block;
}
.uk-touch .md-list .uk-nestable-list > li .md-list-action-dropdown,
.uk-touch .md-list > li .md-list-action-dropdown,
.md-list .uk-nestable-list > li:hover .md-list-action-dropdown,
.md-list > li:hover .md-list-action-dropdown {
  display: block;
}
.md-list .uk-nestable-list > li {
  margin-left: 64px;
}
.md-list-addon > li {
  margin-left: 64px;
  position: relative;
}
.md-list-addon > li:last-child .md-list-addon-element {
  border-bottom: none;
  bottom: 0;
}
.md-list-addon > li:first-child .md-list-addon-element {
  top: 0;
}
.md-list-addon > li.md-list-item-active .md-list-addon-element,
.md-list-addon > li.md-list-item-active .md-list-addon-element .material-icons {
  color: #7cb342;
}
.md-list-addon-element {
  position: absolute;
  left: -64px;
  top: -1px;
  bottom: -1px;
  width: 64px;
  text-align: center;
  padding: 8px 0;
  display: block;
}
.md-list-addon-element .element-status {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdbdbd;
  border: 1px solid #fff;
}
.md-list-addon-element .element-status-danger {
  background: #e53935;
}
.md-list-addon-element .element-status-success {
  background: #7cb342;
}
.md-list-addon-element .element-status-warning {
  background: #ffa000;
}
.md-list-addon-element > .md-list-addon-avatar {
  margin-top: 2px;
}
.md-list-addon-element > .md-list-addon-icon {
  font-size: 28px;
  margin-top: 4px;
  color: #727272;
}
.md-list-addon-element > .material-icons {
  margin-top: 6px;
}
.md-list-addon-element .iradio_md,
.md-list-addon-element .icheckbox_md {
  margin-top: 10px;
}
.md-list-addon-element .uk-nestable-handle {
  position: absolute;
  left: -2px;
  top: 12px;
  display: none;
}
.md-list-interactive li {
  cursor: pointer;
}
.md-list-bg {
  background: #fff;
}
.md-list-separated li {
  background: #fff;
  padding: 8px;
}
.md-list-separated li + li {
  border-top: none;
  margin-top: 8px;
}
.md-list-bg-no-sep {
  background: #fff;
  padding: 8px;
}
.md-list-bg-no-sep li > .md-list-content {
  padding: 0 4px;
}
.md-list-outside > li {
  padding: 0;
}
.md-list-outside > li > .md-list-content {
  padding: 8px 16px;
  display: block;
  color: #212121;
}
.md-list-outside > li.md-list-item-active,
.md-list-outside > li:hover:not(.heading_list) {
  background: rgba(0, 0, 0, 0.085);
}
.md-list-outside > li.heading_list {
  padding: 32px 16px 16px;
}
.md-list-outside.md-list-addon li {
  margin-left: 0;
}
.md-list-outside.md-list-addon li .md-list-addon-element {
  position: relative;
  top: auto;
  left: auto;
  float: left;
}
.md-list-outside.md-list-addon li .md-list-content {
  padding-left: 0;
}
.md-list-outside-wrapper {
  position: relative;
}
.md-list-outside-wrapper .md-list-outside-search {
  position: absolute;
  top: -46px;
  left: 16px;
  right: 16px;
  z-index: 1000;
}
.md-list-outside-wrapper .md-list-outside-search .md-input-wrapper {
  padding: 0;
}
.md-list-outside-wrapper .md-list-outside-search .md-input-wrapper .md-input-bar:before,
.md-list-outside-wrapper .md-list-outside-search .md-input-wrapper .md-input-bar:after {
  background: #fff;
}
.md-list-outside-wrapper .md-list-outside-search .md-input {
  border-bottom-color: transparent !important;
}
.md-list .uk-nestable-list {
  padding-left: 0;
}
.md-list .uk-nestable-list .uk-nestable-item {
  padding-right: 0;
}
.md-list .uk-nestable-item + .uk-nestable-item {
  margin-top: 0;
}
.md-list-right.md-list-addon > li {
  margin-left: 0;
  margin-right: 64px;
}
.md-list-right.md-list-addon > li .md-list-addon-element {
  left: auto;
  right: -64px;
}
.uk-touch .md-list-addon-element .uk-nestable-handle {
  display: block !important;
}
.uk-touch .md-list-content .md-list-action,
.uk-touch .md-list-content .md-list-action-placeholder {
  display: block !important;
}
.uk-touch .md-list-action-dropdown {
  display: block !important;
}
/* panels */
.md-panel-full {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.md-panel-full,
.md-panel-full:before,
.md-panel-full:after,
.md-panel-full *,
.md-panel-full *:before,
.md-panel-full *:after {
  box-sizing: border-box;
}
.md-panel-full > .uk-grid {
  height: 100%;
}
.md-panel-full > .uk-grid [class*=uk-width] {
  height: 100%;
}
.md-panel-full .md-panel-full-aside {
  margin: 16px 16px 32px;
  padding: 16px;
}
.md-panel-full .md-panel-full-aside.md-panel-full-aside-bg {
  background: #fff;
}
.md-panel-full .md-panel-full-content {
  background: #fff;
  padding: 25px 25px 90px;
  width: inherit;
  min-width: 100%;
  min-height: 100%;
}
.md-panel-full .md-panel-full-content > .md-panel-full-content-inner {
  position: relative;
  z-index: 10;
}
.md-panel-full .md-panel-full-content:before {
  width: inherit;
  content: '';
  position: absolute;
  background: #fff;
  display: block;
  right: 0;
  top: 0;
  bottom: 0;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
  z-index: 5;
}
.md-panel-full .md-panel-full-content .md-panel-full-content-header {
  margin-bottom: 24px;
}
.md-panel-full .md-panel-full-content .md-panel-full-content-header .md-panel-full-content-menu {
  float: right;
}
/* top bar */
.md-top-bar .md-top-bar-checkbox {
  padding-top: 10px;
}
.md-top-bar .md-top-bar-icons {
  margin-top: 5px;
}
.md-top-bar .md-top-bar-icons,
.md-top-bar .md-top-bar-checkbox {
  display: inline-block;
}
.md-top-bar .md-btn-group {
  margin-top: 4px;
}
.md-top-bar .md-top-bar-actions-left {
  float: left;
  padding-left: 16px;
}
.md-top-bar .md-top-bar-actions-left .md-btn-group {
  margin-left: 8px;
}
.md-top-bar .md-top-bar-actions-right {
  float: right;
  padding-right: 16px;
}
.md-top-bar .md-top-bar-actions-right .md-btn-group {
  margin-right: 8px;
}
.md-top-bar .md-btn-small {
  padding: 2px 12px;
}
/*** utils ***/
/* avatar */
.md-user-image {
  width: 34px;
  border-radius: 50%;
}
.md-user-image-large {
  width: 82px;
  border-radius: 50%;
}
.md-user-placeholder {
  background-color: rgba(0, 0, 0, 0.085);
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.md-user-letters {
  display: inline-block;
  line-height: 35px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.085);
}
/* icons */
.md-icon {
  font-size: 24px;
  line-height: 32px !important;
  height: 32px !important;
  color: #727272;
  border-radius: 50%;
  cursor: pointer;
  transition: background 280ms ease-out, color 280ms ease-out;
  width: 32px !important;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.md-icon:hover,
.md-icon:focus,
.md-icon:active,
.md-icon.active {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
.md-icon-light {
  color: #fff;
}
.md-icon-light:hover,
.md-icon-light:focus,
.md-icon-light:active {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.md-icon-dark {
  color: #212121;
}
.md-icon-dark:hover,
.md-icon-dark:focus,
.md-icon-dark:active {
  color: #212121;
  background: rgba(255, 255, 255, 0.6);
}
.md-icon + .md-icon {
  margin-left: 4px;
}
.md-icon-btn {
  display: inline-block;
}
.md-icon-btn.active .md-icon {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
button.md-icon {
  background: none;
  border: none;
  outline: none;
}
.uk-open > .md-icon {
  color: #212121;
  background: rgba(0, 0, 0, 0.08);
}
.uk-open > .md-icon-light {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.uk-open > .md-icon-dark {
  color: #212121;
  background: rgba(255, 255, 255, 0.6);
}
/* dropdown list */
.md-list-inputs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.md-list-inputs > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.md-list-inputs li + li {
  margin-top: 8px;
}
.md-list-inputs li .icheckbox_md {
  float: left;
}
.md-list-inputs li label {
  overflow: hidden;
  padding-left: 8px;
  display: block;
  cursor: pointer;
}
/* hr */
.md-hr {
  margin: 32px 0;
  height: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.12);
}
/* animated show */
@-webkit-keyframes hierarchical_show {
  0% {
    opacity: 0;
    transform: scale3d(0.2, 0.2, 2);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes hierarchical_show {
  0% {
    opacity: 0;
    transform: scale3d(0.2, 0.2, 2);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.hierarchical_show {
  will-change: transform, opacity;
}
.hierarchical_show > * {
  visibility: hidden;
}
.hierarchical_show_inView > * {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
  -webkit-animation-name: hierarchical_show;
          animation-name: hierarchical_show;
  visibility: visible;
}
@-webkit-keyframes hierarchical_slide {
  0% {
    opacity: 0;
    transform: translate3d(0, 160%, 0);
  }
  33% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes hierarchical_slide {
  0% {
    opacity: 0;
    transform: translate3d(0, 160%, 0);
  }
  33% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.hierarchical_slide {
  will-change: transform, opacity;
}
.hierarchical_slide > * {
  visibility: hidden;
}
.hierarchical_slide_inView > * {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 560ms;
          animation-duration: 560ms;
  -webkit-animation-name: hierarchical_slide;
          animation-name: hierarchical_slide;
  visibility: visible;
}
.fast_animation {
  -webkit-animation-duration: 280ms;
          animation-duration: 280ms;
}
/* 6. plugins ======================================== */
/* altair plugins */
/* colorpicker */
.cp_altair {
  padding: 8px 0;
  overflow: hidden;
}
.cp_altair span {
  width: 24px;
  height: 24px;
  margin: 0 8px 8px 0;
  float: left;
  transition: all 280ms ease-out;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.cp_altair span.active_color {
  border-radius: 50%;
  cursor: default;
}
/* metrics graphics */
.mGraph {
  min-height: 240px;
  width: 100%;
}
.mGraph-wrapper {
  position: relative;
}
.mGraph-wrapper .md-toggle-group {
  position: absolute;
  top: 4px;
  left: 12px;
}
.mGraph .mg-active-datapoint {
  font-size: 13px;
}
.mGraph .mg-area1-color {
  fill: #1976d2;
}
.mGraph .mg-area2-color {
  fill: #689f38;
}
.mGraph .mg-area3-color {
  fill: #d32f2f;
}
.mGraph .mg-area4-color {
  fill: #ffa000;
}
.mGraph .mg-area5-color {
  fill: #455a64;
}
.mGraph .mg-baselines line {
  stroke: #909090;
  stroke-width: 0.5;
}
.mGraph .mg-baselines text {
  font-size: 9px;
  opacity: 0.5;
}
.mGraph .mg-chart-title {
  font-size: 22px;
}
.mGraph .mg-chart-title .fa {
  font-size: 16px;
}
.mGraph .mg-line1-color {
  stroke: #1976d2;
}
.mGraph .mg-hover-line1-color {
  fill: #1976d2;
}
.mGraph .mg-line2-color {
  stroke: #689f38;
}
.mGraph .mg-hover-line2-color {
  fill: #689f38;
}
.mGraph .mg-line3-color {
  stroke: #d32f2f;
}
.mGraph .mg-hover-line3-color {
  fill: #d32f2f;
}
.mGraph .mg-line4-color {
  stroke: #ffa000;
}
.mGraph .mg-hover-line4-color {
  fill: #ffa000;
}
.mGraph .mg-line5-color {
  stroke: #455a64;
}
.mGraph .mg-hover-line5-color {
  fill: #455a64;
}
.mGraph .mg-line1-legend-color {
  color: #1976d2;
}
.mGraph .mg-line2-legend-color {
  color: #689f38;
}
.mGraph .mg-line3-legend-color {
  color: #d32f2f;
}
.mGraph .mg-line4-legend-color {
  color: #ffa000;
}
.mGraph .mg-line5-legend-color {
  color: #455a64;
}
.mGraph .mg-markers line {
  stroke-width: 0.8;
}
.mGraph .mg-markers text {
  font-size: 9px;
}
.mGraph path.mg-main-line {
  stroke-width: 1.1;
}
.mGraph .mg-x-axis line,
.mGraph .mg-y-axis line {
  stroke: #ccc;
  stroke-width: 0.8;
}
.mGraph .mg-x-axis text,
.mGraph .mg-y-axis text,
.mGraph .mg-histogram .axis text {
  font-size: 11px;
}
.mGraph .mg-x-axis .label,
.mGraph .mg-y-axis .label,
.mGraph .mg-axis .label {
  font-size: 10px;
}
.mGraph .mg-x-axis-small text,
.mGraph .mg-y-axis-small text,
.mGraph .mg-active-datapoint-small {
  font-size: 8px;
}
.mGraph .mg-x-axis-small .label,
.mGraph .mg-y-axis-small .label {
  font-size: 9px;
}
.mGraph .mg-year-marker text {
  font-size: 9px;
}
.mGraph .mg-year-marker line {
  stroke: #ccc;
  stroke-width: 0.8;
}
.mGraph .mg-year-marker-small text {
  font-size: 8px;
}
.mGraph .mg-chart-title {
  font-size: 18px;
  margin: 0;
  padding: 0;
}
.mGraph .popover {
  z-index: 1060;
  position: absolute !important;
  background: #616161;
  color: #fff;
  font-size: 13px;
  padding: 8px 16px;
  line-height: 16px;
  max-width: 290px;
  margin-top: -10px;
}
/* c3 charts */
.c3chart {
  min-height: 240px;
  width: 100%;
}
.c3chart .c3-tooltip {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  box-shadow: none;
  opacity: 1;
  background: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.c3chart .c3-tooltip th {
  border: none;
  background: #fff;
  color: #212121;
}
.c3chart .c3-tooltip td {
  border: none;
  color: #212121;
  font-weight: 400;
  font-size: 12px;
}
.c3chart .c3-tooltip td + td {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.c3chart .c3-tooltip tr {
  border: none;
}
.c3chart .c3-tooltip tr + tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.c3-area {
  opacity: 0.25;
}
/* clndr */
.clndr {
  position: relative;
  overflow: hidden;
}
.clndr,
.clndr:before,
.clndr:after,
.clndr *,
.clndr *:before,
.clndr *:after {
  box-sizing: border-box;
}
.clndr .clndr_days_names:before,
.clndr .clndr_days_grid:before,
.clndr .clndr_days_names:after,
.clndr .clndr_days_grid:after {
  content: " ";
  display: table;
}
.clndr .clndr_days_names:after,
.clndr .clndr_days_grid:after {
  clear: both;
}
.clndr .clndr_days_names:before,
.clndr .clndr_days_grid:before,
.clndr .clndr_days_names:after,
.clndr .clndr_days_grid:after {
  content: " ";
  display: table;
}
.clndr .clndr_days_names:after,
.clndr .clndr_days_grid:after {
  clear: both;
}
.clndr .md-card-toolbar-heading-text {
  text-transform: capitalize;
}
.clndr .clndr_days {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
  transform: translateY(0);
  opacity: 1;
}
.clndr .clndr_days .clndr_days_names .day-header {
  width: 14.28571429%;
  float: left;
  text-align: center;
  padding: 8px 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.clndr .clndr_days .clndr_days_grid .day {
  width: 14.28571429%;
  float: left;
  padding: 6px;
  text-align: center;
  position: relative;
}
.clndr .clndr_days .clndr_days_grid .day.next-month,
.clndr .clndr_days .clndr_days_grid .day.last-month {
  color: #bbb;
}
.clndr .clndr_days .clndr_days_grid .day > span {
  display: inline-block;
  font-size: 15px;
  line-height: 36px;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: 1px solid transparent;
}
@media only screen and (max-width: 479px) {
  .clndr .clndr_days .clndr_days_grid .day > span {
    font-size: 14px;
    line-height: 31px;
    height: 32px;
    width: 32px;
    border-radius: 16px;
  }
}
.clndr .clndr_days .clndr_days_grid .day.today > span {
  background: #7cb342;
  color: #fff;
}
.clndr .clndr_days .clndr_days_grid .day.event {
  cursor: pointer;
}
.clndr .clndr_days .clndr_days_grid .day.event > span {
  border-color: rgba(0, 0, 0, 0.12);
}
.clndr .clndr_days .clndr_days_grid .day.event.today > span {
  border-color: transparent;
}
.clndr .clndr_events {
  position: absolute;
  top: 48px;
  bottom: 0;
  right: 0;
  width: 240px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px;
  margin-right: -240px;
  transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.clndr .clndr_events .clndr_event {
  padding: 8px 0;
  display: none;
}
.clndr .clndr_events .clndr_event > a {
  display: inline-block;
  color: #212121;
}
.clndr .clndr_events .clndr_event .clndr_event_more_info,
.clndr .clndr_events .clndr_event .clndr_event_title {
  display: block;
}
.clndr .clndr_events .clndr_event .clndr_event_more_info {
  margin: 0;
  font-size: 12px;
  color: #999;
}
.clndr .clndr_events .clndr_event .clndr_event_title {
  font-size: 14px;
  font-weight: 500;
}
.clndr .clndr_events .clndr_events_close_button {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
}
.clndr-wrapper.animated_change .clndr_days {
  transform: translateY(80%);
  opacity: 0;
}
.events_visible .clndr .clndr_days {
  margin-right: 240px;
}
.events_visible .clndr .clndr_days .day-active > span {
  border-color: #2196f3 !important;
  box-shadow: 0 0 0 1px #2196f3;
}
.events_visible .clndr .clndr_events {
  margin-right: 0;
}
.events_over.events_visible .clndr .clndr_days {
  margin-right: 0;
}
.events_over.events_visible .clndr_events {
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
  z-index: 5;
  border-left-color: transparent;
}
.peity_data {
  display: none;
}
/* gmaps (google maps) */
.gmap {
  width: 100%;
  height: 240px;
}
.gmap img {
  max-width: none;
}
.gmap .on_gmap .wrap_controls {
  width: 180px;
  border: none !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}
.gmap .on_gmap .controls_title {
  font-weight: normal !important;
  font-size: 14px !important;
}
.gmap .on_gmap.dropdown .wrap_controls {
  overflow: visible !important;
}
.gmap_large {
  height: 300px;
}
.gmap_xlarge {
  height: 400px;
}
.gmap_list > li {
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gmap_list > li:active {
  background: #eee;
}
.gmap-info-window {
  min-width: 120px;
  font-weight: 400;
}
.gmap-info-window h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 17px;
}
.gmap-info-window p {
  color: #aaa;
  font-size: 13px;
  margin: 0;
}
/* easy pie chart */
.epc_chart {
  display: block;
  position: relative;
}
.epc_chart_text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font: 400 20px / 110px "Roboto", sans-serif;
}
.epc_chart_icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  line-height: 104px;
  display: block;
}
.epc_chart_icon > i {
  color: #727272;
  font-size: 48px;
  vertical-align: middle;
}
.epc_chart + .heading_a {
  margin-top: 10px;
}
/* iCheck material design theme
----------------------------------- */
.icheckbox_md,
.iradio_md {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}
.icheckbox_md:after,
.iradio_md:after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.icheckbox_md > input,
.iradio_md > input {
  margin: 0;
}
.icheckbox_md > .iCheck-helper,
.iradio_md > .iCheck-helper {
  z-index: 10;
}
.icheckbox_md {
  border: 2px solid rgba(0, 0, 0, 0.54);
  border-radius: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  transition: all 200ms ease-out;
}
.icheckbox_md.checked:after,
.icheckbox_md.disabled:after {
  content: '\e5ca';
  font-family: "Material Icons";
  font-size: 18px;
  color: #fff;
  position: absolute;
  left: -2px;
  top: -6px;
  line-height: 1.42857143;
}
.icheckbox_md.hover.checked,
.icheckbox_md.checked {
  background: #009688;
  border-color: #009688 !important;
}
.icheckbox_md.disabled:after {
  display: none;
}
.icheckbox_md.disabled,
.icheckbox_md.disabled.checked {
  background: transparent;
  background-clip: padding-box;
  border-color: rgba(0, 0, 0, 0.26);
  cursor: default;
}
.icheckbox_md.disabled.checked {
  background: #bdbdbd !important;
  border-color: #bdbdbd !important;
}
.icheckbox_md.disabled.checked:after {
  display: block !important;
}
.md-input-danger .icheckbox_md {
  border-color: #e53935;
}
.icheckbox_md.indeterminate {
  background: #009688;
  border-color: #009688;
}
.icheckbox_md.indeterminate:after {
  content: '';
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 10px;
  height: 10px;
}
.iradio_md {
  border: 2px solid rgba(0, 0, 0, 0.54);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.iradio_md:after {
  content: '';
  background: transparent;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0.1);
  transition: all 200ms ease-out;
}
.iradio_md.checked {
  border-color: #009688 !important;
}
.iradio_md.checked:after {
  background: #009688;
  transform: scale(1);
}
.iradio_md.disabled {
  border-color: rgba(0, 0, 0, 0.26);
  cursor: default;
}
.iradio_md.disabled:after {
  background: rgba(0, 0, 0, 0.26);
  transform: scale(1);
}
.md-input-danger .iradio_md {
  border-color: #e53935;
}
.disabled + .inline-label {
  color: rgba(0, 0, 0, 0.26);
  cursor: default;
}
.icheck-inline {
  display: inline-block;
  margin: 0 16px 16px 0;
}
.icheck-inline + .parsley-errors-list {
  margin-top: -8px;
}
/* prism syntax highlighter */
/**
 * prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics);
 * @author Tim  Shedor
 */
code[class*="language-"],
pre[class*="language-"] {
  color: black;
  background: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
/* Code blocks */
pre[class*="language-"] {
  position: relative;
  margin: 0.5em 0;
  overflow: visible;
  padding: 0;
}
pre[class*="language-"] > code {
  position: relative;
  border-left: 10px solid #358ccb;
  box-shadow: -1px 0px 0px 0px #358ccb, 0px 0px 0px 1px #dfdfdf;
  background-color: #fdfdfd;
  background-image: linear-gradient(transparent 50%, rgba(69, 142, 209, 0.04) 50%);
  background-size: 3em 3em;
  background-origin: content-box;
  background-attachment: local;
}
code[class*="language"] {
  max-height: inherit;
  height: inherit;
  padding: 0 1em;
  display: block;
  overflow: auto;
}
/* Margin bottom to accomodate shadow */
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background-color: #fdfdfd;
  box-sizing: border-box;
  margin-bottom: 1em;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
  position: relative;
  padding: 0.2em;
  border-radius: 0.3em;
  color: #c92c2c;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline;
  white-space: normal;
}
pre[class*="language-"]:before,
pre[class*="language-"]:after {
  content: '';
  z-index: -2;
  display: block;
  position: absolute;
  bottom: 0.75em;
  left: 0.18em;
  width: 40%;
  height: 20%;
  max-height: 13em;
  box-shadow: 0px 13px 8px #979797;
  transform: rotate(-2deg);
}
:not(pre) > code[class*="language-"]:after,
pre[class*="language-"]:after {
  right: 0.75em;
  left: auto;
  transform: rotate(2deg);
}
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #7D8B99;
}
.token.punctuation {
  color: #5F6364;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.function-name,
.token.constant,
.token.symbol,
.token.deleted {
  color: #c92c2c;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.function,
.token.builtin,
.token.inserted {
  color: #2f9c0a;
}
.token.operator,
.token.entity,
.token.url,
.token.variable {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword,
.token.class-name {
  color: #1990b8;
}
.token.regex,
.token.important {
  color: #e90;
}
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
.token.important {
  font-weight: normal;
}
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
.namespace {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  pre[class*="language-"]:before,
  pre[class*="language-"]:after {
    bottom: 14px;
    box-shadow: none;
  }
}
/* Plugin styles */
.token.tab:not(:empty):before,
.token.cr:before,
.token.lf:before {
  color: #e0d7d1;
}
/* Plugin styles: Line Numbers */
pre[class*="language-"].line-numbers.line-numbers {
  padding-left: 0;
}
pre[class*="language-"].line-numbers.line-numbers code {
  padding-left: 3.8em;
}
pre[class*="language-"].line-numbers.line-numbers .line-numbers-rows {
  left: 0;
}
/* Plugin styles: Line Highlight */
pre[class*="language-"][data-line] {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
pre[data-line] code {
  position: relative;
  padding-left: 4em;
}
pre .line-highlight {
  margin-top: 0;
}
pre[class*="language-"].line-numbers {
  position: relative;
  padding-left: 3.8em;
  counter-reset: linenumber;
}
pre[class*="language-"].line-numbers > code {
  position: relative;
  white-space: inherit;
}
.line-numbers .line-numbers-rows {
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: -3.8em;
  width: 3em;
  /* works for line-numbers below 1000 lines */
  letter-spacing: -1px;
  border-right: 1px solid #999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.line-numbers-rows > span {
  pointer-events: none;
  display: block;
  counter-increment: linenumber;
}
.line-numbers-rows > span:before {
  content: counter(linenumber);
  color: #999;
  display: block;
  padding-right: 0.8em;
  text-align: right;
}
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}
.scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.scroll-element {
  display: none;
}
.scroll-element,
.scroll-element div {
  box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}
.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.scrollbar-inner {
  height: 100% !important;
  max-height: 100%;
  overflow-y: auto;
}
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}
.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.scrollbar-inner > .scroll-element .scroll-element_track {
  display: none;
}
.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #6C6E71;
  display: block;
  opacity: 0;
  border-radius: 6px;
  transition: opacity 0.2s linear;
}
.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 0;
  height: 0;
  left: 0;
  min-width: 100%;
  overflow: visible;
  width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-x .scroll-bar {
  height: 7px;
  min-width: 10px;
  top: -9px;
}
.scrollbar-inner > .scroll-element.scroll-x .scroll-element_outer {
  left: 2px;
}
.scrollbar-inner > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}
.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 0;
}
.scrollbar-inner > .scroll-element.scroll-y .scroll-bar {
  left: -8px;
  min-height: 10px;
  width: 6px;
}
.scrollbar-inner > .scroll-element.scroll-y .scroll-element_outer {
  top: 2px;
}
.scrollbar-inner > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}
.scrollbar-inner:hover > .scroll-element .scroll-bar,
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  opacity: 0.7;
}
.sidebar_mini #sidebar_main .scrollbar-inner > .scroll-element.scroll-y {
  right: auto;
  left: 0;
}
.sidebar_mini #sidebar_main .scrollbar-inner > .scroll-element.scroll-y .scroll-bar {
  left: 2px;
}
/* selectize */
/**
 * selectize.css (v0.12.6)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}
.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
  color: #000000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  box-sizing: border-box;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.selectize-control {
  position: relative;
}
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}
.selectize-input.full {
  background-color: #fff;
}
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}
.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  box-shadow: none !important;
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: none !important;
}
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}
.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.selectize-dropdown [data-selectable].option {
  opacity: 1;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.selectize-dropdown .active.create {
  color: #495c68;
}
.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}
.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}
.selectize-input {
  border-color: rgba(0, 0, 0, 0.12);
  line-height: 25px;
  padding: 6px 8px;
}
.selectize-input,
.selectize-input.focus {
  border-radius: 0;
  box-shadow: none;
}
.selectize-input:before,
.selectize-input.focus:before {
  display: none;
}
.md-input-danger .selectize-input {
  border-color: #e53935;
}
.selectize-input.dropdown-active:before {
  display: none;
}
.selectize-dropdown {
  margin-top: -44px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  color: #212121;
  z-index: 1210;
}
.selectize-dropdown [data-selectable] {
  padding: 11px 10px 10px;
  font-size: 15px;
}
.selectize-dropdown [data-selectable].option-disabled {
  color: #aaa;
  cursor: not-allowed;
}
.selectize-dropdown .active {
  background: rgba(0, 0, 0, 0.085);
  color: inherit;
}
.selectize-dropdown .optgroup-header {
  font-size: 12px;
  color: #aaa;
  padding-top: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
}
.selectize-dropdown.multi .item-icon {
  margin-right: 4px;
}
.selectize-dropdown.selectize_fs {
  z-index: 9999;
}
.selectize-dropdown-content {
  -webkit-overflow-scrolling: auto;
}
.selectize-control .selectize-input {
  min-height: 40px;
}
.selectize-control.multi .selectize-input {
  line-height: 21px;
}
.selectize-control.multi .selectize-input > div {
  border-radius: 18px;
  padding: 3px 8px 2px;
  font-size: 14px;
}
.selectize-control.multi .selectize-input > div > span {
  display: block;
}
.selectize-control.multi .selectize-input > div > span.name {
  padding-top: 4px;
  line-height: 1.2;
  font-size: 12px;
}
.selectize-control.multi .selectize-input .selectize-input.has-items {
  padding: 4px;
}
.selectize-control.multi .selectize-input .item-icon {
  margin-right: 4px;
}
.selectize-control.multi .selectize-input input {
  height: 26px;
  font-size: 15px;
}
.selectize-control.plugin-remove_button [data-value] {
  padding-right: 28px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  border: none;
  width: auto;
  padding: 4px 5px 0 0;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: none;
}
.selectize-control.plugin-remove_button [data-value] .remove:after {
  color: #727272;
  content: '\e5cd';
  font-family: "Material Icons";
  font-size: 18px;
}
.selectize-control.single {
  height: 40px;
  margin-top: 4px;
}
.selectize-control.single .selectize-input {
  border-width: 0 0 1px;
  padding: 8px 8px 9px;
}
.selectize-control.single .selectize-input:after {
  border: none !important;
  content: '\e5c5';
  font-family: "Material Icons";
  font-size: 28px;
  margin-top: -12px !important;
  right: 28px;
  color: rgba(0, 0, 0, 0.3);
}
.selectize-control.single .selectize-input .item {
  font-size: 15px;
}
.selectize-control.single .selectize-input input {
  font-size: 15px;
}
.selectize-control.single.plugin-remove_button [data-value] .remove {
  padding: 0;
}
.selectize-control.single.plugin-remove_button [data-value] .remove:hover {
  background: none;
}
.selectize-control.single.plugin-remove_button [data-value] .remove:after {
  color: #727272;
  content: '\e5cd';
  font-family: "Material Icons";
  font-size: 18px;
}
.selectize-control.rtl.single .selectize-input:after {
  left: 28px;
}
.selectize_fix {
  overflow: hidden;
  height: 0;
  width: 100%;
}
.tablesorter .selectize-control.single,
.tablesorter .selectize-control .selectize-input {
  min-height: 34px;
}
.tablesorter .selectize-control .selectize-input {
  padding: 4px 8px 5px;
}
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #fafafa !important;
  box-shadow: none !important;
  border: none !important;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  white-space: nowrap;
}
/* codemirror */
#code_editor_close {
  display: none;
}
.CodeMirror pre {
  font-size: 14px !important;
  line-height: 20px !important;
}
.CodeMirror div.CodeMirror-cursor {
  min-height: 20px;
}
.CodeMirror-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
}
.CodeMirror-fullscreen #code_editor_close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
}
.CodeMirror_textarea {
  visibility: hidden;
}
.uk-notouch #code_editor_close {
  right: 30px !important;
}
.md-card-CodeMirror .md-card-content form,
.md-card-CodeMirror .md-card-content form .CodeMirror {
  height: 100%;
}
body.CodeMirror-fullscreen-active #header_main,
body.CodeMirror-fullscreen-active #sidebar_main,
body.CodeMirror-fullscreen-active #style_switcher {
  display: none;
}
body.CodeMirror-fullscreen-active .md-card-CodeMirror {
  z-index: 1154;
}
body.CodeMirror-fullscreen-active .CodeMirror-fullscreen {
  z-index: 1154;
}
body.CodeMirror-fullscreen-active .CodeMirror-fullscreen #code_editor_close {
  z-index: 1155;
}
/* switchery */
.switchery {
  background-color: #fff;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 14px;
  position: relative;
  vertical-align: middle;
  width: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  box-sizing: content-box;
  background-clip: content-box;
  transition: background-color 800ms ease-out !important;
  box-shadow: none !important;
  margin: 6px 2px;
}
.switchery > small {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  height: 20px;
  position: absolute;
  top: 0;
  width: 20px;
  margin-top: -3px;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1), left 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.switchery-small {
  width: 32px;
  height: 9px;
  margin: 4px 1px;
}
.switchery-small > small {
  height: 16px;
  width: 16px;
  top: -1px;
}
.switchery-large {
  width: 48px;
}
.switchery-large > small {
  height: 24px;
  width: 24px;
  top: -3px;
}
/* Ion.RangeSlider, Modern Skin */
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 55px;
}
.tablesorter .irs {
  height: 42px;
}
.irs-line {
  height: 2px;
  top: 33px;
  background: #EEE;
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}
.irs-line-left,
.irs-line-mid,
.irs-line-right {
  position: absolute;
  display: block;
  top: 0;
}
.irs-line-left {
  height: 8px;
  left: 0;
  width: 11%;
}
.irs-line-mid {
  height: 8px;
  left: 9%;
  width: 82%;
}
.irs-line-right {
  height: 8px;
  right: 0;
  width: 11%;
}
.irs-bar {
  height: 2px;
  top: 33px;
  background: #009688;
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}
.irs-bar-edge {
  height: 2px;
  width: 6px;
  border-right: 0;
  background: #009688;
  position: absolute;
  display: block;
  top: 33px;
  left: 0;
}
.irs-shadow {
  height: 4px;
  top: 32px;
  background: #000;
  opacity: 0.4;
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}
.irs-slider {
  top: 28px;
  width: 12px;
  height: 12px;
  background: #009688;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  display: block;
  z-index: 1;
}
.irs-slider.state_hover,
.irs-slider:hover {
  background: #009688;
}
.irs-slider.type_last {
  z-index: 2;
}
.irs-min,
.irs-max {
  color: #727272;
  font-size: 12px;
  line-height: 16px;
  text-shadow: none;
  top: 0;
  padding: 1px 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  display: block;
  cursor: default;
  position: absolute;
}
.irs-min {
  left: 0;
}
.irs-max {
  right: 0;
}
.irs-from,
.irs-to,
.irs-single {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  text-shadow: none;
  padding: 1px 4px;
  background: #009688;
  border-radius: 2px;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
  z-index: 10;
}
.irs-from:after,
.irs-to:after,
.irs-single:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -4px;
  display: block;
  border: 4px solid transparent;
  border-top-color: #009688;
}
.irs-with-grid {
  height: 65px;
}
.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.irs-grid-pol {
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #727272;
}
.irs-grid-pol.small {
  background: #727272;
  height: 4px;
}
.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #727272;
}
.irs-with-grid .irs-grid {
  display: block;
}
.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.irs-disabled {
  opacity: 0.4;
}
.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}
.lt-ie9 .irs-shadow {
  filter: alpha(opacity=30);
}
.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
  background: #ccc;
}
.lt-ie9 .irs-from,
.lt-ie9 .irs-to,
.lt-ie9 .irs-single {
  background: #999;
}
.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}
.parsley-errors-list {
  color: #e53935;
  margin-top: 0;
}
.parsley-errors-list span {
  display: block;
  padding-top: 4px;
}
/* datatables */
.dataTables_wrapper .uk-table {
  margin: 0 auto;
  border-spacing: 0;
}
.dataTables_wrapper .uk-table thead .sorting,
.dataTables_wrapper .uk-table thead .sorting_asc,
.dataTables_wrapper .uk-table thead .sorting_desc {
  cursor: pointer;
  padding-right: 24px;
}
.dataTables_wrapper .uk-table thead .sorting,
.dataTables_wrapper .uk-table thead .sorting_asc,
.dataTables_wrapper .uk-table thead .sorting_desc,
.dataTables_wrapper .uk-table thead .sorting_asc_disabled,
.dataTables_wrapper .uk-table thead .sorting_desc_disabled {
  position: relative;
}
.dataTables_wrapper .uk-table thead .sorting:after,
.dataTables_wrapper .uk-table thead .sorting_asc:after,
.dataTables_wrapper .uk-table thead .sorting_desc:after,
.dataTables_wrapper .uk-table thead .sorting_asc_disabled:after,
.dataTables_wrapper .uk-table thead .sorting_desc_disabled:after {
  position: absolute;
  right: 4px;
  bottom: 13px;
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  font-family: "Material Icons";
  color: #212121;
}
.dataTables_wrapper .uk-table thead .sorting:after {
  content: '\e164';
  color: #aaa;
}
.dataTables_wrapper .uk-table thead .sorting_asc:after {
  content: '\e313';
}
.dataTables_wrapper .uk-table thead .sorting_desc:after {
  content: '\e316';
}
.dataTables_wrapper .uk-table thead .sorting_asc_disabled:after {
  content: '\e313';
  color: #aaa;
}
.dataTables_wrapper .uk-table thead .sorting_desc_disabled:after {
  content: '\e316';
  color: #aaa;
}
.dataTables_wrapper .uk-table,
.dataTables_wrapper .uk-table th,
.dataTables_wrapper .uk-table td {
  box-sizing: content-box;
}
.dataTables_wrapper .uk-table:active,
.dataTables_wrapper .uk-table th:active,
.dataTables_wrapper .uk-table td:active {
  outline: none;
}
.dataTables_wrapper .uk-table tbody tr.selected {
  background-color: rgba(102, 102, 102, 0.085);
}
.dataTables_wrapper .uk-table.order-column tbody tr > .sorting_1,
.dataTables_wrapper .uk-table.order-column tbody tr > .sorting_2,
.dataTables_wrapper .uk-table.order-column tbody tr > .sorting_3,
.dataTables_wrapper .uk-table tbody tr > .sorting_1,
.dataTables_wrapper .uk-table tbody tr > .sorting_2,
.dataTables_wrapper .uk-table tbody tr > .sorting_3 {
  background-color: rgba(102, 102, 102, 0.085);
}
.dataTables_wrapper .uk-table.nowrap th,
.dataTables_wrapper .uk-table.nowrap td {
  white-space: nowrap;
}
.dataTables_wrapper .uk-table.compact thead th,
.dataTables_wrapper .uk-table.compact thead td {
  padding: 4px 17px 4px 4px;
}
.dataTables_wrapper .uk-table.compact tfoot th,
.dataTables_wrapper .uk-table.compact tfoot td {
  padding: 4px;
}
.dataTables_wrapper .uk-table.compact tbody th,
.dataTables_wrapper .uk-table.compact tbody td {
  padding: 4px;
}
.dataTables_wrapper .uk-table th.dt-left,
.dataTables_wrapper .uk-table td.dt-left {
  text-align: left;
}
.dataTables_wrapper .uk-table th.dt-center,
.dataTables_wrapper .uk-table td.dt-center,
.dataTables_wrapper .uk-table td.dataTables_empty {
  text-align: center;
}
.dataTables_wrapper .uk-table th.dt-right,
.dataTables_wrapper .uk-table td.dt-right {
  text-align: right;
}
.dataTables_wrapper .uk-table th.dt-justify,
.dataTables_wrapper .uk-table td.dt-justify {
  text-align: justify;
}
.dataTables_wrapper .uk-table th.dt-nowrap,
.dataTables_wrapper .uk-table td.dt-nowrap {
  white-space: nowrap;
}
.dataTables_wrapper .uk-table thead th.dt-head-left,
.dataTables_wrapper .uk-table thead td.dt-head-left,
.dataTables_wrapper .uk-table tfoot th.dt-head-left,
.dataTables_wrapper .uk-table tfoot td.dt-head-left {
  text-align: left;
}
.dataTables_wrapper .uk-table thead th.dt-head-center,
.dataTables_wrapper .uk-table thead td.dt-head-center,
.dataTables_wrapper .uk-table tfoot th.dt-head-center,
.dataTables_wrapper .uk-table tfoot td.dt-head-center {
  text-align: center;
}
.dataTables_wrapper .uk-table thead th.dt-head-right,
.dataTables_wrapper .uk-table thead td.dt-head-right,
.dataTables_wrapper .uk-table tfoot th.dt-head-right,
.dataTables_wrapper .uk-table tfoot td.dt-head-right {
  text-align: right;
}
.dataTables_wrapper .uk-table thead th.dt-head-justify,
.dataTables_wrapper .uk-table thead td.dt-head-justify,
.dataTables_wrapper .uk-table tfoot th.dt-head-justify,
.dataTables_wrapper .uk-table tfoot td.dt-head-justify {
  text-align: justify;
}
.dataTables_wrapper .uk-table thead th.dt-head-nowrap,
.dataTables_wrapper .uk-table thead td.dt-head-nowrap,
.dataTables_wrapper .uk-table tfoot th.dt-head-nowrap,
.dataTables_wrapper .uk-table tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
.dataTables_wrapper .uk-table tbody th.dt-body-left,
.dataTables_wrapper .uk-table tbody td.dt-body-left {
  text-align: left;
}
.dataTables_wrapper .uk-table tbody th.dt-body-center,
.dataTables_wrapper .uk-table tbody td.dt-body-center {
  text-align: center;
}
.dataTables_wrapper .uk-table tbody th.dt-body-right,
.dataTables_wrapper .uk-table tbody td.dt-body-right {
  text-align: right;
}
.dataTables_wrapper .uk-table tbody th.dt-body-justify,
.dataTables_wrapper .uk-table tbody td.dt-body-justify {
  text-align: justify;
}
.dataTables_wrapper .uk-table tbody th.dt-body-nowrap,
.dataTables_wrapper .uk-table tbody td.dt-body-nowrap {
  white-space: nowrap;
}
.dataTables_wrapper .uk-table tfoot .md-input-wrapper {
  padding-top: 0;
}
.dataTables_wrapper .uk-table tfoot .md-input-wrapper .md-input {
  padding: 8px 4px;
}
.dataTables_wrapper .dataTables_length {
  margin-top: -1px;
}
.dataTables_wrapper .dataTables_filter .md-input-wrapper {
  padding-top: 15px;
}
.dataTables_wrapper .dataTables_filter .md-input-wrapper .md-input {
  padding: 6px 4px;
  -webkit-appearance: none;
  border-radius: 0;
}
.dataTables_wrapper .selectize-control.dt-selectize {
  min-width: 64px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
  height: 40px;
}
.dataTables_wrapper .selectize-control.dt-selectize .selectize-input {
  border-color: transparent;
  background: transparent;
}
.dataTables_wrapper .selectize-control.dt-selectize:hover .selectize-input {
  border-color: rgba(0, 0, 0, 0.12);
  background: #fff;
}
.dataTables_wrapper .dt-uikit-header {
  padding: 4px 8px;
  margin-bottom: 16px;
}
.dataTables_wrapper .dt-uikit-footer {
  padding: 4px 8px;
  margin-top: 16px;
}
.dataTables_wrapper .dt-uikit-footer .dataTables_info {
  padding-top: 8px;
  color: #727272;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .dataTables_wrapper .dt-uikit-footer .dataTables_info {
    text-align: center;
  }
}
.dataTables_wrapper .dt-uikit-footer .uk-pagination {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .dataTables_wrapper .dt-uikit-footer .uk-pagination {
    margin-top: 16px;
    text-align: center;
  }
}
.dataTables_wrapper .uk-overflow-container th,
.dataTables_wrapper .uk-overflow-container td {
  white-space: nowrap !important;
}
/* plugins */
.dt_colVis_buttons {
  margin-bottom: 8px;
}
.dt_colVis_buttons:before,
.dt_colVis_buttons:after {
  content: " ";
  display: table;
}
.dt_colVis_buttons:after {
  clear: both;
}
.dt_colVis_buttons:before,
.dt_colVis_buttons:after {
  content: " ";
  display: table;
}
.dt_colVis_buttons:after {
  clear: both;
}
div.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-radius: 3px;
  text-align: center;
  z-index: 21;
}
div.dt-button-info h2 {
  padding: 16px;
  margin: 0;
  font: 400 20px / 24px "Roboto", sans-serif;
}
div.dt-button-info > div {
  padding: 16px 24px;
}
.dt-button embed {
  outline: none;
}
div.dt-buttons {
  position: relative;
  float: left;
}
div.dt-buttons.buttons-right {
  float: right;
}
.dt-button-collection.uk-dropdown {
  margin-top: 4px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1 !important;
  transform: scale(1);
  z-index: 2020;
}
.dt-button-collection.uk-dropdown .dt-button.buttons-columnVisibility a {
  position: relative;
  padding-left: 32px;
  color: #212121;
  font-size: 15px;
  line-height: 20px;
}
.dt-button-collection.uk-dropdown .dt-button.buttons-columnVisibility a:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: '\e835';
  font-family: "Material Icons";
  font-size: 24px;
  color: rgba(0, 0, 0, 0.54);
}
.dt-button-collection.uk-dropdown .dt-button.buttons-columnVisibility.active a:before {
  content: '\e834';
  color: #009688;
}
div.dt-button-collection {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  margin-top: 3px;
  padding: 8px 8px 4px 8px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: white;
  overflow: hidden;
  z-index: 2002;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -moz-column-gap: 8px;
       column-gap: 8px;
}
div.dt-button-collection.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  border-radius: 0;
}
div.dt-button-collection.fixed.two-column {
  margin-left: -150px;
}
div.dt-button-collection.fixed.three-column {
  margin-left: -225px;
}
div.dt-button-collection.fixed.four-column {
  margin-left: -300px;
}
div.dt-button-collection > * {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
div.dt-button-collection.two-column {
  width: 300px;
  padding-bottom: 1px;
  -moz-column-count: 2;
       column-count: 2;
}
div.dt-button-collection.three-column {
  width: 450px;
  padding-bottom: 1px;
  -moz-column-count: 3;
       column-count: 3;
}
div.dt-button-collection.four-column {
  width: 600px;
  padding-bottom: 1px;
  -moz-column-count: 4;
       column-count: 4;
}
div.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2001;
  background: rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 640px) {
  div.dt-buttons {
    float: none !important;
    text-align: center;
  }
}
/* fullcalendar */
.fc-state-default {
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0 !important;
}
.fc-toolbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin: -16px -16px 16px;
  height: 48px;
  padding: 0 16px;
}
.fc-toolbar h2 {
  line-height: 48px;
}
.fc-toolbar .fc-button {
  margin-top: 8px;
  border-radius: 50% !important;
}
.fc-toolbar .fc-button:hover {
  background: rgba(0, 0, 0, 0.08);
}
.fc-event {
  background: #0277bd;
  border-radius: 3px;
  font-size: 12px;
}
.fc-day-grid-event {
  padding: 2px 2px;
}
.fc-day-number.fc-other-month {
  opacity: 0.4;
}
.fc .fc-button-group + .fc-button-group {
  margin-left: 24px;
}
.fc .fc-day-grid-event {
  margin-top: 2px;
}
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row,
.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead {
  border-color: rgba(102, 102, 102, 0.12);
}
.fc-unthemed .fc-widget-header {
  border: none;
  text-align: left;
  font-size: 15px;
  color: #727272;
  font-weight: 400;
  padding: 2px 1px;
}
.fc-unthemed .fc-today {
  background: #fffde7;
}
.fc-unthemed .fc-button {
  position: relative;
  min-width: 32px;
  height: 32px;
  box-sizing: border-box;
  padding: 0;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-unthemed .fc-button + .fc-button {
  margin-left: 8px;
}
.fc-unthemed .fc-button:after {
  font-family: "Material Icons";
  font-size: 24px;
  position: absolute;
  color: #727272;
  left: 0;
  top: 4px;
  width: 100%;
  height: 100%;
  display: block;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-unthemed .fc-button:hover:after {
  color: #212121;
}
.fc-unthemed .fc-button.fc-state-active {
  background: none !important;
  cursor: default;
}
.fc-unthemed .fc-button.fc-state-active:after {
  color: #7cb342;
}
.fc-unthemed .fc-button.fc-state-disabled {
  background: none !important;
  cursor: default;
}
.fc-unthemed .fc-button.fc-state-disabled:hover:after {
  color: #727272;
}
.fc-unthemed .fc-today-button {
  margin-left: 16px;
}
.fc-unthemed .fc-today-button:after {
  content: '\e8df';
}
.fc-unthemed .fc-month-button:after {
  content: '\e42a';
}
.fc-unthemed .fc-agendaWeek-button:after {
  content: '\e8f3';
}
.fc-unthemed .fc-agendaDay-button:after {
  content: '\e8ed';
}
.fc-unthemed .fc-listWeek-button:after {
  content: '\e8ef';
}
.fc-unthemed .fc-prev-button:after {
  content: '\e408';
}
.fc-unthemed .fc-next-button {
  margin-left: 0 !important;
}
.fc-unthemed .fc-next-button:after {
  content: '\e409';
}
.fc-unthemed .fc-popover {
  border: none !important;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  margin: -10px 0 0 -4px;
}
.fc-unthemed .fc-popover .fc-header {
  padding: 4px;
  background: #999;
  color: #fff;
}
.fc-unthemed .fc-popover .fc-header .fc-close {
  margin-top: 3px;
  color: #fff;
}
.fc-unthemed .fc-popover .fc-event-container {
  padding: 8px;
}
.fc-unthemed .fc-highlight {
  background: none;
  box-shadow: inset 0 0 0 2px #2196f3, inset 0 -1px 0 2px #2196f3;
  opacity: 1;
}
.fc-ltr .fc-basic-view .fc-day-number {
  text-align: left;
  color: #212121;
}
.fc-basic-view td.fc-day-number,
.fc-basic-view td.fc-week-number span {
  padding: 2px 4px;
}
.fc-list-item + .fc-list-heading .fc-widget-header {
  border-top: 1px solid #ddd;
}
.fc-list-heading .fc-widget-header {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
}
/* vector maps */
.mapTooltip {
  background: #616161;
  color: #fff;
  font-size: 14px;
  padding: 6px 16px;
  line-height: 18px;
  text-shadow: none;
  position: fixed;
  border-radius: 4px;
  z-index: 1000;
  max-width: 200px;
  display: none;
}
.vm_wrapper {
  max-width: 100%;
  margin: 0 auto;
}
.plotLegend {
  margin-top: 24px;
  padding: 16px 16px 8px;
}
/* fileInput */
.btn-file {
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  cursor: pointer;
}
.btn-file input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  direction: ltr;
}
.fileinput {
  display: inline-block;
}
.fileinput .form-control {
  display: inline-block;
  padding-top: 7px;
  padding-bottom: 5px;
  margin-bottom: 0;
  vertical-align: middle;
  cursor: text;
}
.fileinput .thumbnail {
  display: inline-block;
  overflow: hidden;
  text-align: center;
  vertical-align: top;
}
.fileinput .thumbnail > img {
  height: 100%;
  width: 100%;
}
.fileinput .btn {
  vertical-align: middle;
}
.fileinput-exists .fileinput-new,
.fileinput-new .fileinput-exists {
  display: none !important;
}
.fileinput-inline .fileinput-controls {
  display: inline;
}
.fileinput-filename {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
}
/*
jQuery.ganttView v.0.8.0
Copyright (c) 2010 JC Grubbs - jc.grubbs@devmynd.com
MIT License Applies
*/
div.ganttview {
  position: relative;
  /* Horizontal Header */
  /* Vertical Header */
  /* Slider */
  /* Grid */
  /* Adjustments for jQuery UI Styling */
}
div.ganttview,
div.ganttview:before,
div.ganttview:after,
div.ganttview *,
div.ganttview *:before,
div.ganttview *:after {
  box-sizing: border-box;
}
div.ganttview-wrapper {
  margin: 0 auto;
  overflow: hidden;
}
div.ganttview-hzheader-month,
div.ganttview-hzheader-day,
div.ganttview-vtheader,
div.ganttview-grid,
div.ganttview-grid-row-cell {
  float: left;
}
div.ganttview-hzheader-month,
div.ganttview-hzheader-day {
  text-align: center;
}
div.ganttview-grid-row-cell.last,
div.ganttview-hzheader-day.last,
div.ganttview-hzheader-month.last {
  border-right: none;
}
div.ganttview-hzheader-month {
  width: 60px;
  height: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  line-height: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #727272;
  box-sizing: content-box;
}
div.ganttview-hzheader-day {
  width: 20px;
  height: 20px;
  border-right: 1px solid #f0f0f0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  line-height: 20px;
  color: #999;
  font-size: 11px;
}
div.ganttview-hzheader-day.ganttview-weekend {
  background: #f8f8f8;
}
div.ganttview-hzheader-day.ganttview-today {
  background: #fff9db !important;
}
div.ganttview-vtheader {
  margin-top: 41px;
  width: 240px;
  background-color: #fff;
}
div.ganttview-vtheader-group {
  color: #212121;
}
div.ganttview-vtheader-group-name {
  line-height: 24px;
  font-size: 13px;
  font-weight: 500;
  height: 24px;
  padding: 0 8px;
  position: relative;
  border-top: 1px solid #e0e0e0;
  background: rgba(0, 0, 0, 0.085);
}
div.ganttview-vtheader-group-name.toggle_enabled {
  cursor: pointer;
}
div.ganttview-vtheader-group-name.toggle_enabled:before {
  position: absolute;
  right: 4px;
  top: 0;
  display: block;
  content: '\e313';
  font-family: "Material Icons";
  font-size: 18px;
  color: #727272;
}
div.ganttview-vtheader-group-name.toggle_enabled.projectHidden:before {
  content: '\e316';
}
div.ganttview-vtheader-series-row {
  height: 42px;
  padding: 3px 8px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  overflow: hidden;
  position: relative;
}
div.ganttview-vtheader-series-row:hover {
  overflow: visible;
}
div.ganttview-vtheader-series-row:hover .series-content {
  min-width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 100;
  overflow: visible;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 5px 8px 3px;
}
div.ganttview-vtheader-series-row .series-users {
  float: left;
  margin-right: 8px;
}
div.ganttview-vtheader-series-row .series-users .series-user {
  margin-right: 0;
}
div.ganttview-vtheader-series-row .series-users .series-user + .series-user {
  margin-left: 4px;
}
div.ganttview-vtheader-series-row .series-users .series-user > span {
  display: inline-block;
}
div.ganttview-vtheader-series-row .series-user {
  float: left;
  margin-right: 8px;
}
div.ganttview-vtheader-series-row .series-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
div.ganttview-vtheader-series-row .series-content {
  line-height: 16px;
  padding-top: 2px;
  overflow: hidden;
  white-space: nowrap;
}
div.ganttview-vtheader-series-row .series-content .series-name {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: block;
}
div.ganttview-vtheader-series-row .series-content .series-dates {
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 2px;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: block;
}
div.ganttview-vtheader-series-row .series-content .series-dates > .date-user {
  display: none;
}
div.ganttview-vtheader-series-row .series-content .date-sep {
  display: inline-block;
  margin: 0 8px;
}
div.ganttview-hzheader-months,
div.ganttview-hzheader-days {
  overflow: hidden;
}
div.ganttview-hzheader-days {
  position: relative;
}
div.ganttview-slide-container {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow-y: auto;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
div.ganttview-grid-row {
  overflow: hidden;
}
div.ganttview-grid-row-cell {
  width: 20px;
  height: 42px;
  border-right: 1px solid #f0f0f0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
div.ganttview-grid-row-cell.ganttview-weekend {
  background-color: #fafafa;
}
div.ganttview-grid-row-cell.ganttview-today {
  background-color: #fff9db !important;
}
div.ganttview-grid-spacer {
  background: #ededed;
  height: 24px;
  border-top: 1px solid #e0e0e0;
  cursor: pointer;
}
div.ganttview-grid-spacer + .ganttview-grid-row > div.ganttview-grid-row-cell {
  border-top-color: #e0e0e0;
}
div.ganttview-blocks {
  min-width: 100%;
  width: auto;
}
div.ganttview-block {
  height: 60%;
  background-color: #bbb;
  border-radius: 2px;
  position: absolute !important;
  opacity: 0.8;
  top: 20%;
}
div.ganttview-block-spacer {
  height: 24px;
}
div.ganttview-block-container {
  position: relative;
  height: 42px;
  width: 100%;
}
div.ganttview-block-text {
  position: absolute;
  font-size: 11px;
  color: #fff;
  padding: 5px 8px 2px;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: block;
}
div.ganttview-block-text > a {
  color: #fff;
  text-decoration: underline;
}
div.ganttview-block div.ui-resizable-handle.ui-resizable-s {
  bottom: 0;
}
div.ganttview-block:hover {
  z-index: 1000;
  opacity: 1;
}
div.ganttview .ui-resizable {
  position: relative;
}
div.ganttview .ui-resizable-handle {
  display: block;
  font-size: 0.1px;
  position: absolute;
}
div.ganttview .ui-resizable-disabled .ui-resizable-handle,
div.ganttview .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
div.ganttview .ui-resizable-e {
  cursor: e-resize;
  height: 100%;
  right: -5px;
  top: 0;
  width: 7px;
}
div.ganttview .ui-resizable-w {
  cursor: w-resize;
  height: 100%;
  left: -5px;
  top: 0;
  width: 7px;
}
@media only screen and (min-width: 768px) {
  div.ganttview-wrapper {
    width: 100%;
  }
  div.ganttview-slide-container {
    width: 75%;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }
  div.ganttview-vtheader {
    width: 25%;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }
}
@media only screen and (max-width: 767px) {
  div.ganttview-wrapper {
    position: relative;
  }
  div.ganttview-vtheader {
    position: absolute;
    left: 0;
    top: 0;
    background: none;
    width: 100%;
    z-index: 10;
    margin-top: 40px;
  }
  div.ganttview-vtheader-series-name {
    height: 22px;
    line-height: 20px;
    border: none;
    margin-bottom: 31px;
  }
  div.ganttview-vtheader-series-row {
    margin-bottom: 42px;
  }
  div.ganttview-row {
    margin-top: 21px;
  }
  div.ganttview-grid-spacer {
    background: none;
    border-top: none;
  }
  div.ganttview-grid-spacer + .ganttview-grid-row > div.ganttview-grid-row-cell {
    border-top-color: rgba(0, 0, 0, 0.12);
  }
  div.ganttview-grid-row {
    margin-top: 42px;
  }
  div.ganttview-block-container {
    margin-top: 42px;
  }
  div.ganttview-wrapper,
  div.ganttview-slide-container {
    width: 100%;
  }
  div.ganttview-slide-container {
    border-left: none;
    position: relative;
    z-index: 10;
  }
  div.ganttview-vtheader-group:last-child {
    border-bottom: none;
  }
}
.animate_hide {
  display: none;
}
/* wizard */
.wizard,
.tabcontrol {
  display: block;
  width: 100%;
  overflow: hidden;
}
.wizard a,
.tabcontrol a {
  outline: 0;
}
.wizard ul,
.tabcontrol ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.wizard ul > li,
.tabcontrol ul > li {
  display: block;
  padding: 0;
}
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info {
  position: absolute;
  left: -999em;
}
.wizard .content > .title,
.tabcontrol .content > .title {
  position: absolute;
  left: -999em;
}
.wizard > .steps {
  position: relative;
  display: block;
  width: 100%;
  background: #2196f3;
}
.wizard > .steps .number {
  font-size: 14px;
  border: 2px solid #fff;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -14px;
}
@media only screen and (min-width: 960px) {
  .wizard > .steps .number {
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-top: -18px;
  }
}
.wizard > .steps .title {
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding-left: 46px;
  box-sizing: border-box;
}
.wizard > .steps > ul > li {
  display: block;
}
@media only screen and (min-width: 960px) {
  .wizard > .steps > ul > li {
    float: left;
    width: 25%;
  }
}
.wizard > .steps > ul > li + li a {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 960px) {
  .wizard > .steps > ul > li + li a {
    border-top: none;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }
}
.wizard > .steps > ul > li a {
  position: relative;
}
.wizard > .steps > ul > li a,
.wizard > .steps > ul > li a:hover,
.wizard > .steps > ul > li a:active {
  display: block;
  width: auto;
  padding: 12px 8px;
  text-decoration: none;
  color: #fff;
}
@media only screen and (min-width: 960px) {
  .wizard > .steps > ul > li a,
  .wizard > .steps > ul > li a:hover,
  .wizard > .steps > ul > li a:active {
    padding: 16px;
  }
}
.wizard > .steps > ul > li.disabled a,
.wizard > .steps > ul > li.disabled a:hover,
.wizard > .steps > ul > li.disabled a:active {
  color: #fff;
  cursor: default;
}
.wizard > .steps > ul > li.current a,
.wizard > .steps > ul > li.current a:hover,
.wizard > .steps > ul > li.current a:active {
  background: #51adf6;
  color: #fff;
  cursor: default;
}
.wizard > .steps > ul > li.done a,
.wizard > .steps > ul > li.done a:hover,
.wizard > .steps > ul > li.done a:active {
  background: #1976d2;
  color: #fff;
}
.wizard > .steps > ul > li.error a,
.wizard > .steps > ul > li.error a:hover,
.wizard > .steps > ul > li.error a:active {
  background: #c62828;
  color: #fff;
}
.wizard > .content {
  display: block;
  min-height: 360px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
.wizard > .content > .body {
  padding: 48px 24px 64px;
  width: 100%;
  position: absolute;
  box-sizing: border-box;
}
.wizard > .content > .body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wizard > .content > .body ul > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.wizard > .content > .body .uk-form-label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  margin: -4px 0;
}
.wizard > .content > .body .icheck-inline {
  margin: 4px 16px 0 0;
}
.wizard > .content > .body .icheck-inline + .parsley-errors-list {
  margin-top: 2px;
}
.wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}
.wizard > .content > .body pre[class*="language-"] {
  max-height: inherit;
}
.wizard > .actions {
  display: block;
  background: rgba(0, 0, 0, 0.085);
  padding: 8px 24px;
}
.wizard > .actions > ul > li.button_previous {
  float: left;
}
.wizard > .actions > ul > li.button_next,
.wizard > .actions > ul > li.button_finish {
  float: right;
}
@media only screen and (max-width: 479px) {
  .wizard > .actions > ul > li + li {
    margin-top: 8px;
  }
  .wizard > .actions > ul > li.button_previous {
    float: none;
  }
  .wizard > .actions > ul > li.button_next,
  .wizard > .actions > ul > li.button_finish {
    float: none;
  }
}
.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  color: #212121;
  display: block;
  padding: 0 16px;
  min-width: 80px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 31px;
  text-transform: uppercase;
}
.wizard > .actions a .material-icons {
  color: #212121;
}
.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
  color: #aaa;
}
.wizard > .actions .disabled .material-icons {
  color: #aaa;
}
@media only screen and (min-width: 960px) {
  .wizard.vertical > .steps {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding: 8px;
  }
}
@media only screen and (min-width: 1220px) {
  .wizard.vertical > .steps {
    width: 20%;
  }
}
@media only screen and (min-width: 960px) {
  .wizard.vertical > .steps > ul > li {
    float: none;
    width: 100%;
  }
  .wizard.vertical > .steps > ul > li + li {
    margin-top: 8px;
  }
  .wizard.vertical > .steps > ul > li a {
    padding: 12px;
    border: none;
    border-radius: 4px;
  }
  .wizard.vertical > .steps .number {
    font-size: 12px;
    border: 2px solid #fff;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 50%;
    margin-top: -14px;
  }
}
.wizard.vertical > .content {
  display: block;
  background: #fff;
}
@media only screen and (min-width: 960px) {
  .wizard.vertical > .content {
    width: 75%;
    float: left;
  }
  .wizard.vertical > .content .body {
    padding: 16px 32px;
  }
}
@media only screen and (min-width: 1220px) {
  .wizard.vertical > .content {
    width: 80%;
  }
}
.wizard.vertical > .actions {
  display: block;
  clear: both;
}
/* chartist overide */
.chartist {
  height: 240px;
  width: 100%;
}
.chartist .ct-label {
  color: #727272;
  fill: #727272;
  font-size: 14px;
}
.chartist-labels-inside .ct-label {
  color: #fff;
  fill: #fff;
}
.ct-line {
  stroke-width: 2px;
}
.ct-point {
  stroke-width: 8px;
}
.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
  stroke: #1f77b4;
}
.ct-series-a .ct-area,
.ct-series-a .ct-slice-pie {
  fill: #1f77b4;
}
.ct-series-b .ct-bar,
.ct-series-b .ct-line,
.ct-series-b .ct-point,
.ct-series-b .ct-slice-donut {
  stroke: #ff7f0e;
}
.ct-series-b .ct-area,
.ct-series-b .ct-slice-pie {
  fill: #ff7f0e;
}
.ct-series-c .ct-bar,
.ct-series-c .ct-line,
.ct-series-c .ct-point,
.ct-series-c .ct-slice-donut {
  stroke: #2ca02c;
}
.ct-series-c .ct-area,
.ct-series-c .ct-slice-pie {
  fill: #2ca02c;
}
.ct-series-d .ct-bar,
.ct-series-d .ct-line,
.ct-series-d .ct-point,
.ct-series-d .ct-slice-donut {
  stroke: #d62728;
}
.ct-series-d .ct-area,
.ct-series-d .ct-slice-pie {
  fill: #d62728;
}
.ct-series-e .ct-bar,
.ct-series-e .ct-line,
.ct-series-e .ct-point,
.ct-series-e .ct-slice-donut {
  stroke: #9467bd;
}
.ct-series-e .ct-area,
.ct-series-e .ct-slice-pie {
  fill: #9467bd;
}
.ct-series-f .ct-bar,
.ct-series-f .ct-line,
.ct-series-f .ct-point,
.ct-series-f .ct-slice-donut {
  stroke: #8c564b;
}
.ct-series-f .ct-area,
.ct-series-f .ct-slice-pie {
  fill: #8c564b;
}
.ct-series-g .ct-bar,
.ct-series-g .ct-line,
.ct-series-g .ct-point,
.ct-series-g .ct-slice-donut {
  stroke: #e377c2;
}
.ct-series-g .ct-area,
.ct-series-g .ct-slice-pie {
  fill: #e377c2;
}
.ct-series-h .ct-bar,
.ct-series-h .ct-line,
.ct-series-h .ct-point,
.ct-series-h .ct-slice-donut {
  stroke: #7f7f7f;
}
.ct-series-h .ct-area,
.ct-series-h .ct-slice-pie {
  fill: #7f7f7f;
}
.ct-series-i .ct-bar,
.ct-series-i .ct-line,
.ct-series-i .ct-point,
.ct-series-i .ct-slice-donut {
  stroke: #bcbd22;
}
.ct-series-i .ct-area,
.ct-series-i .ct-slice-pie {
  fill: #bcbd22;
}
.ct-series-j .ct-bar,
.ct-series-j .ct-line,
.ct-series-j .ct-point,
.ct-series-j .ct-slice-donut {
  stroke: #17becf;
}
.ct-series-j .ct-area,
.ct-series-j .ct-slice-pie {
  fill: #17becf;
}
.ct-series-k .ct-bar,
.ct-series-k .ct-line,
.ct-series-k .ct-point,
.ct-series-k .ct-slice-donut {
  stroke: #eacf7d;
}
.ct-series-k .ct-area,
.ct-series-k .ct-slice-pie {
  fill: #eacf7d;
}
.ct-series-l .ct-bar,
.ct-series-l .ct-line,
.ct-series-l .ct-point,
.ct-series-l .ct-slice-donut {
  stroke: #86797d;
}
.ct-series-l .ct-area,
.ct-series-l .ct-slice-pie {
  fill: #86797d;
}
.ct-series-m .ct-bar,
.ct-series-m .ct-line,
.ct-series-m .ct-point,
.ct-series-m .ct-slice-donut {
  stroke: #b2c326;
}
.ct-series-m .ct-area,
.ct-series-m .ct-slice-pie {
  fill: #b2c326;
}
.ct-series-n .ct-bar,
.ct-series-n .ct-line,
.ct-series-n .ct-point,
.ct-series-n .ct-slice-donut {
  stroke: #6188e2;
}
.ct-series-n .ct-area,
.ct-series-n .ct-slice-pie {
  fill: #6188e2;
}
.ct-series-o .ct-bar,
.ct-series-o .ct-line,
.ct-series-o .ct-point,
.ct-series-o .ct-slice-donut {
  stroke: #a748ca;
}
.ct-series-o .ct-area,
.ct-series-o .ct-slice-pie {
  fill: #a748ca;
}
/* dragula.js */
.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
}
.gu-hide {
  display: none !important;
}
.gu-unselectable {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
.gu-transit {
  opacity: 0.2;
}
.dragula > * {
  cursor: move;
}
.dragula-vertical {
  height: 100%;
}
.dragula-vertical * + * {
  margin-top: 4px;
}
/* Tablesorter Altair Theme */
.tablesorter-altair {
  /*td.primary,
    tr.odd td.primary {
        color: #ddd;
        background-color: #165388;
    }
    tr.even {
        td {
            &.primary {
                color: #ddd;
                background-color: #195c93;
            }
            &.secondary {
                color: #ddd;
                background-color: #1D67A5;
            }
            &.tertiary {
                color: #ddd;
                background-color: #2073B7;
            }
        }
    }
    td.secondary,
    tr.odd td.secondary {
        color: #ddd;
        background-color: #185C9A;
    }
    td.tertiary,
    tr.odd td.tertiary {
        color: #ddd;
        background-color: #1B67AD;
    }*/
}
.tablesorter-altair .tablesorter-header-inner {
  position: relative;
  padding: 0 32px 0 0;
}
.tablesorter-altair .tablesorter-header-inner:after {
  position: absolute;
  right: 0;
  top: -3px;
  content: '\e164';
  display: block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  font-family: "Material Icons";
  color: #aaa;
}
.tablesorter-altair .sorter-false .tablesorter-header-inner {
  padding: 0;
}
.tablesorter-altair .header,
.tablesorter-altair .tablesorter-header {
  cursor: pointer;
}
.tablesorter-altair th {
  outline: 0 !important;
}
.tablesorter-altair .headerSortUp,
.tablesorter-altair .tablesorter-headerSortUp,
.tablesorter-altair .tablesorter-headerAsc {
  color: #7cb342;
}
.tablesorter-altair .headerSortUp .tablesorter-header-inner:after,
.tablesorter-altair .tablesorter-headerSortUp .tablesorter-header-inner:after,
.tablesorter-altair .tablesorter-headerAsc .tablesorter-header-inner:after {
  top: -2px;
  content: '\e313';
  color: #212121;
}
.tablesorter-altair .headerSortDown,
.tablesorter-altair .tablesorter-headerSortDown,
.tablesorter-altair .tablesorter-headerDesc {
  color: #7cb342;
}
.tablesorter-altair .headerSortDown .tablesorter-header-inner:after,
.tablesorter-altair .tablesorter-headerSortDown .tablesorter-header-inner:after,
.tablesorter-altair .tablesorter-headerDesc .tablesorter-header-inner:after {
  top: -2px;
  content: '\e316';
  color: #212121;
}
.tablesorter-altair thead .sorter-false {
  cursor: default;
}
.tablesorter-altair thead .sorter-false .tablesorter-header-inner:after {
  display: none;
}
.tablesorter-altair tbody > tr.even > td {
  background-color: rgba(0, 0, 0, 0.085);
}
.tablesorter-altair tbody > tr.row_highlighted > td {
  background: #e3f2fd;
}
.tablesorter-altair .tablesorter-processing {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-image: url(../img/spinners/spinner_small.gif) !important;
}
.tablesorter-altair caption {
  background-color: #fff;
}
.tablesorter-altair .tablesorter-filter-row td {
  padding: 8px 4px;
  line-height: normal;
  text-align: center;
  transition: line-height 0.1s ease;
}
.tablesorter-altair .tablesorter-filter-row .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.085);
}
.tablesorter-altair .tablesorter-filter-row.hideme * {
  height: 1px;
  min-height: 0;
  border: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}
.tablesorter-altair .tablesorter-filter-row.hideme td {
  /*** *********************************************** ***/
  /*** change this padding to modify the thickness     ***/
  /*** of the closed filter row (height = padding x 2) ***/
  padding: 2px;
  /*** *********************************************** ***/
  margin: 0;
  line-height: 0;
  cursor: pointer;
}
.tablesorter-altair input.tablesorter-filter,
.tablesorter-altair select.tablesorter-filter {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 4px;
  line-height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #212121;
  box-sizing: border-box;
  transition: height 0.1s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.tablesorter-altair .ts-align-wrap {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
.tablesorter-altair .ts-align-wrap,
.tablesorter-altair .ts-align-left,
.tablesorter-altair .ts-align-right {
  display: inline-block;
  box-sizing: border-box;
}
.tablesorter-altair .ts-align-left {
  text-align: right;
}
.tablesorter-altair .ts-align-right {
  text-align: left;
}
.tablesorter-altair td:nth-child(3) .ts-align-right i {
  color: #e53935;
}
.tablesorter-altair input[type="search"]::-webkit-search-decoration,
.tablesorter-altair input[type="search"]::-webkit-search-cancel-button,
.tablesorter-altair input[type="search"]::-webkit-search-results-button,
.tablesorter-altair input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.tablesorter .filtered {
  display: none;
}
.tablesorter .tablesorter-errorRow td {
  text-align: center;
  cursor: pointer;
  background-color: #e53935;
  color: #fff;
}
.tablesorter .remove-me {
  display: none;
}
.ts_pager .selectize-control {
  vertical-align: middle;
  display: inline-block;
  text-align: left;
  margin-top: -3px;
  margin-left: 4px;
}
.ts_pager .selectize-control .selectize-input {
  min-width: 64px;
}
/*!
* Waves v0.7.4
* http://fian.my.id/Waves
*
* Copyright 2014 Alfiana E. Sibuea and other contributors
* Released under the MIT license
* https://github.com/fians/Waves/blob/master/LICENSE
*/
.waves-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: all 500ms ease-out;
  transition-property: transform, opacity;
  transform: scale(0) translate(0, 0);
  pointer-events: none;
}
.waves-effect.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.55);
}
.waves-effect.md-btn-flat {
  background: none;
}
.waves-effect.waves-default .waves-ripple {
  background: rgba(153, 153, 153, 0.2);
}
.waves-effect.md-btn-flat-primary .waves-ripple {
  background: rgba(33, 150, 243, 0.4);
}
.waves-effect.md-btn-flat-danger .waves-ripple {
  background: rgba(229, 57, 53, 0.4);
}
.waves-effect.md-btn-flat-warning .waves-ripple {
  background: rgba(255, 160, 0, 0.4);
}
.waves-effect.md-btn-flat-success .waves-ripple {
  background: rgba(124, 179, 66, 0.4);
}
.waves-notransition {
  transition: none !important;
}
.waves-button,
.waves-circle {
  transform: translateZ(0);
}
.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}
.waves-input-wrapper.waves-button {
  padding: 0;
}
.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
}
.waves-float {
  -webkit-mask-image: none;
  transition: all 300ms;
}
.waves-block {
  display: block;
}
/* Firefox Bug: link not triggered */
a.waves-effect .waves-ripple {
  z-index: -1;
}
.enjoyhint {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
  overflow: hidden;
}
.enjoyhint_hide {
  display: none;
}
.enjoyhint_disable_events {
  position: absolute;
  width: 2000px;
  height: 1500px;
  z-index: 2010;
  pointer-events: all;
}
@media only screen and (max-width: 767px) {
  .enjoyhint_disable_events {
    width: 100%;
    height: 100%;
  }
}
.enjoyhint_next_btn,
.enjoyhint_skip_btn,
.enjoyhint_btn {
  position: absolute;
  z-index: 2020;
  pointer-events: all;
  box-sizing: content-box;
  width: 100px;
  height: 46px;
  cursor: pointer;
  margin: 0 auto;
  border-radius: 3px;
  font: 500 20px / 46px "Roboto", sans-serif;
  text-align: center;
  text-overflow: clip;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
}
.enjoyhint_next_btn {
  color: #212121;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.enjoyhint_next_btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.enjoyhint_next_btn:active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  transition: none;
}
@media only screen and (max-width: 767px) {
  .enjoyhint_next_btn {
    left: 20px !important;
  }
}
.enjoyhint_skip_btn {
  color: #29b6f6;
}
.enjoyhint_skip_btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
.enjoyhint_skip_btn:active {
  background: rgba(0, 0, 0, 0.1);
  transition: none;
}
@media only screen and (max-width: 767px) {
  .enjoyhint_skip_btn {
    right: 20px !important;
    left: auto !important;
  }
}
.enjoyhint_close_btn {
  display: inline-block;
  position: absolute;
  z-index: 2020;
  pointer-events: all;
  box-sizing: content-box;
  width: 0.3em;
  height: 0.3em;
  border-radius: 1em;
  font: 400 8em / normal Arial, Helvetica, sans-serif;
  color: #000000;
  text-overflow: clip;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.enjoyhint_close_btn:before {
  display: inline-block;
  box-sizing: content-box;
  width: 73%;
  height: 2px;
  position: absolute;
  content: "";
  top: 48%;
  left: 14%;
  border: none;
  font: normal 100% / normal Arial, Helvetica, sans-serif;
  color: #000000;
  text-overflow: clip;
  background: #fff;
  text-shadow: none;
  transform: rotateZ(45deg);
}
.enjoyhint_close_btn:after {
  display: inline-block;
  box-sizing: content-box;
  width: 73%;
  height: 2px;
  position: absolute;
  content: "";
  top: 46%;
  left: 15%;
  border: none;
  font: normal 100% / normal Arial, Helvetica, sans-serif;
  color: #000000;
  text-overflow: clip;
  background: #fff;
  text-shadow: none;
  transform: rotateZ(-45deg);
}
.enjoyhint_close_btn:hover {
  color: #ffffff;
  border-color: #e53935;
  cursor: pointer;
}
.enjoyhint_close_btn:active {
  border: 2px solid #fff;
  transition: none;
}
.enjoyhint_btn {
  box-sizing: content-box;
  width: 150px;
  height: 40px;
  cursor: pointer;
  margin: 0 auto;
  border: 2px solid #1ecd97;
  border-radius: 40px;
  font: normal normal normal 17px/40px "Advent Pro", Helvetica, sans-serif;
  color: #1ecd97;
  text-align: center;
  text-overflow: clip;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
}
.enjoyhint_btn:hover {
  color: #ffffff;
  background: #1ecd97;
}
.enjoyhint_btn:active {
  border: 2px solid #21e0a3;
  background: #21e0a3;
  transition: none;
}
.enjoyhint div.canvas-container {
  position: absolute;
}
.enjoyhint_canvas {
  position: absolute;
  z-index: 2010;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.enjoyhint_svg_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2010;
  transition: opacity 400ms cubic-bezier(0.42, 0, 0.58, 1);
}
.enjoyhint_svg_wrapper svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.enjoyhint_svg_transparent .enjoyhint_svg_wrapper,
.enjoyhint_svg_transparent .enjoy_hint_label {
  opacity: 0;
}
.enjoy_hint_label {
  position: absolute;
  color: #fff;
  z-index: 2020;
  font: 400 22px / 32px "Roboto", sans-serif;
  transition: opacity 400ms cubic-bezier(0.42, 0, 0.58, 1);
}
.enjoy_hint_label .material-icons {
  color: #fff;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .enjoy_hint_label {
    left: 20px !important;
  }
}
#kinetic_container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
div.kineticjs-content {
  position: absolute !important;
}
.enjoyhint_disable_events {
  position: fixed;
}
.cr_preview {
  overflow: hidden;
  border: 1px solid #555;
  margin: 8px 8px 8px 0;
}
.cr_preview_lg {
  width: 264px;
  height: 148px;
}
.cr_preview_md {
  width: 140px;
  height: 78px;
}
.cr_preview_sm {
  width: 68px;
  height: 48px;
}
.cr_preview_xs {
  width: 36px;
  height: 36px;
}
.canvasModalImage {
  margin: 0 auto;
  text-align: center;
}
.canvasModalImage > * {
  border: 1px solid #ccc;
  padding: 4px;
}
.context-menu-list {
  border: none;
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.context-menu-list .context-menu-item {
  padding: 5px 32px;
  font-size: 14px;
  color: #212121;
}
.context-menu-list .context-menu-hover {
  background: rgba(0, 0, 0, 0.085);
  color: #212121;
}
.context-menu-list .context-menu-material > .material-icons {
  position: absolute;
  left: 7px;
  top: 5px;
  font-size: 18px;
}
.context-menu-list .context-menu-separator {
  margin: 8px 0;
  padding: 0;
}
.context-menu-list .context-menu-disabled,
.context-menu-list .context-menu-disabled > .material-icons {
  color: #bbb;
}
.echart {
  min-height: 380px;
  height: 100%;
}
.echart-large {
  min-height: 460px;
}
.listNav {
  display: block;
  position: relative;
}
.listNavWrapper > div,
.listNavWrapper > li {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.listNavWrapper .listNavHide {
  opacity: 0;
  transform: scale(0.2);
  display: none;
}
.listNavWrapper .listNavShow {
  display: block;
  opacity: 1;
  transform: scale(1);
}
.letterCountShow {
  display: block;
}
.ln-letters {
  padding-top: 8px;
}
.ln-letters:before,
.ln-letters:after {
  content: " ";
  display: table;
}
.ln-letters:after {
  clear: both;
}
.ln-letters:before,
.ln-letters:after {
  content: " ";
  display: table;
}
.ln-letters:after {
  clear: both;
}
.ln-letters a {
  font-size: 13px;
  display: block;
  float: left;
  padding: 4px 6px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  background: #fff;
  text-align: center;
  color: #212121;
  min-width: 32px;
  min-height: 32px;
  line-height: 32px;
  margin: -1px 0 0 -1px;
  text-transform: uppercase;
}
.ln-letters a:hover,
.ln-letters .ln-selected {
  background-color: #2196f3;
  color: #fff;
}
.ln-letters .ln-disabled {
  color: #bdbdbd !important;
  background: #f5f5f5 !important;
}
.ln-letter-count {
  position: absolute;
  padding: 4px 0;
  text-align: center;
  font-size: 11px;
  color: #212121;
  margin-left: -2px;
}
.ln-letter-count.listNavHide {
  display: none;
}
.tip-yellowsimple {
  background: #fff;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  padding: 16px;
  min-width: 240px;
  z-index: 9999;
  border-radius: 3px;
}
.tip-yellowsimple .tip-inner > div > label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 15px;
}
.editable-footer {
  margin-top: 16px;
  text-align: right;
}
.editable-container .md-input {
  display: inline-block;
  transition: all 280ms ease;
}
.editable-container .md-input:focus {
  border-bottom-color: #1976d2 !important;
}
.editable-container select:disabled {
  display: block;
  width: 100%;
  height: 42px;
  border-width: 0 0 1px 0;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.editable-container textarea {
  height: 120px;
  resize: vertical;
  overflow-y: auto;
}
.editable-container .select2-container {
  width: 240px;
}
.editable-container .select2-container .select2-choice {
  background: none;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  border-radius: 0;
}
.editable-container .select2-container .select2-choice .select2-arrow {
  background: none;
  border: none;
}
.editable-container .select2-container-multi .select2-choices {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  box-shadow: none;
}
.editable-container .select2-container-multi .select2-choices .select2-search-choice {
  background: #eeeeee;
  border: none;
  border-radius: 18px;
  padding: 4px 24px 4px 12px;
  box-shadow: none;
  font-size: 13px;
}
.editable-container .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 4px;
}
.editable-inline {
  background: #fff;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 8px;
}
.editable-address + div {
  margin-top: 12px;
}
.editable-address label > span,
.editable-address label > input {
  display: inline-block !important;
}
.editable-address label > span {
  width: 80px;
}
.editable-address label > input {
  width: auto !important;
}
.select2-drop {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-color: transparent !important;
}
.select2-results {
  margin-top: 8px;
}
.select2-results .select2-highlighted {
  background: rgba(0, 0, 0, 0.085);
  color: #212121;
}
.select2-search input {
  border-width: 0 0 1px;
  box-shadow: none;
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  box-shadow: none;
}
.ui-datepicker,
.ui-datepicker .ui-datepicker-header {
  border: none;
}
.ui-datepicker th {
  font: 400 13px / 15px "Roboto", sans-serif;
  text-transform: uppercase;
  color: #727272;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  background: transparent !important;
  border-color: transparent !important;
  font-weight: 400 !important;
  color: #727272 !important;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  background: transparent;
  display: block;
  position: relative;
  left: 0;
  top: 0;
  margin: 0;
  width: 24px;
  height: 24px;
}
.ui-datepicker .ui-datepicker-prev span:after,
.ui-datepicker .ui-datepicker-next span:after {
  position: absolute;
  top: 2px;
  display: block;
  font-family: 'FontAwesome';
  color: #727272 !important;
  text-indent: 0;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-prev span:after {
  left: 0;
  content: '\f053';
}
.ui-datepicker .ui-datepicker-next span:after {
  right: 0;
  content: '\f054';
}
.ui-datepicker tbody td a,
.ui-datepicker tbody td span {
  box-sizing: border-box;
  padding: 4px;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 24px;
  display: block;
  border-radius: 50%;
}
.ui-datepicker tbody td a:hover,
.ui-datepicker tbody td span:hover {
  background: rgba(0, 0, 0, 0.085);
}
.ui-datepicker select {
  border-width: 0 0 1px;
}
.ui-datepicker select + select {
  margin-left: 4px !important;
}
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default {
  border: none;
  background: transparent;
}
.ui-datepicker .ui-state-active {
  background: #009688 !important;
  color: #fff;
}
.editableform {
  margin-bottom: 0;
}
.editableform .control-group {
  margin-bottom: 0;
  white-space: nowrap;
  line-height: 20px;
}
.editableform .form-control {
  width: auto;
}
.editable-buttons.editable-buttons-bottom {
  display: block;
}
.editable-buttons button.ui-button-icon-only {
  height: 24px;
  width: 30px;
}
.editable-input .editableform-loading {
  background-position: left 5px;
}
.editable-input .add-on .icon-th {
  margin-top: 3px;
  margin-left: 1px;
}
.editableform-loading {
  background: url('../img/spinners/spinner.gif') center center no-repeat;
  height: 32px;
  margin: 24px 0;
}
.editable-error-block {
  margin: 8px 0 0 0;
  white-space: normal;
  text-align: center;
}
.editable-error-block.ui-state-error {
  padding: 3px;
}
.editable-error {
  color: #e53935;
}
.editableform .editable-date {
  padding: 0;
  margin: 0;
  float: left;
}
.editable-checklist label {
  white-space: nowrap;
}
.editable-checklist label input[type="checkbox"],
.editable-checklist label span {
  vertical-align: middle;
  margin: 0;
}
.editable-checklist > div + div {
  margin-top: 8px;
}
.editable-wysihtml5 {
  width: 566px;
  height: 250px;
}
.editable-clear {
  clear: both;
  font-size: 0.9em;
  text-decoration: none;
  text-align: right;
}
.editable-clear-x {
  display: block;
  width: 24px;
  height: 42px;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
}
.editable-clear-x:after {
  opacity: 0.6;
  content: '\e5cd';
  font-family: "Material Icons";
  font-size: 18px;
  position: absolute;
  top: 11px;
  right: 8px;
  display: block;
  color: #727272;
  cursor: pointer;
}
.editable-clear-x:hover:after {
  opacity: 1;
}
.editable-pre-wrapped {
  white-space: pre-wrap;
}
.editable-container.editable-popup {
  max-width: none !important;
}
.editable-container.popover {
  width: auto;
}
.editable-container.editable-inline {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
.editable-container.ui-widget {
  font-size: inherit;
  z-index: 9990;
}
.editable-click,
a.editable-click,
a.editable-click:hover {
  text-decoration: none;
  border-bottom: dashed 1px #0088cc;
}
.editable-click.editable-disabled,
a.editable-click.editable-disabled,
a.editable-click.editable-disabled:hover {
  color: #585858;
  cursor: default;
  border-bottom: none;
}
.editable-empty,
.editable-empty:hover,
.editable-empty:focus {
  font-style: italic;
  color: #DD1144;
  text-decoration: none;
}
.editable-unsaved {
  font-weight: bold;
}
.editable-bg-transition {
  transition: background-color 1400ms ease-out;
}
.form-horizontal .editable {
  padding-top: 5px;
  display: inline-block;
}
.select2-container--default .select2-selection--single {
  border-color: rgba(0, 0, 0, 0.12);
  border-radius: 0;
  height: 40px;
  outline: none !important;
  box-sizing: border-box;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  width: 18px;
  position: relative;
  text-indent: -9999em;
  height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__clear:after {
  text-indent: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  color: #727272;
  content: '\e5cd';
  font-family: "Material Icons";
  font-size: 18px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  display: block;
  position: absolute;
  top: 8px;
  right: 2px;
  color: #727272;
  content: '\e5c5';
  font-family: "Material Icons";
  font-size: 18px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-width: 0 0 1px;
  border-color: rgba(0, 0, 0, 0.12);
  height: 32px;
  line-height: 32px;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-bottom-color: #1976d2;
}
.select2-container--default .select2-selection--multiple {
  border-color: rgba(0, 0, 0, 0.12);
  border-radius: 0;
  min-height: 40px;
  padding: 6px 8px 3px;
  box-sizing: border-box;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  border-radius: 18px;
  padding: 3px 2px 2px 8px;
  font-size: 14px;
  border: none;
  margin-top: 0;
  margin-bottom: 5px;
  background: #f2f2f2;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding-left: 0;
  display: block;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  float: right;
  text-indent: -9999em;
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: 4px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after {
  text-indent: 0;
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  color: #727272;
  content: '\e5cd';
  font-family: "Material Icons";
  font-size: 18px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: rgba(0, 0, 0, 0.12);
}
.select2-container--default .select2-results__group {
  font-size: 12px;
  color: #aaa;
  padding-top: 8px;
  border-bottom: rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  font-weight: 400;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(0, 0, 0, 0.085);
  color: inherit;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(0, 0, 0, 0.085);
}
.select2-container--default .select2-results > .select2-results__options[aria-multiselectable=true] .select2-results__option[aria-selected=true] {
  display: none;
}
.select2-container--default .select2-results__option .select2-results__option {
  font-size: 15px;
}
.select2-dropdown {
  border-radius: 0;
  border-color: transparent;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
/*
 * Dropzone CSS
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
.dropzone {
  position: relative;
  min-height: 150px;
  border: 2px dashed rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 16px;
  border-radius: 3px;
}
.dropzone,
.dropzone * {
  box-sizing: border-box;
}
.dropzone.dz-clickable {
  cursor: pointer !important;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
  cursor: default;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 20%;
  left: 0;
  opacity: 0;
  font-size: 12px;
  min-width: 100%;
  max-width: 100%;
  padding: 4px;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  margin-bottom: 8px;
  padding: 0 4px;
  font-size: 12px;
  height: 18px;
  line-height: 16px;
  border: 1px solid transparent;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 12px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  margin-top: 4px;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview .dz-progress {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.12);
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
          animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #e53935;
  padding: 8px;
  color: #fff;
  word-break: break-word;
}
.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #e53935;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error .dz-error-message:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview.dz-error .dz-error-message,
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  display: block;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
          animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
          animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
  position: absolute;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  display: block;
  top: 50%;
}
.dropzone .dz-preview .dz-error-mark svg,
.dropzone .dz-preview .dz-success-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
/* 7. partials (header,sidebars,top bar) ============= */
/* main header */
#header_main {
  background: #1976d2;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 0 25px;
  height: 48px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1104;
}
#header_main:before,
#header_main:after {
  content: " ";
  display: table;
}
#header_main:after {
  clear: both;
}
#header_main:before,
#header_main:after {
  content: " ";
  display: table;
}
#header_main:after {
  clear: both;
}
#header_main .uk-navbar {
  border: none;
  background: none;
}
#header_main .uk-navbar .uk-navbar-brand {
  text-shadow: none;
  color: #fff;
  line-height: 52px;
  height: 48px;
  font-size: 18px;
  padding: 0;
  text-transform: uppercase;
}
#header_main .uk-navbar .uk-navbar-brand + * {
  margin-left: 25px;
}
#header_main .uk-navbar .uk-navbar-nav {
  position: relative;
}
#header_main .uk-navbar .uk-navbar-nav > li {
  position: static;
}
#header_main .uk-navbar .uk-navbar-nav > li > a {
  color: #fff;
  text-shadow: none;
  border: none;
  line-height: 44px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  height: 48px;
  z-index: auto;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #header_main .uk-navbar .uk-navbar-nav > li > a {
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  #header_main .uk-navbar .uk-navbar-nav > li > a {
    padding: 2px 10px 0;
  }
}
#header_main .uk-navbar .uk-navbar-nav > li > a:focus,
#header_main .uk-navbar .uk-navbar-nav > li > a:active {
  background: none;
}
#header_main .uk-navbar .uk-navbar-nav > li > a:after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  content: '';
  display: block;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  margin-left: -6px;
  z-index: -1;
  transition: all 100ms ease-in 0ms;
}
#header_main .uk-navbar .uk-navbar-nav > li > a.navbar_link {
  line-height: 48px;
}
#header_main .uk-navbar .uk-navbar-nav > li:hover > a,
#header_main .uk-navbar .uk-navbar-nav > li:focus > a,
#header_main .uk-navbar .uk-navbar-nav > li.uk-open > a,
#header_main .uk-navbar .uk-navbar-nav > li.uk-active > a {
  background: none;
}
#header_main .uk-navbar .uk-navbar-nav > li.uk-open > a {
  position: relative;
}
#header_main .uk-navbar .uk-navbar-nav > li.uk-open > a:after {
  border-bottom-color: #fff;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1104;
}
#header_main .uk-navbar .uk-navbar-nav > li .uk-dropdown {
  margin-top: 1px;
  max-height: 300px;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
}
#header_main .uk-navbar .uk-navbar-nav > li .uk-dropdown .md-list {
  margin-left: -10px;
}
#header_main .uk-navbar .uk-navbar-nav > li .uk-dropdown .md-list > li {
  margin-right: 16px;
}
#header_main .uk-navbar .uk-navbar-nav > li .uk-dropdown .uk-switcher {
  max-height: 216px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#header_main .user_actions a.user_action_image {
  position: relative;
  line-height: 48px !important;
}
#header_main .user_actions .user_action_icon {
  display: block;
  position: relative;
  text-align: center;
  padding-top: 4px;
}
#header_main .user_actions .user_action_icon:hover,
#header_main .user_actions .user_action_icon:focus {
  text-decoration: none;
}
#header_main .user_actions .user_action_icon > .uk-badge {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 8px;
  min-width: 20px;
  padding: 1px 4px;
  line-height: 14px;
  border-radius: 2px;
}
#header_main .sSwitch {
  cursor: pointer;
  margin: 12px 0 0;
  padding: 12px 0;
  position: relative;
}
#header_main .sSwitch:before {
  content: '';
  position: absolute;
  top: 4px;
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.6);
  display: block;
  opacity: 0;
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
#header_main .sSwitch,
#header_main .sSwitch .sSwitchIcon {
  display: block;
  height: 2px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 20px;
}
#header_main .sSwitch .sSwitchIcon {
  will-change: transform;
}
#header_main .sSwitch .sSwitchIcon,
#header_main .sSwitch .sSwitchIcon:before,
#header_main .sSwitch .sSwitchIcon:after {
  background: #fff;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
#header_main .sSwitch .sSwitchIcon:before,
#header_main .sSwitch .sSwitchIcon:after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
  z-index: -1;
}
#header_main .sSwitch .sSwitchIcon:before {
  top: 6px;
}
#header_main .sSwitch .sSwitchIcon:after {
  top: -6px;
}
#header_main .sSwitch.sSwitch_left {
  float: left;
  margin-right: 16px;
}
#header_main .sSwitch.sSwitch_left:before {
  left: -8px;
}
#header_main .sSwitch.sSwitch_left .sSwitchIcon {
  transform: rotate(-180deg);
}
#header_main .sSwitch.sSwitch_left .sSwitchIcon:before,
#header_main .sSwitch.sSwitch_left .sSwitchIcon:after {
  left: 0;
}
#header_main .sSwitch.sSwitch_right {
  float: right;
  margin-left: 30px;
}
#header_main .sSwitch.sSwitch_right:before {
  right: -8px;
}
@media only screen and (max-width: 767px) {
  #header_main .sSwitch.sSwitch_right {
    margin-left: 24px;
  }
}
#header_main .sSwitch.sSwitch_right .sSwitchIcon {
  transform: rotate(-180deg);
}
#header_main .sSwitch.sSwitch_right .sSwitchIcon:before,
#header_main .sSwitch.sSwitch_right .sSwitchIcon:after {
  right: 0;
}
#header_main .sSwitch.sSwitch_right.sidebar_secondary_check {
  display: none;
}
#header_main .header_main_search_form {
  display: none;
  position: relative;
  padding: 2px 46px 0 40px;
  margin: 5px 0;
}
#header_main .header_main_search_form form {
  display: block;
  position: static;
}
#header_main .header_main_search_form .md-icon,
#header_main .header_main_search_form .md-icon:hover,
#header_main .header_main_search_form .md-icon:focus {
  color: #fff;
}
#header_main .header_main_search_form [data-uk-autocomplete] .uk-dropdown {
  left: 40px;
  right: 46px;
  width: auto;
}
#header_main .header_main_search_input {
  border: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  vertical-align: top;
  padding: 6px 15px;
  font-size: 16px;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
#header_main .header_main_search_btn {
  position: absolute;
  top: 0;
  right: -2px;
  cursor: pointer;
}
#header_main .header_main_search_close {
  position: absolute;
  top: 3px;
  left: 2px;
}
.header_double_height:after {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 59px;
  background: #1976d2;
  content: '';
  display: block;
}
.header_double_height #header_main {
  box-shadow: none;
  position: absolute;
}
.header_double_height #page_content {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}
.header_double_height #page_content_inner {
  padding: 0;
}
.header_double_height .md-card-single {
  position: relative;
  z-index: 1;
  transform-origin: 50% 50%;
}
.header_double_height .md-card-single .md-card-content {
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.header_double_height .md-list-outside-wrapper {
  margin-top: 48px;
}
.main_logo_top {
  float: left;
  line-height: 48px;
  min-width: 240px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .main_logo_top {
    min-width: inherit;
    margin-right: 24px;
  }
}
.main_logo_top > a {
  display: inline-block;
  line-height: 48px;
}
.main_logo_top > a img {
  max-height: 48px;
}
.header_full #sidebar_main {
  top: 48px;
  height: auto;
}
.header_full #header_main {
  margin-left: 0 !important;
  z-index: 1214;
}
.header_full.sidebar_mini #sidebar_main .menu_section > ul > li > ul {
  top: 48px;
}
.header_full.sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
  top: 48px;
}
/* main sidebar */
#sidebar_main {
  width: 240px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  position: fixed;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translate3d(-240px, 0, 0);
  z-index: 1204;
  background: #fff;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
#sidebar_main,
#sidebar_main:before,
#sidebar_main:after,
#sidebar_main *,
#sidebar_main *:before,
#sidebar_main *:after {
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #sidebar_main {
    width: 280px;
    transform: translate3d(-280px, 0, 0);
  }
}
#sidebar_main .menu_section .menu_heading {
  font: 400 12px / 16px "Roboto", sans-serif;
  margin: 0 0 12px;
  padding: 6px 6px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  color: #212121;
}
#sidebar_main .menu_section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#sidebar_main .menu_section ul > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
#sidebar_main .menu_section > ul > li > a {
  font: 500 14px / 25px "Roboto", sans-serif;
  color: #212121;
  padding: 8px 20px;
  display: block;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #sidebar_main .menu_section > ul > li > a {
    font-size: 16px;
  }
}
#sidebar_main .menu_section > ul > li > a:hover {
  text-decoration: none;
}
#sidebar_main .menu_section > ul > li > a > .menu_icon {
  width: 48px;
  text-align: left;
  display: inline-block;
  color: #727272;
}
#sidebar_main .menu_section > ul > li > a > .menu_icon .material-icons {
  font-size: 24px;
  vertical-align: top;
}
#sidebar_main .menu_section > ul > li > a .menu_title {
  display: inline-block;
}
#sidebar_main .menu_section > ul > li > a .uk-badge {
  padding: 1px 4px;
  text-transform: uppercase;
  font-size: 10px;
  position: absolute;
  left: 34px;
  top: 0;
}
#sidebar_main .menu_section > ul > li.act_section.submenu_trigger > a {
  position: relative;
}
#sidebar_main .menu_section > ul > li.act_section.submenu_trigger > a:before {
  transform: rotate(-180deg);
}
#sidebar_main .menu_section > ul > li.current_section > a > .menu_icon .material-icons {
  color: #7cb342;
}
#sidebar_main .menu_section > ul > li.current_section > a .menu_title {
  color: #7cb342;
}
#sidebar_main .menu_section > ul > li ul {
  margin: 0;
  display: none;
}
#sidebar_main .menu_section > ul > li ul a {
  padding: 8px 10px 8px 72px;
  display: block;
  font: 400 13px / 18px "Roboto", sans-serif;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  #sidebar_main .menu_section > ul > li ul a {
    font-size: 15px;
    line-height: 20px;
  }
}
#sidebar_main .menu_section > ul > li ul a:hover {
  text-decoration: none;
}
#sidebar_main .menu_section > ul > li ul li.act_item > a {
  color: #7cb342;
  font-weight: 500;
}
#sidebar_main .menu_section > ul > li ul li.menu_subtitle {
  font-weight: 500;
  font-size: 13px;
  color: #aaa;
  padding: 16px 0 4px 72px;
}
#sidebar_main .menu_section > ul > li ul .submenu-icon {
  width: 24px;
  text-align: left;
  display: inline-block;
  color: #727272;
}
#sidebar_main .menu_section > ul > li ul .submenu-icon .material-icons {
  font-size: 18px;
  vertical-align: top;
}
#sidebar_main .menu_section > ul > li.submenu_trigger > a {
  position: relative;
}
#sidebar_main .menu_section > ul > li.submenu_trigger > a:before {
  position: absolute;
  right: 8px;
  top: 9px;
  content: '\e313';
  font-family: "Material Icons";
  font-size: 18px;
  display: block;
  color: #727272;
  transition: transform 280ms;
}
#sidebar_main .menu_section > ul > li.submenu_trigger li ul {
  margin-left: 16px;
}
#sidebar_main .menu_section > ul > li.submenu_trigger li.submenu_trigger > a {
  position: relative;
  padding-right: 32px;
}
#sidebar_main .menu_section > ul > li.submenu_trigger li.submenu_trigger > a:before {
  position: absolute;
  right: 8px;
  top: 7px;
  content: '\e5c5';
  font-family: "Material Icons";
  font-size: 18px;
  display: block;
  color: #727272;
  transition: transform 280ms;
}
#sidebar_main .menu_section > ul > li.submenu_trigger li.submenu_trigger.act_section > a:before {
  transform: rotate(-180deg);
}
#sidebar_main .sidebar_main_header {
  height: 89px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  background-image: url("../img/sidebar_head_bg.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  position: relative;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 192), only screen and (min-resolution: 192dppx), only screen and (min-resolution: 2dppx) {
  #sidebar_main .sidebar_main_header {
    background-image: url("../img/sidebar_head_bg@2x.png");
    background-size: 280px 90px;
  }
}
#sidebar_main .sidebar_main_header .sidebar_logo {
  /*height: 48px;*/
  line-height: 48px;
  overflow: hidden;
}
#sidebar_main .sidebar_main_header .sidebar_logo a {
  display: inline-block;
  /*margin-left: 20px;*/
	padding: 20px;
	background: #fff;
}
#sidebar_main .sidebar_main_header .sidebar_logo a .logo_light {
  display: none;
}
#sidebar_main .sidebar_main_header .sidebar_actions {
  margin: 0 20px;
}
#sidebar_main .sidebar_main_header .sidebar_actions:before,
#sidebar_main .sidebar_main_header .sidebar_actions:after {
  content: " ";
  display: table;
}
#sidebar_main .sidebar_main_header .sidebar_actions:after {
  clear: both;
}
#sidebar_main .sidebar_main_header .sidebar_actions:before,
#sidebar_main .sidebar_main_header .sidebar_actions:after {
  content: " ";
  display: table;
}
#sidebar_main .sidebar_main_header .sidebar_actions:after {
  clear: both;
}
#sidebar_main .sidebar_main_header .sidebar_actions .selectize-control {
  float: left;
  height: 40px;
}
#sidebar_main .sidebar_main_header .sidebar_actions .selectize-control .selectize-input:after {
  margin-top: -13px !important;
  right: 32px;
}
#sidebar_main .sidebar_main_header .sidebar_actions .selectize-input {
  width: 48px;
  border: none;
  padding: 6px 0;
  background: transparent;
}
#sidebar_main .sidebar_main_header .sidebar_actions .selectize-input input {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
#sidebar_main .sidebar_main_header .sidebar_actions .selectize-dropdown {
  width: 160px !important;
  margin-left: -8px;
}
#sidebar_main .sidebar_main_header .sidebar_actions .selectize-dropdown .item-icon {
  margin-right: 8px;
}
#sidebar_main .sSidebar_show {
  display: none !important;
}
#page_content,
#header_main,
#top_bar {
  will-change: margin;
  transition: margin 280ms;
}
.sidebar_main_active #sidebar_main {
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 1219px) {
  .sidebar_main_active #sidebar_main {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 2px 4px 8px rgba(0, 0, 0, 0.28);
  }
}
@media only screen and (min-width: 1220px) {
  .sidebar_main_active #page_content,
  .sidebar_main_active #header_main,
  .sidebar_main_active #top_bar {
    margin-left: 240px;
  }
}
@media only screen and (max-width: 1219px) {
  .sidebar_main_active #page_content:before {
    opacity: 1;
    z-index: 1184;
  }
}
.sidebar_main_active:not(.steps) .sSwitch_left .sSwitchIcon:before,
.sidebar_main_active:not(.steps) .sSwitch_left .sSwitchIcon:after {
  top: 0 !important;
}
.sidebar_main_active #header_main .sSwitch.sSwitch_left:before {
  opacity: 1;
}
.sidebar_main_active #header_main .sSwitch.sSwitch_left .sSwitchIcon {
  transform: rotate(0deg);
}
.sidebar_main_active #header_main .sSwitch.sSwitch_left .sSwitchIcon:before,
.sidebar_main_active #header_main .sSwitch.sSwitch_left .sSwitchIcon:after {
  width: 12px;
}
.sidebar_main_active #header_main .sSwitch.sSwitch_left .sSwitchIcon:before {
  top: 4px;
  transform: rotate(35deg);
  transform-origin: left top;
}
.sidebar_main_active #header_main .sSwitch.sSwitch_left .sSwitchIcon:after {
  top: -4px;
  transform: rotate(-35deg);
  transform-origin: left bottom;
}
@media only screen and (min-width: 1220px) {
  .sidebar_main_open #sidebar_main {
    transform: translate3d(0, 0, 0);
  }
  .sidebar_main_open #page_content,
  .sidebar_main_open #header_main,
  .sidebar_main_open #top_bar {
    margin-left: 240px;
  }
  .sidebar_main_open:not(.steps) .sSwitch_left .sSwitchIcon:before,
  .sidebar_main_open:not(.steps) .sSwitch_left .sSwitchIcon:after {
    top: 0 !important;
  }
  .sidebar_main_open #header_main .sSwitch.sSwitch_left:before {
    opacity: 1;
  }
  .sidebar_main_open #header_main .sSwitch.sSwitch_left .sSwitchIcon {
    transform: rotate(0deg);
  }
  .sidebar_main_open #header_main .sSwitch.sSwitch_left .sSwitchIcon:before,
  .sidebar_main_open #header_main .sSwitch.sSwitch_left .sSwitchIcon:after {
    width: 12px;
  }
  .sidebar_main_open #header_main .sSwitch.sSwitch_left .sSwitchIcon:before {
    top: 4px;
    transform: rotate(35deg);
    transform-origin: left top;
  }
  .sidebar_main_open #header_main .sSwitch.sSwitch_left .sSwitchIcon:after {
    top: -4px;
    transform: rotate(-35deg);
    transform-origin: left bottom;
  }
}
@media only screen and (max-width: 1219px) {
  .sidebar_main_hiding #page_content:before {
    opacity: 0;
    z-index: 1109;
  }
}
/* mini sidebar */
.sidebar_mini {
  /* header full width */
}
.sidebar_mini #sidebar_main {
  width: 60px;
  background: #fff;
  margin-left: 0;
  transform: none;
  left: 0;
}
.sidebar_mini #sidebar_main .sidebar_main_header {
  background-position: 0 0;
}
.sidebar_mini #sidebar_main .sidebar_main_header .sidebar_logo a {
  margin-left: 0;
  text-align: center;
  display: block;
}
.sidebar_mini #sidebar_main .sidebar_main_header .sidebar_actions {
  margin: 0 8px;
}
.sidebar_mini #sidebar_main .sidebar_main_header .sidebar_actions .selectize-control {
  padding-left: 13px;
}
.sidebar_mini #sidebar_main .sidebar_main_header .sidebar_actions .selectize-control .selectize-input {
  width: auto;
  text-align: center;
}
.sidebar_mini #sidebar_main .sidebar_main_header .sidebar_actions .selectize-control .selectize-input:after {
  display: none;
}
.sidebar_mini #sidebar_main .menu_section > ul > li {
  position: relative;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > a {
  padding: 0;
  display: block;
  height: 42px;
  text-align: center;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > a .menu_icon {
  display: inline-block;
  text-align: center;
  height: 48px;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > a .menu_icon .material-icons {
  line-height: 42px;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > a > .menu_title {
  text-align: left;
  position: fixed;
  left: 59px;
  top: 0;
  width: 202px;
  display: none;
  padding: 0 16px 0 17px;
  line-height: 50px;
  height: 48px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: #7cb342;
  color: #fff;
  z-index: 1124;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > a .uk-badge {
  left: 4px;
}
.sidebar_mini #sidebar_main .menu_section > ul > li.sidebar_submenu > a:before {
  position: absolute;
  right: 2px;
  top: 10px;
  content: '\e315';
  font-family: "Material Icons";
  font-size: 14px;
  display: block;
  color: #727272;
}
.sidebar_mini #sidebar_main .menu_section > ul > li.sidebar_submenu_act > a .menu_icon .material-icons {
  color: #7cb342;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > ul {
  position: fixed;
  top: 0;
  bottom: 0;
  margin-top: 48px;
  overflow-y: auto;
  overflow-x: hidden;
  left: 59px;
  background: #fff;
  z-index: 1114;
  border-left: 2px solid #7cb342;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
}
.sidebar_mini #sidebar_main .menu_section > ul > li > ul li {
  width: 200px;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > ul li a {
  padding: 8px 16px;
}
.sidebar_mini #sidebar_main .menu_section > ul > li > ul li.menu_subtitle {
  padding: 16px 16px 8px;
}
.sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu {
  background: #7cb342;
}
.sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_icon .material-icons {
  color: #fff;
}
.sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a .menu_title {
  display: block;
}
.sidebar_mini #sidebar_main .menu_section > ul > li:hover.sidebar_submenu > a:before {
  display: none;
}
.sidebar_mini #sidebar_main .menu_section > ul > li:hover > ul {
  display: block;
}
.sidebar_mini #sidebar_main .menu_section > ul > li li ul {
  margin-left: 16px;
  display: block;
}
.sidebar_mini #sidebar_main .sSidebar_hide {
  display: none !important;
}
.sidebar_mini #sidebar_main .sSidebar_show {
  display: block !important;
}
.sidebar_mini #page_content,
.sidebar_mini #header_main,
.sidebar_mini #top_bar {
  margin-left: 60px;
}
.sidebar_mini.header_full #sidebar_main .menu_section > ul > li > a > .menu_title {
  top: 0;
}
.sidebar_mini.header_full #sidebar_main .menu_section > ul > li > ul {
  top: 0;
}
.sidebar_mini #footer {
  margin-left: 60px;
}
/* slim sidebar */
.sidebar_slim #sidebar_main {
  transform: none;
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar_slim #page_content,
.sidebar_slim #header_main,
.sidebar_slim #top_bar {
  margin-left: 60px;
}
.sidebar_slim #footer {
  margin-left: 60px;
}
.sidebar_slim_inactive #sidebar_main {
  width: 66px;
  background: #fff;
  margin-left: 0;
  left: 0;
}
.sidebar_slim_inactive #sidebar_main .sidebar_main_header {
  background-position: 0 0;
}
.sidebar_slim_inactive #sidebar_main .sidebar_main_header .sidebar_logo a {
  margin-left: 14px;
  display: block;
}
.sidebar_slim_inactive #sidebar_main .sidebar_main_header .sidebar_actions {
  margin: 0 8px;
}
.sidebar_slim_inactive #sidebar_main .sidebar_main_header .sidebar_actions .selectize-control {
  padding-left: 12px;
}
.sidebar_slim_inactive #sidebar_main .sidebar_main_header .sidebar_actions .selectize-control .selectize-input {
  width: auto;
  text-align: center;
}
.sidebar_slim_inactive #sidebar_main .sidebar_main_header .sidebar_actions .selectize-control .selectize-input:after {
  display: none;
}
.sidebar_slim_inactive #sidebar_main .sidebar_main_header .sidebar_actions .selectize-dropdown {
  display: none !important;
}
.sidebar_slim_inactive #sidebar_main .menu_section {
  margin-top: -1px;
}
.sidebar_slim_inactive #sidebar_main .menu_section > ul > li > a {
  padding: 0 0 0 20px;
  display: block;
  height: 41px;
}
.sidebar_slim_inactive #sidebar_main .menu_section > ul > li > a:before {
  display: none;
}
.sidebar_slim_inactive #sidebar_main .menu_section > ul > li > a .menu_icon {
  display: inline-block;
  height: 48px;
}
.sidebar_slim_inactive #sidebar_main .menu_section > ul > li > a .menu_icon .material-icons {
  line-height: 42px;
}
.sidebar_slim_inactive #sidebar_main .menu_section > ul > li > a > .menu_title {
  display: none;
}
.sidebar_slim_inactive #sidebar_main .menu_section > ul > li > ul {
  display: none !important;
}
.sidebar_slim_inactive #sidebar_main .sSidebar_hide {
  display: none !important;
}
.sidebar_slim_inactive #sidebar_main .sSidebar_show {
  display: block !important;
}
.sidebar_slim_active #sidebar_main {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
  border-right-color: rgba(0, 0, 0, 0.25);
}
.sidebar_slim_active #sidebar_main .menu_section > ul > li {
  width: 240px;
}
/* secondary sidebar */
#sidebar_secondary {
  position: fixed;
  right: 0;
  transform: translate3d(288px, 0, 0);
  top: 48px;
  bottom: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  width: 280px;
  background: #fff;
  overflow: hidden;
  z-index: 1104;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), -2px 4px 8px rgba(0, 0, 0, 0.28);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
#sidebar_secondary,
#sidebar_secondary:before,
#sidebar_secondary:after,
#sidebar_secondary *,
#sidebar_secondary *:before,
#sidebar_secondary *:after {
  box-sizing: border-box;
}
#sidebar_secondary .sidebar_secondary_wrapper {
  margin: 8px 16px;
}
.header_double_height #sidebar_secondary {
  top: 58px;
}
#sidebar_secondary .uk-switcher > li {
  padding: 16px 16px 0;
}
#sidebar_secondary .uk-tab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
}
#sidebar_secondary.tabbed_sidebar {
  padding-top: 44px;
}
.sidebar_secondary_active #sidebar_secondary {
  transform: translate3d(0, 0, 0);
}
.sidebar_secondary_active:not(.steps) .sSwitch_right .sSwitchIcon:before,
.sidebar_secondary_active:not(.steps) .sSwitch_right .sSwitchIcon:after {
  top: 0 !important;
}
.sidebar_secondary_active #header_main .sSwitch.sSwitch_right:before {
  opacity: 1;
}
.sidebar_secondary_active #header_main .sSwitch.sSwitch_right .sSwitchIcon {
  transform: rotate(0deg);
}
.sidebar_secondary_active #header_main .sSwitch.sSwitch_right .sSwitchIcon:before,
.sidebar_secondary_active #header_main .sSwitch.sSwitch_right .sSwitchIcon:after {
  width: 12px;
}
.sidebar_secondary_active #header_main .sSwitch.sSwitch_right .sSwitchIcon:before {
  top: 4px;
  transform: rotate(-35deg);
  transform-origin: right bottom;
}
.sidebar_secondary_active #header_main .sSwitch.sSwitch_right .sSwitchIcon:after {
  top: -4px;
  transform: rotate(35deg);
  transform-origin: right top;
}
/* top bar */
#top_bar {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  height: 40px;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 25px;
}
#top_bar,
#top_bar:before,
#top_bar:after,
#top_bar *,
#top_bar *:before,
#top_bar *:after {
  box-sizing: border-box;
}
#top_bar .top_bar_nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
#top_bar .top_bar_nav > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
#top_bar .top_bar_nav > li {
  float: left;
  text-align: center;
}
#top_bar .top_bar_nav > li > a {
  line-height: 40px;
  padding: 0 16px;
  font-weight: 500;
  color: #212121;
  display: block;
}
#top_bar .top_bar_nav > li > a:hover {
  box-shadow: inset 0 -3px 0 #2196f3;
}
#top_bar .top_bar_nav > li.uk-active a {
  box-shadow: inset 0 -3px 0 #2196f3;
}
#top_bar .uk-slidenav-position:before,
#top_bar .uk-slidenav-position:after {
  position: absolute;
  width: 25px;
  height: 100%;
  display: block;
  top: 0;
  content: '';
}
#top_bar .uk-slidenav-position:before {
  left: -25px;
}
#top_bar .uk-slidenav-position:after {
  right: -25px;
}
#top_bar .uk-slidenav-position:hover .uk-slidenav {
  display: none;
}
#top_bar .uk-slidenav-position.uk-slidenav-hover:hover .uk-slidenav {
  display: block;
}
#top_bar .uk-slidenav {
  font-size: 32px;
  height: 50px;
  width: 24px;
}
#top_bar .uk-slidenav-previous {
  left: -25px;
}
#top_bar .uk-slidenav-next {
  right: -25px;
}
#top_bar.top_bar_static {
  position: relative;
  left: 0;
  top: 0;
  margin: 0 !important;
}
#top_bar .top_bar_heading {
  line-height: 40px;
  margin: 0;
  font-size: 16px;
}
#top_bar.top_bar_expandable {
  padding: 0;
}
#top_bar.top_bar_expandable .top_bar_wrapper {
  background: #fff;
  height: 40px;
  padding: 0 25px;
  position: relative;
  z-index: 120;
}
#top_bar.top_bar_expandable .top_bar_wrapper,
#top_bar.top_bar_expandable .top_bar_wrapper:before,
#top_bar.top_bar_expandable .top_bar_wrapper:after,
#top_bar.top_bar_expandable .top_bar_wrapper *,
#top_bar.top_bar_expandable .top_bar_wrapper *:before,
#top_bar.top_bar_expandable .top_bar_wrapper *:after {
  box-sizing: border-box;
}
#top_bar .top_bar_panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 15px 25px;
  z-index: 110;
  transform: translateY(-100%);
  transition: all 200ms ease;
  opacity: 0;
}
#top_bar.top_bar_panel_active .top_bar_panel {
  opacity: 1;
  transform: translateY(0);
}
.top_bar_active {
  padding-top: 88px;
}
.top_bar_active #header_main {
  box-shadow: none;
}
.top_bar_static_active {
  padding-top: 48px;
}
/* page heading */
#page_heading {
  background: #fff;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  min-height: 81px;
}
#page_heading h1 {
  font: 500 22px / 28px "Roboto", sans-serif;
  margin: 0;
}
#page_heading .heading_actions {
  float: right;
  margin-top: 8px;
  padding-right: 15px;
}
#page_heading .heading_actions > * {
  display: inline-block;
  margin-left: 8px;
  position: relative;
}
#page_heading .heading_actions .material-icons {
  font-size: 24px;
}
#page_heading.uk-active {
  border-bottom: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 100;
}
.page_heading_active  #header_main {
  box-shadow: none;
}
/* top menu */
#menu_top_dropdown .top_menu_toggle {
  height: 48px;
  line-height: 51px;
  color: #fff;
  display: block;
  padding: 0 8px;
}
#menu_top_dropdown .top_menu_toggle .material-icons {
  color: #fff;
}
#menu_top_dropdown .uk-dropdown {
  margin-top: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 340px;
}
@media screen and (max-height: 320px) {
  #menu_top_dropdown .uk-dropdown {
    max-height: 252px;
  }
}
/* top menu */
#menu_top {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
#menu_top > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
#menu_top > li {
  float: left;
  position: relative;
}
#menu_top > li > a {
  height: 40px;
  line-height: 40px;
  display: block;
  color: #212121;
  padding: 0 16px;
  min-width: 60px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #menu_top > li > a {
    padding: 0 8px;
  }
}
#menu_top > li > a:hover {
  background: rgba(0, 0, 0, 0.085);
}
#menu_top > li > a .material-icons {
  font-size: 24px;
  vertical-align: -8px;
}
#menu_top > li > a > span {
  margin-left: 8px;
  vertical-align: -2px;
}
#menu_top > li[data-uk-dropdown] > a {
  padding-right: 32px;
}
#menu_top > li[data-uk-dropdown] > a:after {
  position: absolute;
  right: 4px;
  top: 2px;
  content: '\e313';
  display: block;
  width: 24px;
  height: 24px;
  font-size: 18px;
  font-family: "Material Icons";
  color: #727272;
}
#menu_top > li.uk-open > a {
  background: rgba(0, 0, 0, 0.085);
}
#menu_top > li .uk-dropdown {
  margin-top: 1px;
  top: 100% !important;
}
@media (max-height: 767px) {
  #menu_top > li .uk-dropdown {
    max-height: 200px !important;
    overflow-y: auto !important;
  }
}
@media (min-height: 768px) {
  #menu_top > li [class*='uk-dropdown-width'] {
    max-height: 640px;
    overflow-y: auto;
  }
}
#menu_top .uk-nav-multilevel li {
  position: relative;
}
#menu_top .uk-nav-multilevel li ul {
  position: absolute;
  top: 0;
  left: 100%;
  width: 180px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin: 0 0 0 1px;
  padding: 0;
  display: none;
}
#menu_top .uk-nav-multilevel li ul:before {
  position: absolute;
  left: -1px;
  height: 100%;
  width: 1px;
  content: '';
  display: block;
  z-index: 10;
}
#menu_top .uk-nav-multilevel li ul li > a {
  font-size: 14px;
  color: #212121;
  padding: 5px 15px;
}
#menu_top .uk-nav-multilevel li ul li > a:hover {
  background: rgba(0, 0, 0, 0.085);
}
#menu_top .uk-nav-multilevel li:hover > a {
  background: rgba(0, 0, 0, 0.085);
}
#menu_top .uk-nav-multilevel li:hover > ul {
  display: block;
}
#menu_top .uk-nav-multilevel li.has-submenu:after {
  display: block;
  position: absolute;
  top: 4px;
  right: 2px;
  color: #727272;
  content: '\e5cc';
  font-family: "Material Icons";
  font-size: 16px;
}
#breadcrumbs {
  background: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  white-space: nowrap;
}
#breadcrumbs > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
#breadcrumbs > li {
  display: inline-block;
}
#breadcrumbs > li a,
#breadcrumbs > li span {
  position: relative;
  display: block;
  font-size: 16px;
  padding: 8px 0;
  line-height: 24px;
}
#breadcrumbs > li + li a,
#breadcrumbs > li + li span {
  padding-left: 40px;
}
#breadcrumbs > li + li a:before,
#breadcrumbs > li + li span:before {
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -12px;
  content: '\e315';
  font-family: "Material Icons";
  font-size: 24px;
  display: block;
  color: #727272;
}
#footer {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  padding: 0 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  line-height: 48px;
}
@media only screen and (min-width: 1220px) {
  .sidebar_main_open #footer,
  .sidebar_main_active #footer {
    margin-left: 240px;
  }
}
.page_aside {
  min-height: 200px;
  width: 240px;
  background: #fff;
  border-right: 1px solid #e0e0e0;
  box-sizing: border-box;
  margin-right: 25px;
  transition: all 140ms cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 0;
  /*z-index: 1000;*/
	padding: 0 11px;
}
.page_aside + * {
  transition: all 140ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 265px;
}
@media only screen and (max-width: 959px) {
  .page_aside + * {
    margin-left: 25px;
  }
}
.page_aside_inner {
  padding: 24px 12px;
  box-sizing: border-box;
  height: 100%;
}
.page_aside_toggle {
  position: absolute;
  top: 0;
  right: -26px;
  height: 100%;
  width: 24px;
  background: #ff0000;
  cursor: pointer;
  background: #f5f5f5;
  border-right: 1px solid #e0e0e0;
  transition: all 140ms cubic-bezier(0.4, 0, 0.2, 1);
}
.page_aside_toggle:hover {
  background: #e0e0e0;
}
.page_aside_toggle:after {
  position: absolute;
  left: 3px;
  top: 50%;
  content: '\e314';
  font-family: "Material Icons";
  font-size: 18px;
  display: block;
  color: #727272;
}
.page_aside_collapsed .page_aside {
  transform: translate3d(-240px, 0, 0);
}
.page_aside_collapsed .page_aside + * {
  margin-left: 25px;
}
.page_aside_collapsed .page_aside_toggle:after {
  content: '\e315';
}
/* 8. custom pages =================================== */
/* user profile */
.user_heading {
  padding: 24px;
  background: #1976d2;
  color: #fff;
  position: relative;
  box-sizing: border-box;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.user_heading:before,
.user_heading:after {
  content: " ";
  display: table;
}
.user_heading:after {
  clear: both;
}
.user_heading:before,
.user_heading:after {
  content: " ";
  display: table;
}
.user_heading:after {
  clear: both;
}
.user_heading.uk-active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 16px 24px;
  z-index: 100;
}
.user_heading.uk-active .user_heading_avatar .thumbnail {
  width: 64px;
  height: 64px;
  line-height: 54px !important;
}
.user_heading_bg {
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0;
}
.user_heading_bg .bg_overlay {
  padding: 24px;
  position: relative;
}
.user_heading_bg .bg_overlay:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.user_heading_bg .bg_overlay .user_heading_content {
  position: relative;
}
.user_heading_avatar {
  float: left;
  margin-right: 24px;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .user_heading_avatar {
    float: none !important;
    text-align: center;
    margin: 0 0 8px !important ;
  }
}
@media only screen and (max-width: 959px) {
  .user_heading_avatar.fileinput {
    width: 82px;
    height: 82px;
    margin: 0 auto 16px;
    display: block;
  }
}
.user_heading_avatar img {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  vertical-align: top;
}
.user_heading_avatar .thumbnail {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 82px;
  height: 82px;
  line-height: 74px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #ededed;
  overflow: hidden;
  box-sizing: border-box;
  display: inline-block;
}
.user_heading_avatar .btn-file {
  text-align: center;
  position: absolute;
  top: -4px;
  right: -8px;
  width: 32px;
  height: 32px;
  line-height: 38px;
  background: #fff;
  display: block;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  overflow: hidden;
}
.user_heading_avatar .btn-file .material-icons {
  color: #2196f3;
  font-size: 24px;
}
.user_heading_avatar .btn-file.fileinput-exists {
  left: -8px;
  right: auto;
}
.user_heading_avatar .btn-file.fileinput-exists .material-icons {
  color: #e53935;
}
.user_heading_avatar.fileinput-new .btn-file.fileinput-exists {
  display: none;
}
.user_heading_content {
  padding: 16px 0;
}
@media only screen and (max-width: 959px) {
  .user_heading_content {
    text-align: center;
  }
}
.user_heading_content .heading_a,
.user_heading_content .heading_b,
.user_heading_content .heading_c,
.user_heading_content .heading_a .sub-heading,
.user_heading_content .heading_b .sub-heading,
.user_heading_content .heading_c .sub-heading {
  color: #fff;
}
.user_heading_content .user_stats {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  text-align: center;
}
.user_heading_content .user_stats > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.user_heading_content .user_stats li {
  margin-right: 48px;
  float: left;
}
@media only screen and (max-width: 959px) {
  .user_heading_content .user_stats li {
    float: none;
    display: inline-block;
    margin: 0 16px 8px;
  }
}
.user_heading_content .user_stats .material-icons {
  color: #fff;
  margin-right: 4px;
  font-size: 36px;
  vertical-align: -12px;
}
.user_heading_menu {
  position: absolute;
  top: 8px;
  right: 8px;
}
.user_heading .md-fab,
.user_heading .md-fab-wrapper {
  position: absolute;
  bottom: -22px;
  right: 24px;
}
.user_heading .md-fab-wrapper > .md-fab {
  position: static;
  z-index: auto;
  right: auto;
  bottom: auto;
}
.user_content {
  padding: 32px;
}
.user_content .full_width_in_card {
  margin: 16px 0 32px;
}
/* scrum board */
.scrum_board_overflow {
  height: 100%;
  min-height: 100%;
  overflow-y: scroll;
  overflow-x: scroll;
  background: #fff;
  box-sizing: border-box;
 	width: 100%;
  -webkit-overflow-scrolling: touch;
}
#scrum_board {
  height: 100%;
  padding: 0 4px;
  box-sizing: border-box;
  /*overflow: scroll;*/
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	min-width: min-content; /* Ensures columns don't shrink below their content width */
}
#scrum_board > div {
  height: 100%;
  float: left;
  width: 320px;
  box-sizing: border-box;
  position: relative;
  padding: 46px 0 8px;
}
#scrum_board .scrum_column {
  background: rgba(0, 0, 0, 0.085);
  padding: 8px;
  height: 100%;
  margin: 0 4px;
  box-sizing: border-box;
  overflow-x: scroll;
  overflow-y: auto;
}
#scrum_board .scrum_column_heading_wrapper {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
}
#scrum_board .scrum_column_heading_wrapper .uk-button-dropdown {
  position: absolute;
  right: 6px;
  top: 3px;
}
#scrum_board .scrum_column_heading {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  background: #fff;
  line-height: 36px;
  box-sizing: border-box;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding: 0 36px 0 12px;
}
#scrum_board .scrum_column .uk-sortable {
  min-height: 100%;
}
#scrum_board .scrum_column .uk-sortable div {
  cursor: move;
}
#scrum_board .scrum_column .uk-sortable div + div {
  margin-top: 4px;
}
#scrum_board .scrum_column .uk-sortable-placeholder {
  opacity: 0.4;
}
.scrum_task {
  background: #fff;
  padding: 8px 8px 8px 12px;
  border-left-width: 4px;
  border-left-style: solid;
}
.scrum_task.blocker {
  border-left-color: #e53935;
}
.scrum_task.critical {
  border-left-color: #ffa000;
}
.scrum_task.minor {
  border-left-color: #7cb342;
}
.scrum_task_title {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}
.scrum_task_description {
  margin: 0 0 4px;
  font-size: 12px;
}
.scrum_task_info {
  margin: 0;
  font-size: 12px;
}
.scrum_board_menu {
  float: left;
  width: 320px;
  position: relative;
  padding: 46px 8px 8px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .scrum_board_menu {
    display: none;
  }
}
.scrum_board_menu_heading {
  position: absolute;
  top: 10px;
  left: 0;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 36px;
  box-sizing: border-box;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding: 0 16px;
}
.scrum_board_menu_inner {
  height: 100%;
  overflow: auto;
  padding-right: 8px;
}
.scrum_board_menu_inner > div + div {
  margin-top: 4px;
}
/* chat page */
.chat_box {
  padding: 16px;
}
.chat_box .chat_message_wrapper {
  margin-bottom: 32px;
}
.chat_box .chat_message_wrapper:before,
.chat_box .chat_message_wrapper:after {
  content: " ";
  display: table;
}
.chat_box .chat_message_wrapper:after {
  clear: both;
}
.chat_box .chat_message_wrapper:before,
.chat_box .chat_message_wrapper:after {
  content: " ";
  display: table;
}
.chat_box .chat_message_wrapper:after {
  clear: both;
}
.chat_box .chat_message_wrapper .chat_user_avatar {
  float: left;
}
.chat_box .chat_message_wrapper ul.chat_message {
  float: left;
  margin: 0 0 0 20px;
  padding: 0;
  list-style: none;
  max-width: 60%;
}
.chat_box .chat_message_wrapper ul.chat_message > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .chat_box .chat_message_wrapper ul.chat_message {
    max-width: 70%;
  }
}
.chat_box .chat_message_wrapper ul.chat_message > li {
  background: #ededed;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  font-size: 13px;
  display: block;
  float: left;
  clear: both;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .chat_box .chat_message_wrapper ul.chat_message > li {
    font-size: 14px;
  }
}
.chat_box .chat_message_wrapper ul.chat_message > li p {
  margin: 0;
}
.chat_box .chat_message_wrapper ul.chat_message > li .chat_message_time {
  display: block;
  font-size: 11px;
  padding-top: 2px;
  color: #727272;
  text-transform: uppercase;
}
.chat_box .chat_message_wrapper ul.chat_message > li:first-child:before {
  position: absolute;
  left: -14px;
  top: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 16px 0;
  border-color: rgba(0, 0, 0, 0) #ededed rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.chat_box .chat_message_wrapper ul.chat_message > li + li {
  margin-top: 4px;
}
.chat_box .chat_message_wrapper.chat_message_right .chat_user_avatar {
  float: right;
}
.chat_box .chat_message_wrapper.chat_message_right ul.chat_message {
  float: right;
  margin-left: 0 !important;
  margin-right: 24px !important;
}
.chat_box .chat_message_wrapper.chat_message_right ul.chat_message > li {
  float: right;
}
.chat_box .chat_message_wrapper.chat_message_right ul.chat_message > li:first-child:before {
  left: auto;
  right: -14px;
  border-width: 0 0 16px 16px;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ededed;
}
.chat_box .chat_message_wrapper.chat_message_right ul.chat_message > li .chat_message_time {
  text-align: right;
}
.chat_box.chat_box_colors_a .chat_message_wrapper ul.chat_message > li {
  background: #616161;
  color: #fff;
}
.chat_box.chat_box_colors_a .chat_message_wrapper ul.chat_message > li:first-child:before {
  border-right-color: #616161;
}
.chat_box.chat_box_colors_a .chat_message_wrapper ul.chat_message > li .chat_message_time {
  color: rgba(255, 255, 255, 0.7);
}
.chat_box.chat_box_colors_a .chat_message_wrapper.chat_message_right ul.chat_message > li {
  background: #689f38;
}
.chat_box.chat_box_colors_a .chat_message_wrapper.chat_message_right ul.chat_message > li:first-child:before {
  border-left-color: #689f38;
}
.chat_box.chat_box_colors_b .chat_message_wrapper ul.chat_message > li {
  background: #0288d1;
  color: #fff;
}
.chat_box.chat_box_colors_b .chat_message_wrapper ul.chat_message > li:first-child:before {
  border-right-color: #0288d1;
}
.chat_box.chat_box_colors_b .chat_message_wrapper ul.chat_message > li .chat_message_time {
  color: rgba(255, 255, 255, 0.7);
}
.chat_box.chat_box_colors_b .chat_message_wrapper.chat_message_right ul.chat_message > li {
  background: #01579b;
}
.chat_box.chat_box_colors_b .chat_message_wrapper.chat_message_right ul.chat_message > li:first-child:before {
  border-left-color: #01579b;
}
.chat_box.chat_box_colors_c .chat_message_wrapper ul.chat_message > li {
  background: #e64a19;
  color: #fff;
}
.chat_box.chat_box_colors_c .chat_message_wrapper ul.chat_message > li:first-child:before {
  border-right-color: #e64a19;
}
.chat_box.chat_box_colors_c .chat_message_wrapper ul.chat_message > li .chat_message_time {
  color: rgba(255, 255, 255, 0.7);
}
.chat_box.chat_box_colors_c .chat_message_wrapper.chat_message_right ul.chat_message > li {
  background: #e0e0e0;
  color: #212121;
}
.chat_box.chat_box_colors_c .chat_message_wrapper.chat_message_right ul.chat_message > li .chat_message_time {
  color: #727272;
}
.chat_box.chat_box_colors_c .chat_message_wrapper.chat_message_right ul.chat_message > li:first-child:before {
  border-left-color: #e0e0e0;
}
.chat_box.chat_box_colors_d .chat_message_wrapper ul.chat_message > li {
  background: #e0e0e0;
}
.chat_box.chat_box_colors_d .chat_message_wrapper ul.chat_message > li:first-child:before {
  border-right-color: #e0e0e0;
}
.chat_box.chat_box_colors_d .chat_message_wrapper.chat_message_right ul.chat_message > li {
  background: #4527a0;
  color: #fff;
}
.chat_box.chat_box_colors_d .chat_message_wrapper.chat_message_right ul.chat_message > li .chat_message_time {
  color: rgba(255, 255, 255, 0.7);
}
.chat_box.chat_box_colors_d .chat_message_wrapper.chat_message_right ul.chat_message > li:first-child:before {
  border-left-color: #4527a0;
}
.chat_box_wrapper {
  height: 100%;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.chat_box_wrapper .chat_box {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.chat_submit_box {
  background: #fafafa;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 8px 8px 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}
.chat_submit_box textarea {
  min-height: 40px;
  max-height: 40px;
  padding: 4px 4px 8px;
}
#sidebar_secondary .chat_box_wrapper,
#sidebar_secondary .chat_submit_box,
#sidebar_secondary .chat_sidebar_close {
  display: none;
}
#sidebar_secondary.chat_sidebar {
  padding-bottom: 68px;
}
#sidebar_secondary.chat_sidebar .chat_submit_box,
#sidebar_secondary.chat_sidebar .chat_sidebar_close {
  display: block;
}
#sidebar_secondary .chat_sidebar_close {
  position: absolute;
  top: 52px;
  right: 8px;
}
#sidebar_secondary .chat_box_wrapper {
  padding-bottom: 0;
}
.chat_box_small.chat_box_wrapper {
  margin: 0 -16px;
}
.md-list.chat_users li {
  cursor: pointer;
}
.list-chatboxes > li {
  cursor: pointer;
}
#chatbox_wrapper {
  position: fixed;
  bottom: 8px;
  left: 0;
  right: 0;
  padding: 0 16px 8px;
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
}
@media only screen and (min-width: 768px) {
  #chatbox_wrapper {
    text-align: right;
  }
}
.sidebar_main_open #chatbox_wrapper,
.sidebar_main_active #chatbox_wrapper {
  left: 240px;
}
@media only screen and (min-width: 768px) {
  .sidebar_secondary_active #chatbox_wrapper {
    right: 280px;
  }
}
.chatbox {
  text-align: left;
  display: inline-block;
  height: 320px;
  width: 260px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background: #fff;
  border-radius: 2px;
  position: relative;
  box-sizing: border-box;
  padding: 36px 0 48px;
  overflow: hidden;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.chatbox + .chatbox {
  margin-left: 8px;
}
.chatbox_header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 8px;
}
.chatbox_header:before,
.chatbox_header:after {
  content: " ";
  display: table;
}
.chatbox_header:after {
  clear: both;
}
.chatbox_header:before,
.chatbox_header:after {
  content: " ";
  display: table;
}
.chatbox_header:after {
  clear: both;
}
.chatbox_header .header_name {
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  max-width: 180px;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
}
.chatbox_header .header_actions {
  float: right;
  display: inline-block;
}
.chatbox_header .header_actions > * {
  display: inline-block;
}
.chatbox_header .header_actions .material-icons {
  line-height: 36px;
  font-size: 24px;
}
.chatbox_header .header_actions .actions_dropdown {
  position: relative;
}
.chatbox_header .header_actions .actions_dropdown .uk-dropdown {
  padding-top: 0;
  padding-bottom: 0;
}
.chatbox_header .header_actions .actions_dropdown .uk-dropdown > ul > li > a {
  white-space: normal;
  font-size: 13px;
}
.chatbox_content {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.chatbox_content .chatbox_message {
  overflow: hidden;
  padding: 8px;
}
.chatbox_content .chatbox_message .chatbox_avatar {
  float: left;
  margin-right: 8px;
  max-width: 64px;
  overflow: hidden;
}
.chatbox_content .chatbox_message .chatbox_avatar > img {
  border-radius: 4px;
}
.chatbox_content .chatbox_message_content {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.chatbox_content .chatbox_message_content > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.chatbox_content .chatbox_message_content li {
  display: block;
}
.chatbox_content .chatbox_message_content li + li {
  margin-top: 2px;
}
.chatbox_content .chatbox_message_content li > span {
  max-width: 80%;
  border-radius: 4px;
  font-size: 13px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.085);
  display: inline-block;
  white-space: normal;
}
.chatbox_content .chatbox_message.own .chatbox_avatar {
  float: right;
  margin-left: 8px;
  margin-right: 0;
}
.chatbox_content .chatbox_message.own .chatbox_message_content li {
  text-align: right;
}
.chatbox_content .chatbox_message.own .chatbox_message_content li > span {
  max-width: 80%;
  border-radius: 4px;
  font-size: 13px;
  padding: 4px 8px;
  background: #2196f3;
  display: inline-block;
  white-space: normal;
  color: #fff;
  text-align: left;
}
.chatbox_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}
.chatbox_footer .message_input {
  width: 100%;
  border: none;
  font-size: 13px;
  padding: 8px;
  max-height: 80px;
  font: 400 13px / 16px "Roboto", sans-serif;
  resize: none;
  word-wrap: break-word;
  box-sizing: border-box;
  display: block;
}
.chatbox.removing {
  transform: translate3d(0, 100%, 0);
  opacity: 0;
}
.chatbox.cb_active .chatbox_header {
  background: #1976d2;
}
.chatbox.cb_active .chatbox_header,
.chatbox.cb_active .chatbox_header .material-icons {
  color: #fff;
}
/* blog */
.blog_list_teaser_image {
  margin-bottom: 16px;
}
.blog_list_teaser_video {
  margin-bottom: 16px;
  height: 200px;
}
.blog_list_teaser_title {
  font: 400 18px / 24px "Roboto", sans-serif;
  margin: 0 0 8px;
}
.blog_list_teaser p {
  margin: 0 0 8px;
}
.blog_list_footer {
  border-top: 1px solid #e0e0e0;
  padding: 8px 0 0 8px;
  margin-top: 8px;
  overflow: hidden;
}
.blog_list_footer_info {
  float: left;
  padding-top: 6px;
}
.blog_list_footer_info .material-icons {
  color: #9e9e9e;
}
.blog_list_footer_info small {
  vertical-align: 1px;
}
.blog_article .uk-thumbnail.thumbnail_left {
  float: left;
  margin: 0 24px 24px 0;
}
.blog_article .uk-thumbnail.thumbnail_right {
  float: right;
  margin: 0 0 24px 24px;
}
.blog_article * + p,
.blog_article * + ul,
.blog_article * + ol,
.blog_article * + dl,
.blog_article * + blockquote,
.blog_article * + pre,
.blog_article * + address,
.blog_article * + fieldset,
.blog_article * + figure {
  margin-top: 24px;
}
.blog_article .material-icons + small {
  vertical-align: 2px;
}
.blog_tags .uk-badge {
  margin: 0 4px 4px 0;
}
/* gallery */
.gallery_grid_item {
  padding: 0 !important;
}
.gallery_grid_item,
.gallery_grid_item:hover,
.gallery_grid_item:focus {
  color: #212121;
}
.gallery_grid_item > a,
.gallery_grid_item img {
  display: block;
}
.gallery_grid_image_caption {
  padding: 8px 16px;
  display: block;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.gallery_grid_image_caption .gallery_image_title {
  font: 500 14px / 20px "Roboto", sans-serif;
  margin: 0;
}
.gallery_grid_image_menu {
  position: relative;
  float: right;
  margin: 4px 0 0 8px;
}
/* pricing tables */
.pricing_table.pricing_table_a {
  text-align: center;
}
.pricing_table.pricing_table_a .pricing_table_plan {
  font-size: 18px;
  font-weight: 400;
  padding: 16px 0;
  margin-bottom: 16px;
}
.pricing_table.pricing_table_a .pricing_table_price {
  padding: 8px 0 0;
  font-size: 48px;
  margin-bottom: 24px;
}
.pricing_table.pricing_table_a .pricing_table_price .currency {
  vertical-align: top;
  font-size: 24px;
  padding: 0 4px;
}
.pricing_table.pricing_table_a .pricing_table_price .period {
  font-size: 14px;
  padding: 4px;
  color: #aaa;
  display: block;
}
.pricing_table.pricing_table_a .pricing_table_features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing_table.pricing_table_a .pricing_table_features > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pricing_table.pricing_table_a .pricing_table_features li {
  font-size: 16px;
  padding: 8px 0;
}
.pricing_table.pricing_table_a .pricing_table_select {
  padding: 32px 0;
}
.pricing_table.pricing_table_b {
  text-align: center;
}
.pricing_table.pricing_table_b .pricing_table_plan {
  font-size: 16px;
  font-weight: 400;
  padding: 16px 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.pricing_table.pricing_table_b .pricing_table_price {
  padding: 8px 0 0;
  font-size: 48px;
  margin-bottom: 24px;
}
.pricing_table.pricing_table_b .pricing_table_price .currency {
  vertical-align: top;
  font-size: 24px;
  padding: 0 4px;
}
.pricing_table.pricing_table_b .pricing_table_price .period {
  font-size: 14px;
  padding: 4px;
  color: #aaa;
  display: block;
}
.pricing_table.pricing_table_b .pricing_table_features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing_table.pricing_table_b .pricing_table_features > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pricing_table.pricing_table_b .pricing_table_features li {
  font-size: 16px;
  padding: 8px 0;
}
.pricing_table.pricing_table_b .pricing_table_select {
  padding: 32px 0;
}
.pricing_table.pricing_table_c {
  text-align: center;
}
.pricing_table.pricing_table_c .pricing_table_plan {
  font-size: 16px;
  font-weight: 400;
  padding: 16px 0;
  margin-bottom: 8px;
}
.pricing_table.pricing_table_c .pricing_table_price {
  padding: 8px 0 0;
  font-size: 48px;
  margin-bottom: 24px;
}
.pricing_table.pricing_table_c .pricing_table_price .currency {
  vertical-align: top;
  font-size: 24px;
  padding: 0 4px;
}
.pricing_table.pricing_table_c .pricing_table_price .period {
  font-size: 14px;
  color: #aaa;
  vertical-align: 0;
  padding-left: 4px;
}
.pricing_table.pricing_table_c .pricing_table_features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing_table.pricing_table_c .pricing_table_features > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pricing_table.pricing_table_c .pricing_table_features li {
  font-size: 16px;
  padding: 8px 0;
}
.pricing_table.pricing_table_c .pricing_table_select {
  padding: 32px 0;
}
.pricing_table_v2.pricing_table_v2_a {
  text-align: center;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_plan {
  font-size: 18px;
  font-weight: 400;
  padding: 24px 0;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_price {
  padding: 8px 0 0;
  font-size: 48px;
  margin: 0 8px 24px;
  color: #fff;
  background: #4db6ac;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_price .currency {
  vertical-align: top;
  font-size: 24px;
  padding: 0 4px;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_price .period {
  font-size: 14px;
  padding: 4px;
  display: block;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_features > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_features li {
  font-size: 16px;
  padding: 8px 0;
}
.pricing_table_v2.pricing_table_v2_a .pricing_table_select {
  padding: 32px 0;
}
.pricing_table_v2.pricing_table_v2_a .md-btn {
  background: #4db6ac;
  color: #fff;
}
.pricing_table_v2.pricing_table_v2_b {
  text-align: center;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_plan {
  font-size: 18px;
  font-weight: 400;
  padding: 16px 0;
  background: #ef5350;
  color: #fff;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_price {
  padding: 8px 0;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 48px;
  color: #fff;
  background: #e53935;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_price .currency {
  vertical-align: top;
  font-size: 24px;
  padding: 0 4px;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_price .period {
  font-size: 14px;
  padding: 4px;
  display: block;
  font-weight: 400;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_features > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_features li {
  font-size: 16px;
  padding: 8px 0;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_features li:nth-child(odd) {
  background: #f5f5f5;
}
.pricing_table_v2.pricing_table_v2_b .pricing_table_select {
  padding: 32px 0;
}
.pricing_table_v2.pricing_table_v2_b .md-btn {
  background: #ef5350;
  color: #fff;
}
.pricing_table_v2.pricing_table_v2_c {
  text-align: center;
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_plan {
  font-size: 14px;
  font-weight: 700;
  margin: 0 32px 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  color: #727272;
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_price {
  padding: 8px 0;
  font-size: 48px;
  margin: 0 0 24px;
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_price .currency {
  vertical-align: top;
  font-size: 24px;
  padding: 0 4px;
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_price .period {
  font-size: 14px;
  padding: 4px;
  font-weight: 400;
  color: #aaa;
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_features > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_features li {
  font-size: 14px;
  padding: 12px 0;
  margin: 0 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.pricing_table_v2.pricing_table_v2_c .pricing_table_select {
  padding: 32px 0;
}
.invoice_header {
  height: 72px;
  padding: 20px;
  box-sizing: border-box;
  margin: -16px -16px 24px;
}
.invoice_header > img {
  max-height: 100%;
  width: auto;
}
.invoice_header_active.md-card-toolbar {
  border-bottom: none;
}
.invoice_footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 40px;
  height: 64px;
  padding: 8px;
  font-size: 13px;
  text-align: center;
  box-sizing: border-box;
  line-height: 20px;
}
.invoice_footer > span {
  font-weight: 700;
  font-size: 24px;
  vertical-align: -4px;
  padding: 0 8px;
}
.invoice_content {
  position: relative;
}
.invoice_content address p + p {
  margin-top: 0;
}
#tabs_search_content > li {
  padding: 24px;
}
#tabs_search_content > li.full_height {
  padding: 0;
  height: 100%;
}
.map_search_wrapper {
  position: relative;
  padding-left: 320px;
}
@media only screen and (max-width: 767px) {
  .map_search_wrapper {
    padding-left: 0;
  }
}
.map_search_wrapper .map_search_list_wrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  padding: 16px 0;
  background: #fff;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.26);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .map_search_wrapper .map_search_list_wrapper {
    width: 240px;
  }
}
.map_search_wrapper .map_search_list_wrapper .md-list li {
  padding: 8px 16px;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.map_search_list_active.map_search_wrapper {
  padding: 0;
}
.map_search_list_active.map_search_wrapper .map_search_list_wrapper {
  transform: translate3d(-340px, 0, 0);
}
#map_search_list_toggle {
  position: absolute;
  left: 320px;
  bottom: 50%;
  margin-bottom: -20px;
  width: 40px;
  height: 40px;
  border-radius: 0 8px 8px 0;
  background: #fff;
  display: block;
  z-index: 1;
  text-align: center;
  padding-top: 8px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
}
@media only screen and (max-width: 767px) {
  #map_search_list_toggle {
    left: 240px;
  }
}
.map_search_list_active #map_search_list_toggle {
  left: 0;
}
.search_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.search_list > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.search_list_heading {
  font: 400 18px / 22px "Roboto", sans-serif;
  margin: 0 0 2px;
}
.search_list_link {
  color: #7cb342;
  display: block;
  margin-bottom: 2px;
}
.search_list p {
  margin: 0;
  font-size: 13px;
}
.search_list li {
  padding: 24px 0;
}
.search_list li:before,
.search_list li:after {
  content: " ";
  display: table;
}
.search_list li:after {
  clear: both;
}
.search_list li:before,
.search_list li:after {
  content: " ";
  display: table;
}
.search_list li:after {
  clear: both;
}
.search_list li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.search_list_thumb {
  width: 100px;
  height: 100px;
  margin-right: 16px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .search_list_thumb {
    float: none !important;
    width: auto;
    margin: 0 0 16px !important;
  }
}
.search_list_content {
  overflow: hidden;
}
ol.questions,
ul.answers,
ul.responses,
ol.questions li,
ul.answers li,
ul.responses li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.startQuiz,
.nextQuestion,
.backToQuestion,
.questions li.question,
.questions li.question .responses,
.questions li.question .responses .correct,
.questions li.question .responses .incorrect,
.quizResults {
  display: none;
}
.startQuiz {
  margin-top: 40px;
}
.tryAgain {
  float: none;
  margin: 20px 0;
}
/* clearfix */
.quizArea,
.quizResults {
  zoom: 1;
}
.quizArea:before,
.quizArea:after,
.quizResults:before,
.quizResults:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}
.quizArea:after,
.quizResults:after {
  clear: both;
}
.questionCount {
  font-size: 14px;
  font-style: italic;
}
.questionCount span {
  font-weight: bold;
}
ol.questions {
  margin-top: 20px;
}
ol.questions .md-btn {
  margin-left: 0 !important;
}
ul.responses li {
  margin: 40px 0;
}
ul.responses li p span {
  display: block;
  font-weight: bold;
  font-size: 22px;
}
.complete ul.answers li.correct,
ul.responses li.correct p span {
  color: #7cb342;
}
ul.responses li.incorrect p span {
  color: #e53935;
}
ul.answers {
  margin: 30px 0;
}
ul.answers > li {
  margin: 14px 0 0 20px;
}
ul.answers > li label {
  padding-left: 4px;
}
.quizResults h3 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 700;
}
.quizResults h3 span {
  font-weight: normal;
  font-style: italic;
}
.quizResultsCopy {
  clear: both;
  margin-top: 20px;
}
.quizResultsCopy h5 {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 18px;
  margin: 20px 0 10px;
  padding-top: 20px;
}
.quizResultsCopy p {
  margin-top: 0;
}
.nextQuestion.checkAnswer {
  display: block;
}
/* Accessibility */
.quizName span:first-child {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* 9. altair main styles ============================= */
html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ececec;
}
body {
  min-height: 100%;
  font: 400 14px / 1.42857143 "Roboto", sans-serif;
  padding-top: 48px;
  box-sizing: border-box;
}
a,
button {
  outline: none !important;
}
a {
  color: #1e88e5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover,
a:active {
  color: #0d47a1;
  text-decoration: none;
}
pre,
code,
code[class*="language-"],
pre[class*="language-"] {
  font: 400 12px / 18px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
  box-sizing: border-box;
}
pre[class*="language-"] {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0;
}
pre[class*="language-"]:before,
pre[class*="language-"]:after {
  display: none;
}
.line-numbers .line-numbers-rows {
  border-right-color: rgba(0, 0, 0, 0.12);
}
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  font: 400 12px / 18px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
  color: #d32f2f;
}
pre.large_code,
code.large_code {
  font: 400 14px / 24px "Source Code Pro", Consolas, Monaco, 'Andale Mono', monospace !important;
}
.touchscroll {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
.transform-origin-50 {
  transform-origin: 50% 50%;
}
blockquote {
  border-left: 4px solid rgba(0, 0, 0, 0.085);
}
/* clearfix */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.heading_a {
  margin: 0;
  font: 400 18px / 24px "Roboto", sans-serif;
}
.heading_a .sub-heading {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  display: block;
  color: #727272;
}
.heading_b {
  margin: 0;
  font: 400 22px / 28px "Roboto", sans-serif;
}
.heading_b .sub-heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  display: block;
  color: #727272;
}
.heading_c {
  margin: 0;
  font: 400 16px / 20px "Roboto", sans-serif;
}
.heading_c .sub-heading {
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  display: block;
  color: #727272;
}
.heading_list {
  color: #727272;
  font: 500 13px / 16px "Roboto", sans-serif;
  padding: 0 16px;
  margin: 0 0 16px;
}
.heading_a + .uk-grid,
.heading_b + .uk-grid,
.heading_c + .uk-grid,
.heading_list + .uk-grid {
  margin-top: 24px;
}
.uk-grid + .heading_a,
.uk-grid + .heading_b,
.uk-grid + .heading_c,
.uk-grid + .heading_list {
  margin-top: 24px;
}
/* uikit extend */
.uk-text-large {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 16px;
}
* > .uk-text-large {
  margin-top: 16px;
}
.uk-text-small {
  font-size: 12px !important;
}
.uk-text-upper {
  text-transform: uppercase;
}
.uk-text-italic {
  font-style: italic;
}
.uk-text-del {
  text-decoration: line-through;
}
.uk-table.no-border td,
.uk-table .no-border td {
  border-bottom: none;
}
.uk-table .row-selected {
  background: #fff8e1 !important;
}
.uk-table [data-link] {
  cursor: pointer;
}
.uk-text-pre {
  white-space: pre;
}
.table_tree {
  margin-bottom: 4px !important;
}
.table_tree .table-child-row {
  display: none;
}
.table_tree .toggle-childrens {
  display: block;
  padding-left: 24px;
  position: relative;
}
.table_tree .toggle-childrens:before {
  content: '\e313';
  font-family: "Material Icons";
  font-size: 28px;
  position: absolute;
  left: -6px;
  top: -10px;
  color: #727272;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}
.table_tree .table-child-row {
  display: table-row;
}
.table_tree .table-child-row .child-row-main-col {
  padding-left: 40px;
}
.table_tree .show_child_row .toggle-childrens:before {
  transform: rotate(-90deg);
}
/* custom styles */
address {
  margin: 0;
}
address p {
  margin: 0;
}
address p + p {
  margin-top: 4px;
}
.grid-block {
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(179, 179, 179, 0.085);
  padding: 48px 0;
}
.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.inline-list > li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.inline-list li {
  float: left;
  margin: 0 8px 8px 0;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(102, 102, 102, 0.085);
}
.img_thumb {
  width: 80px;
  max-width: 100%;
  height: auto;
}
.img_thumb.square {
  height: 80px;
}
.img_small {
  width: 120px;
  max-width: 100%;
  height: auto;
}
.img_small.square {
  height: 120px;
}
.img_medium {
  width: 240px;
  max-width: 100%;
  height: auto;
}
.img_medium.square {
  height: 240px;
}
.img_large {
  width: 400px;
  max-width: 100%;
  height: auto;
}
.img_large.square {
  height: 400px;
}
/* forms */
.inline-label {
  padding-left: 4px;
  cursor: pointer;
  vertical-align: -1px;
}
.form_hr {
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  margin: 32px 0 16px;
}
/* layout */
#page_content:before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  opacity: 0;
  transition: opacity 400ms;
  z-index: -1;
}
#page_content_inner {
  padding: 24px 24px 100px;
}
#page_overflow {
  min-height: 100%;
  overflow-y: auto;
}
@media only screen and (min-width: 1220px) {
  .boxed_layout #page_content {
    max-width: 1220px;
    margin: 0 auto !important;
  }
  .boxed_layout .uk-width-large-8-10.uk-container-center {
    width: 100%;
  }
  .boxed_layout.sidebar_main_open #page_content,
  .boxed_layout.sidebar_main_active #page_content {
    padding-left: 240px;
  }
  .boxed_layout .md-top-bar {
    max-width: 1172px;
    margin: 0 auto;
  }
  .boxed_layout #page_heading {
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
  }
}
.disable_transitions #sidebar_main,
.disable_transitions #page_content,
.disable_transitions #header_main,
.disable_transitions #top_bar,
.disable_transitions #header_main .sSwitch .sSwitchIcon,
.disable_transitions #header_main .sSwitch .sSwitchIcon:before,
.disable_transitions #header_main .sSwitch .sSwitchIcon:after {
  transition: none !important;
}
/* 10. print styles ================================== */
/* print stylesheet */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  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;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .uk-table {
    border-collapse: collapse !important;
  }
  .uk-table td,
  .uk-table th {
    background-color: #fff !important;
  }
  .uk-table-bordered th,
  .uk-table-bordered td {
    border: 1px solid #ddd !important;
  }
  #sidebar_main,
  #sidebar_secondary,
  #header_main,
  #style_switcher,
  .header_double_height:before,
  .hidden-print,
  .md-fab-wrapper {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    left: 0 !important;
  }
  .sidebar_main_active #header_main,
  .sidebar_main_active #top_bar {
    display: none !important;
    left: 0 !important;
  }
  body {
    overflow-y: visible !important;
    background: #fff;
    padding: 20px !important;
  }
  body:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: block;
    z-index: 9999;
  }
  #sidebar_main {
    left: -240px !important;
  }
  .main-print {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
  }
  .md-card-single {
    margin: 0 !important;
  }
  #page_content {
    margin: 0 !important;
    overflow-y: visible !important;
    height: auto !important;
    transition: none !important;
  }
  #page_content:before {
    display: none !important;
  }
  .print_bg,
  .print_bg > * {
    -webkit-print-color-adjust: exact;
  }
  .reset-print {
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .md-card-content {
    height: auto !important;
  }
}

/*# sourceMappingURL=main.css.map */


.uk-table-bordered th,
.uk-table-bordered td {
	border: 1px solid #ddd !important;
}

.select2-container{
	z-index: 999999 !important;
}

.uk-overflow-auto {
	overflow: auto
}

.uk-overflow-auto>:last-child {
	margin-bottom: 0
}

.more_privileges{
	display: none;
}

div.dt-buttons{
	float: none !important;
}

.md-input-wrapper .dataTables_filter{
	padding-top: 13px !important;
}



/****** Style Star Rating Widget *****/

.rating {
	border: none;
	float: left;
}

.rating > input { display: none; }
.rating > label:before {
	margin: 5px;
	font-size: 1.25em;
	font-family: FontAwesome;
	display: inline-block;
	content: "\f005";
}

.rating > .half:before {
	content: "\f089";
	position: absolute;
}

.rating > label {
	color: #ddd;
	float: right;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  }


.rating-box {
	color: #f0f0f0;
	/*text-shadow: 0px 1px 10px black;*/
	/*margin: 3rem auto;*/
	/*height: 3rem;*/
	/*width: 25rem;*/
}

.rating-star {
	font-size: 20px;
	width: 0px;
	height: 1px;
	padding: 0px 9px;
	position: relative;
	display: block;
	float: left;
}

.full-star:before {
	color: #f2b01e;
	content: "\2605";
	position: absolute;
	left: 0;
	overflow: hidden;
}

.empty-star:before {
	content: "\2605";
	position: absolute;
	left: 0;
	overflow: hidden;
}

.half-star:before {
	color: #f2b01e;
	content: "\2605";
	width: 50%;
	position: absolute;
	left: 0;
	overflow: hidden;
}

.half-star:after {
	content: "\2605";
	position: absolute;
	left: 9px;
	width: 50%;
	text-indent: -9px;
	overflow: hidden;
}


.icheckbox_half_selected{
	background: #009688 !important;
}



.dairy-calendar-published{
	background: #c3e6cb !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 2px solid #fff;
}

.dairy-calendar-unpublished{
	background: #ffeeba !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 2px solid #fff;
}

.dairy-calendar-missed{
	background: #f5c6cb !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 2px solid #fff;
}




/* style switcher */
#style_switcher.switcher_active {
	margin-right: 0;
}
#style_switcher .switcher_app_themes {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
#style_switcher .switcher_app_themes > li {
	padding: 0;
	margin: 0;
	list-style: none;
}
#style_switcher .switcher_app_themes li {
	float: left;
	cursor: pointer;
	width: 36px;
	margin: 0 16px 16px 0;
	opacity: 0.5;
	-webkit-transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
#style_switcher .switcher_app_themes li span {
	display: block;
	padding: 0 4px;
	height: 24px;
	line-height: 24px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	float: left;
}
#style_switcher .switcher_app_themes li.active_theme {
	opacity: 1;
	position: relative;
}
#style_switcher .switcher_app_themes li.active_theme:after {
	position: absolute;
	top: 0;
	left: 50%;
	content: '\e5ca';
	font-family: "Material Icons";
	font-size: 18px;
	display: block;
	color: #fff;
	margin-left: -8px;
}
#style_switcher .switcher_app_themes li.app_style_default .app_color_main {
	background: #2196f3;
}
#style_switcher .switcher_app_themes li.app_style_default .app_color_accent {
	background: #7cb342;
}
#style_switcher .switcher_app_themes li.switcher_theme_a .app_color_main {
	background: #3f51b5;
}
#style_switcher .switcher_app_themes li.switcher_theme_a .app_color_accent {
	background: #ff4081;
}
#style_switcher .switcher_app_themes li.switcher_theme_b .app_color_main {
	background: #673ab7;
}
#style_switcher .switcher_app_themes li.switcher_theme_b .app_color_accent {
	background: #00bcd4;
}
#style_switcher .switcher_app_themes li.switcher_theme_c .app_color_main {
	background: #5d4037;
}
#style_switcher .switcher_app_themes li.switcher_theme_c .app_color_accent {
	background: #1e88e5;
}
#style_switcher .switcher_app_themes li.switcher_theme_d .app_color_main {
	background: #00acc1;
}
#style_switcher .switcher_app_themes li.switcher_theme_d .app_color_accent {
	background: #673ab7;
}
#style_switcher .switcher_app_themes li.switcher_theme_e .app_color_main {
	background: #607d8b;
}
#style_switcher .switcher_app_themes li.switcher_theme_e .app_color_accent {
	background: #e53935;
}
#style_switcher .switcher_app_themes li.switcher_theme_f .app_color_main {
	background: #424242;
}
#style_switcher .switcher_app_themes li.switcher_theme_f .app_color_accent {
	background: #7cb342;
}
#style_switcher .switcher_app_themes li.switcher_theme_g .app_color_main {
	background: #8e24aa;
}
#style_switcher .switcher_app_themes li.switcher_theme_g .app_color_accent {
	background: #4caf50;
}
#style_switcher .switcher_app_themes li.switcher_theme_h .app_color_main {
	background: #d32f2f;
}
#style_switcher .switcher_app_themes li.switcher_theme_h .app_color_accent {
	background: #0277bd;
}
#style_switcher .switcher_app_themes li.switcher_theme_i .app_color_main {
	background: #fbc02d;
}
#style_switcher .switcher_app_themes li.switcher_theme_i .app_color_accent {
	background: #00acc1;
}
#style_switcher .switcher_app_themes li.switcher_theme_dark .app_color_main {
	background: #546e7a;
}
#style_switcher .switcher_app_themes li.switcher_theme_dark .app_color_accent {
	background: #009688;
}
#style_switcher_toggle {
	position: absolute;
	top: 8px;
	left: -44px;
	width: 44px;
	height: 36px;
	background: #fff;
	border-radius: 4px 0 0 4px;
	cursor: pointer;
	padding: 0 8px;
	-webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
	box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 1096;
}
#style_switcher_toggle .material-icons {
	font-size: 24px;
	line-height: 36px;
	color: #212121;
}
.app_theme_dark #style_switcher,
.app_theme_dark #style_switcher_toggle {
	background: #424242;
}
.app_theme_dark #style_switcher_toggle .material-icons {
	color: #cbcbcb;
}

.uk-autocomplete {
	width: 100% !important;
}
.uk-autocomplete .uk-dropdown {
	padding: 10px !important;
}



/*PRELOADER*/


/*loading overlay*/
.loading-overlay {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #000000ab;
	z-index: 9999;
}

.loading-container {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	padding: 0 50px;
}

.loading-text {
	display: block;
	font-size: 1.5rem;
	position: absolute;
	bottom: 25px;
	left: 0;
	right: 0;
	color: white;
	text-align: center;
	opacity: 0.8;
}

.loading-dot {
	position: relative;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 50%;
	margin-right: 15px;
	-webkit-animation: dot 1.5s cubic-bezier(0.17, 0.67, 0.83, 0.67) infinite;
	animation: dot 1.5s cubic-bezier(0.17, 0.67, 0.83, 0.67) infinite;
}

.loading-dot:nth-of-type(1) {
	margin-right: 0;
}

.loading-dot:nth-of-type(2) {
	-webkit-animation-delay: 0.175s;
	animation-delay: 0.175s;
}

.loading-dot:nth-of-type(3) {
	-webkit-animation-delay: 0.35s;
	animation-delay: 0.35s;
}

@-webkit-keyframes dot {
	0% {
		transform: translate3d(-1000%, 0, 0);
		opacity: 0;
	}
	20% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	80% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	100% {
		transform: translate3d(1000%, 0, 0);
		opacity: 0;
	}
}

@keyframes dot {
	0% {
		transform: translate3d(-1000%, 0, 0);
		opacity: 0;
	}
	20% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	80% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	100% {
		transform: translate3d(1000%, 0, 0);
		opacity: 0;
	}
}

/*loading overlay*/

/*PRELOADER*/


/* float panel */
.float_panel {
	position: fixed;
	right: 0;
	top: 140px;
	background: #fff;
	width: 240px;
	z-index: 1094;
	box-sizing: border-box;
	padding: 16px;
	margin-right: -246px;
	transition: margin 280ms cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
}
.float_panel.float_panel_active {
	margin-right: 0;
}

.float_panel_toggle {
	position: absolute;
	top: 8px;
	left: -44px;
	width: 44px;
	height: 36px;
	background: #fff;
	border-radius: 4px 0 0 4px;
	cursor: pointer;
	padding: 0 8px;
	box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.26);
	box-sizing: border-box;
	z-index: 1096;
}
.float_panel_toggle .material-icons {
	font-size: 24px;
	line-height: 36px;
	color: #212121;
}
/* float panel */


input.upper { text-transform: uppercase; }


.btn_click{
	cursor: pointer;
}


/*scrollbar*/

/* width */
::-webkit-scrollbar {
	width: 3px;
}



/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/*scrollbar*/

.pac-logo:after {
	content: none !important;
}
.pac-container  {
	z-index: 999999	!important;
}



/* Custom icon for SITES folder in the main file view */
.elfinder .elfinder-cwd-view-icons .elfinder-cwd-file:has(.elfinder-cwd-filename[title="SITES"]) .elfinder-cwd-icon-directory,
.elfinder .elfinder-dialog .elfinder-cwd-file:has(.elfinder-cwd-filename[title="SITES"]) .elfinder-cwd-icon-directory {
	background-image: url(../images/svg/sites.svg) !important;
}

/* Custom icon for SITES folder in the sidebar navigation based on title */
.elfinder .elfinder-navbar span[title$="/SITES"] > .elfinder-navbar-icon,
.elfinder .elfinder-navbar span[title$="/SITES"] > .elfinder-navbar-icon {
	background-image: url(../images/svg/sites.svg) !important;
}
