@charset "UTF-8";
/**
* Basis layout file
*/
/* Base File that contains all dependencies (mixins, vars etc.)*/
/**
* Base Settings
*/
/**
* Utility mixins
*/
/**
* Creates an icon, by default uses fontello
* Nested spans are no icons anymore
*/
/**
* A Mixin that creates a bottom border for a specific element and animates it on hover
* On active state this border is always active
* Don't forget to set position:relative to element
*/
/**
* Mixin to clear floats
*/
/**
* Mixin to support a specific retina display
*/
/**
* Mixin to support retina displays on a specific size
*/
/**
* Mixin that generates a simple grid
*/
/**
 * Mixin that creates a colored section that may include links
 */
/* Form Mixins */
/**
* Inputs
*/
/**
* Base Input Style
*/
/**
* Input style when focused
*/
/**
* Mixin to create a button style
*/
/**
* Mixin to create a multine ellipsis
*/
/**
* Tooltips
*/
/**
* Global Animations
*/

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes backgroundFadeIn {
  from {
    background: transparent;
  }
  to {
    background: rgba(0, 0, 0, 0.35);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**
* Creates a small bounce effect
*/

@keyframes bounceIn {
  0%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/**
* FadeIn Effect
*/

@keyframes fadeIn {
  0%, 100% {
    animation-timing-function: ease;
  }
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes darkenerFadeIn {
  0%, 100% {
    animation-timing-function: ease;
  }
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.35;
  }
}

@keyframes darkenerFadeOut {
  0%, 100% {
    animation-timing-function: ease;
  }
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
  }
}

/**
* Endless spinner, used for loaders
*/

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/**
* used by alert modals
*/

@keyframes fromBottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tabWobbleLine {
  0% {
    opacity: 0;
    left: calc(50% - (10px));
    width: 0%;
  }
  100% {
    opacity: 1;
    left: 0;
    width: calc(100% - (20px));
  }
}

@keyframes tabWobbleLineSmall {
  0% {
    opacity: 0;
    left: calc(50% - (10px));
    width: 0%;
  }
  100% {
    opacity: 1;
    left: 0;
    width: calc(100% - (10px));
  }
}

.animate-bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.animate-fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * 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,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* 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;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `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 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;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: 'fontello';
  src: url(../img/df911611bc6f6420a06037ac6127253e.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  margin-right: .01em;
  margin-left: 0.1rem;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
}

[class^="icon-"]:before.left-align, [class*=" icon-"]:before.left-align {
  margin-left: 0;
}

.button [class^="icon-"]:before, .button [class*=" icon-"]:before, .dropdown [class^="icon-"]:before, .dropdown [class*=" icon-"]:before {
  margin-right: 0.3rem;
  margin-left: 0.3rem;
}

.icon-up-dir:before {
  content: '\25B4';
}

/* '▴' */
.icon-down-dir:before {
  content: '\25BE';
}

/* '▾' */
.icon-star:before {
  content: '\2605';
}

/* '★' */
.icon-star-empty:before {
  content: '\2606';
}

/* '☆' */
.icon-check:before {
  content: '\2611';
}

/* '☑' */
.icon-reorder:before {
  content: '\2630';
}

/* '☰' */
.icon-attention:before {
  content: '\26A0';
}

/* '⚠' */
.icon-pencil:before {
  content: '\270E';
}

/* '✎' */
.icon-ok-circle:before {
  content: '\2714';
}

/* '✔' */
.icon-cancel-circle:before {
  content: '\2716';
}

/* '✖' */
.icon-attention-circle:before {
  content: '\2757';
}

/* '❗' */
.icon-plus-circle:before {
  content: '\2795';
}

/* '➕' */
.icon-minus-circle:before {
  content: '\2796';
}

/* '➖' */
.icon-cancel-circle2:before {
  content: '\E703';
}

/* '' */
.icon-info-circle:before {
  content: '\E705';
}

/* '' */
.icon-comment:before {
  content: '\E718';
}

/* '' */
.icon-chat:before {
  content: '\E720';
}

/* '' */
.icon-location:before {
  content: '\E724';
}

/* '' */
.icon-trash:before {
  content: '\E729';
}

/* '' */
.icon-bold:before {
  content: '\E77A';
}

/* '' */
.icon-italic:before {
  content: '\E77B';
}

/* '' */
.icon-mail:before {
  content: '\E800';
}

/* '' */
.icon-user:before {
  content: '\E801';
}

/* '' */
.icon-th-large:before {
  content: '\E802';
}

/* '' */
.icon-th-list:before {
  content: '\E803';
}

/* '' */
.icon-ok:before, .checkbox input[type="checkbox"] + .checkbox-container::after {
  content: '\E804';
}

/* '' */
.icon-cancel:before {
  content: '\E805';
}

/* '' */
.icon-plus:before {
  content: '\E806';
}

/* '' */
.icon-minus:before {
  content: '\E807';
}

/* '' */
.icon-help:before {
  content: '\E808';
}

/* '' */
.icon-help-circled:before {
  content: '\E809';
}

/* '' */
.icon-info:before {
  content: '\E80A';
}

/* '' */
.icon-home:before {
  content: '\E80B';
}

/* '' */
.icon-link:before {
  content: '\E80C';
}

/* '' */
.icon-unlink:before {
  content: '\E80D';
}

/* '' */
.icon-attach:before {
  content: '\E80E';
}

/* '' */
.icon-pin:before {
  content: '\E80F';
}

/* '' */
.icon-eye:before {
  content: '\E810';
}

/* '' */
.icon-tag:before {
  content: '\E811';
}

/* '' */
.icon-flag:before {
  content: '\E812';
}

/* '' */
.icon-forward:before {
  content: '\E813';
}

/* '' */
.icon-attention-alt:before {
  content: '\E814';
}

/* '' */
.icon-rss:before {
  content: '\E815';
}

/* '' */
.icon-cog:before {
  content: '\E816';
}

/* '' */
.icon-right-dir:before {
  content: '\E817';
}

/* '' */
.icon-left-dir:before {
  content: '\E818';
}

/* '' */
.icon-down-open:before, .select-element:after {
  content: '\E819';
}

/* '' */
.icon-up-open:before {
  content: '\E81A';
}

/* '' */
.icon-right-open:before, .image-container.has-next:after {
  content: '\E81B';
}

/* '' */
.icon-arrows-cw:before {
  content: '\E81C';
}

/* '' */
.icon-circle:before {
  content: '\E81D';
}

/* '' */
.icon-asterisk:before {
  content: '\E81E';
}

/* '' */
.icon-twitter-squared:before {
  content: '\E81F';
}

/* '' */
.icon-twitter:before {
  content: '\E820';
}

/* '' */
.icon-facebook-squared:before {
  content: '\E821';
}

/* '' */
.icon-facebook:before {
  content: '\E822';
}

/* '' */
.icon-linkedin-squared:before {
  content: '\E823';
}

/* '' */
.icon-linkedin:before {
  content: '\E824';
}

/* '' */
.icon-gplus-squared:before {
  content: '\E825';
}

/* '' */
.icon-gplus:before {
  content: '\E826';
}

/* '' */
.icon-headphones:before {
  content: '\E827';
}

/* '' */
.icon-picture:before {
  content: '\E828';
}

/* '' */
.icon-link-ext-alt:before {
  content: '\E829';
}

/* '' */
.icon-bell:before {
  content: '\E82A';
}

/* '' */
.icon-left-open:before, .image-container.has-prev:before {
  content: '\E82B';
}

/* '' */
.icon-filter:before {
  content: '\E82C';
}

/* '' */
.icon-cog-alt:before {
  content: '\E82D';
}

/* '' */
.icon-reply:before {
  content: '\E82E';
}

/* '' */
.icon-cw:before {
  content: '\E82F';
}

/* '' */
.icon-ccw:before {
  content: '\E830';
}

/* '' */
.icon-spin2:before {
  content: '\E831';
}

/* '' */
.icon-bell-alt:before {
  content: '\E832';
}

/* '' */
.icon-right-circled:before {
  content: '\E833';
}

/* '' */
.icon-left-circled:before {
  content: '\E834';
}

/* '' */
.icon-move:before {
  content: '\E835';
}

/* '' */
.icon-xing:before {
  content: '\E836';
}

/* '' */
.icon-xing-squared:before {
  content: '\E837';
}

/* '' */
.icon-thumbs-up-alt:before {
  content: '\E838';
}

/* '' */
.icon-thumbs-down-alt:before {
  content: '\E839';
}

/* '' */
.icon-resize-full:before {
  content: '\E83A';
}

/* '' */
.icon-ellipsis-vert:before {
  content: '\E83B';
}

/* '' */
.icon-ellipsis:before {
  content: '\E83C';
}

/* '' */
.icon-off:before {
  content: '\E83D';
}

/* '' */
.icon-cancel-1:before {
  content: '\E83E';
}

/* '' */
.icon-upload-cloud:before {
  content: '\E83F';
}

/* '' */
.icon-share:before {
  content: '\E840';
}

/* '' */
.icon-resize-full-alt:before {
  content: '\E841';
}

/* '' */
.icon-resize-small:before {
  content: '\E842';
}

/* '' */
.icon-sliders:before {
  content: '\E843';
}

/* '' */
.icon-smile:before {
  content: '\E844';
}

/* '' */
.icon-search-1:before {
  content: '\E845';
}

/* '' */
.icon-github-circled:before {
  content: '\E846';
}

/* '' */
.icon-lock-open-alt:before {
  content: '\E85A';
}

/* '' */
.icon-link-ext:before {
  content: '\F08E';
}

/* '' */
.icon-check-empty:before {
  content: '\F096';
}

/* '' */
.icon-bookmark-empty:before {
  content: '\F097';
}

/* '' */
.icon-blank:before {
  content: '\F0C8';
}

/* '' */
.icon-menu:before {
  content: '\F0C9';
}

/* '' */
.icon-list-bullet:before {
  content: '\F0CA';
}

/* '' */
.icon-mail-alt:before {
  content: '\F0E0';
}

/* '' */
.icon-comment-empty:before {
  content: '\F0E5';
}

/* '' */
.icon-chat-empty:before {
  content: '\F0E6';
}

/* '' */
.icon-quote-right:before {
  content: '\F10E';
}

/* '' */
.icon-globe:before {
  content: '\1F32E';
}

/* '\1f32e' */
.icon-thumbs-up:before {
  content: '\1F48D';
}

/* '\1f48d' */
.icon-thumbs-down:before {
  content: '\1F48E';
}

/* '\1f48e' */
.icon-volume-off:before {
  content: '\1F507';
}

/* '\1f507' */
.icon-volume-up:before {
  content: '\1F50A';
}

/* '\1f50a' */
.icon-lock:before {
  content: '\1F512';
}

/* '\1f512' */
.icon-bookmark:before {
  content: '\1F516';
}

/* '\1f516' */
.icon-search:before {
  content: '\1F55D';
}

/* '\1f55d' */
.icon-block:before {
  content: '\1F6AB';
}

/* '\1f6ab' */
.icon-download-cloud:before {
  content: '\E847';
}

/* '' */
.icon-angle-right:before {
  content: '\E848';
}

/* '' */
.icon-angle-left:before {
  content: '\E849';
}

/* '' */
.icon-angle-up:before {
  content: '\E84A';
}

/* '' */
.icon-angle-down:before {
  content: '\E84B';
}

/* '' */
.icon-file-pdf:before {
  content: '\E84C';
}

/* '' */
.icon-list-alt:before {
  content: '\E84D';
}

/* '' */
.icon-calendar:before {
  content: '\E84E';
}

/* '' */
.icon-whatsapp:before {
  content: '\E84F';
}

/* '' */
.icon-right-big:before {
  content: '\E850';
}

/* '' */
.icon-fire:before {
  content: '\E851';
}

/* '' */
html {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  color: #262626;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:-webkit-full-screen-ancestor {
  animation-name: none !important;
  will-change: initial;
}

body.loading {
  cursor: wait;
}

*, *:before, *:after {
  box-sizing: inherit;
}

p {
  margin: 0 0 1rem 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 18px;
  color: #262626;
}

h2 {
  font-size: 17px;
}

h3 {
  font-size: 15px;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #258db8;
  transition: color 0.2s ease;
  font-weight: 600;
}

a.thin {
  font-weight: normal;
}

a:hover {
  color: #39a9d7;
}

a:active {
  color: #144c63;
}

.badge {
  display: inline-block;
  font-size: 12px;
  background: #e6007e;
  color: #fff;
  line-height: 1.3;
  padding: 0 5px;
  border-radius: 3px;
  font-weight: bold;
}

.color-gray {
  color: #999;
}

.color-warning {
  color: #d84c3d;
}

.color-primary {
  color: #258db8;
}

.color-base {
  color: #262626 !important;
}

small,
.small-font {
  font-size: 12px;
  line-height: 1.5;
}

.fade-out {
  color: #999 !important;
}

.fade-out a {
  color: #999 !important;
  text-decoration: underline;
  font-weight: normal;
}

.fade-out a:hover {
  color: #666666 !important;
}

.unimportant {
  color: #ccc !important;
}

.unimportant a {
  color: #ccc !important;
  text-decoration: underline;
  font-weight: normal;
}

.unimportant a:hover {
  color: #999999 !important;
}

.inherit-link, .inherit-color a {
  color: #262626;
  text-decoration: underline;
  font-weight: normal;
}

.inherit-link:hover, .inherit-color a:hover, .breadcrumb a:hover {
  color: #999;
}

.inherit-link.plain, .inherit-color a.plain {
  text-decoration: none;
}

.text-centered {
  text-align: center;
}

.text-right {
  text-align: right;
}

ol, ul {
  padding-left: 1.3rem;
  margin-top: 0;
}

ol.plain, ul.plain {
  padding: 0;
  list-style: none;
}

ol.spacey li:not(:last-of-type), ul.spacey li:not(:last-of-type) {
  margin-bottom: .5rem;
}

ol.inline li, ul.inline li {
  display: inline;
}

ol.inline li:not(:last-of-type):after, ul.inline li:not(:last-of-type):after {
  content: ', ';
}

ol.inline.separate li:not(:last-of-type):after, ul.inline.separate li:not(:last-of-type):after {
  content: ' | ';
}

ol.inline.custom li:not(:last-of-type):after, ul.inline.custom li:not(:last-of-type):after {
  content: attr(data-separator);
}

ol.inline.spacey li, ul.inline.spacey li {
  display: inline-block;
}

ol.inline.spacey li:not(:last-of-type), ul.inline.spacey li:not(:last-of-type) {
  margin-right: 1.5rem;
  margin-bottom: 0;
}

ol.inline.spacey li:not(:last-of-type):after, ul.inline.spacey li:not(:last-of-type):after {
  content: '';
}

ol.space li:not(:first-of-type), ul.space li:not(:first-of-type) {
  margin-top: 1rem;
}

.highlight-span span {
  color: #258db8;
  font-weight: bold;
}

.unbreakable {
  white-space: nowrap;
}

.no-margin {
  margin: 0 !important;
}

.tight {
  margin-bottom: 0 !important;
}

.half-space {
  margin-bottom: .5rem !important;
}

.single-space {
  margin-bottom: 1rem !important;
}

.double-space {
  margin-bottom: 2rem !important;
}

.weight-normal {
  font-weight: normal !important;
}

kbd {
  background: #f1f1f1;
  padding: 2px;
  display: inline-block;
  border-radius: 3px;
}

::-moz-selection {
  background: #79c5e4;
  color: #fff;
}

::selection {
  background: #79c5e4;
  color: #fff;
}

.cursor-help {
  cursor: help !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

@media all and (min-width: 768px) {
  h1 {
    font-size: 20px;
  }
  ol.custom-desktop li, ul.custom-desktop li {
    display: inline-block;
  }
  ol.custom-desktop.spacey li:not(:last-of-type), ul.custom-desktop.spacey li:not(:last-of-type) {
    margin-bottom: 0rem;
  }
  ol.custom-desktop li:not(:last-of-type):after, ul.custom-desktop li:not(:last-of-type):after {
    content: attr(data-separator);
  }
}

@media all and (max-width: 767px) {
  ol.inline.spacey li, ul.inline.spacey li {
    display: block;
  }
  ol.inline.spacey li:after, ul.inline.spacey li:after {
    content: '';
  }
  ol.inline.spacey li:not(:last-of-type), ul.inline.spacey li:not(:last-of-type) {
    margin-bottom: .5rem;
    margin-right: 0;
  }
}

/**
* Code formatting for jekyll
*/
code {
  background: #f2f2f2;
  padding: 3px;
  word-break: break-all;
  word-break: break-word;
}

.code pre,
pre > code {
  display: block;
  font-family: monospace;
  padding: 20px;
  border-radius: 3px;
  border-bottom: 2px solid #cccccc;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  word-break: normal;
}

.linenos code {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: 1px solid #cccccc;
  padding: 20px 10px;
  text-align: center;
  color: #999;
}

.linenos + .code pre {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.highlighttable {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}

.highlighttable tbody {
  width: 100%;
  display: block;
}

.highlighttable tr {
  display: -ms-flexbox;
  display: flex;
}

.highlighttable .code {
  min-width: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  width: 100%;
}

.highlighttable .highlight {
  min-width: 0;
  width: 100%;
}

/**
* Basic Layout
*/
.wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  width: 100%;
  min-height: calc(100vh - 43px);
  margin-top: 43px;
}

.wrapper > * {
  -ms-flex: 1 100%;
      flex: 1 100%;
}

.wrapper-center {
  max-width: 1200px;
  margin: 43px auto 0 auto;
}

.content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.page-content {
  padding: 25px 10px;
}

.page-content .page-content {
  padding: 0 10px;
}

.header {
  height: 43px;
  background: #333333;
  font-size: 18px;
  position: fixed;
  z-index: 4;
  top: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.topbar {
  padding: 0 10px 0 5px;
  color: #aaa;
  line-height: 43px;
}

.navigation-toggler:before {
  margin-right: 10px;
  line-height: 43px;
}

.navigation-toggler span {
  font-size: 14px;
  vertical-align: 1px;
}

.footer {
  min-height: 100px;
  text-align: center;
}

.main {
  text-align: left;
}

.sidebar {
  will-change: transform;
  padding: 20px;
  background: #fafafa;
  position: fixed;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 265px;
  z-index: 22;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.35s ease;
  top: 0;
  right: 0;
}

.sidebar.open {
  transform: translate3d(0%, 0, 0);
}

.main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  min-width: 0;
}

.darkener {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
  opacity: 0.35;
  background: #000;
  z-index: 21;
  display: none;
  cursor: pointer;
}

.flex-align-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.darkener {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
  opacity: 0.35;
  background: #000;
  z-index: 21;
  display: none;
  cursor: pointer;
}

.darkener:not(.init) {
  animation-name: darkenerFadeOut;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.fixed-window-open .darkener.init {
  animation-name: darkenerFadeIn;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

/* Main Navigation Container, Off-Screen Navigation*/
.navbar-main {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: fixed;
  height: 100%;
  overflow-y: auto;
  font-size: 14px;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  background: #4a4a4a;
  z-index: 22;
  will-change: transform;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.35s ease;
  top: 0;
}

.navbar-main.open {
  transform: translate3d(0%, 0, 0);
}

.navbar-main a:not(.button) {
  color: #aaa;
}

.navbar-main a:not(.button):active:not(.logo) {
  background: rgba(0, 0, 0, 0.3) !important;
}

.navbar-main a:not(.button):hover {
  color: #fff;
}

.navbar-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-main .more-space {
  margin-top: 1rem;
}

.navbar-main ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.navbar-main ul li.active a {
  background: rgba(0, 0, 0, 0.2);
  font-weight: bold;
  color: #fff;
}

.navbar-main ul li a:not(.button) {
  padding: 10px 20px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.navbar-main ul li a:not(.button) .badge {
  position: absolute;
  right: 20px;
  margin-top: 2px;
}

.home {
  display: block;
  text-indent: -99999px;
  background: #333333;
  height: 43px;
}

.topbar {
  display: -ms-flexbox;
  display: flex;
}

.topbar-action {
  cursor: pointer;
  display: inline-block;
  padding: 0 3px;
  font-weight: bold;
  color: #aaa;
  min-width: 30px;
  text-align: center;
}

.topbar-action > * {
  pointer-events: none;
}

.topbar-action.active, .topbar-action:active {
  background: rgba(0, 0, 0, 0.2);
}

.topbar-action.right {
  margin-left: 15px;
}

.topbar-action:hover {
  color: #fff;
}

.topbar-action .badge {
  vertical-align: 1px;
}

.topbar-action span:not(.badge) {
  font-size: 14px;
  vertical-align: top;
}

.navigation-toggler {
  -ms-flex: 1;
      flex: 1;
  text-align: left;
  white-space: nowrap;
  padding-right: 30px;
}

.navigation-toggler span {
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  color: #fff;
}

.navigation-toggler span.logo {
  width: 100px;
}

@media all and (min-width: 768px) {
  .logo, .home {
    height: 43px;
  }
}

.navbar-main .badge, .subnav .badge {
  margin-left: 3px;
}

/**
* A general overflow container to visual
*/
.overflow-container {
  position: relative;
  transform: translateZ(0px);
}

.overflow-container:after {
  content: ' ';
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
  width: 60px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}

/**
* Subnavigation and tabs
*/
.subnav, .tabs {
  background: #f1f1f1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  transform: translateZ(0px);
}

.subnav li, .tabs li {
  display: inline-block;
  margin-right: 0;
}

.subnav li a, .subnav li .tab-item, .tabs li a, .tabs li .tab-item {
  padding: 0 10px;
  color: #616161;
  font-weight: normal;
  line-height: 43px;
  display: block;
}

.subnav li a:not(span):hover, .subnav li .tab-item:not(span):hover, .tabs li a:not(span):hover, .tabs li .tab-item:not(span):hover {
  color: #949494;
}

.subnav li.active a, .tabs li.active a {
  font-weight: bold;
  color: #616161;
}

.subnav li:last-of-type:not(.trigger), .tabs li:last-of-type:not(.trigger) {
  margin-right: 40px;
}

.subnav input, .tabs input {
  background: transparent !important;
}

.tabs {
  background: transparent;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
  z-index: 0;
}

.tabs li {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  position: relative;
}

.tabs li a, .tabs li .tab-item {
  line-height: 40px;
}

.tabs li.loading a {
  cursor: wait;
}

.tabs li.loading:after {
  animation-name: tabWobbleLine;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.tabs li:not(.no-hover):hover:after, .tabs li:not(.no-hover).active:after {
  left: 0;
  width: calc(100% - (20px));
  opacity: 1;
}

.tabs li:not(.no-hover):after {
  will-change: width, left, opacity;
  content: ' ';
  position: absolute;
  width: 0;
  background: #258db8;
  opacity: 0;
  height: 2px;
  bottom: 0;
  left: calc(50% - (10px));
  margin: 0 10px;
  transition: width .2s ease, left .2s ease, opacity .2s ease;
}

.tabs li.disabled a {
  color: #cccccc !important;
  cursor: not-allowed;
}

.tabs li.disabled:after {
  display: none;
}

.tabs li.link:after {
  display: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs-small li a, .tabs-small li .tab-item {
  line-height: 1 !important;
  padding-bottom: 5px !important;
  padding-left: 0 !important;
}

.tabs-small li:not(.no-hover):hover:after, .tabs-small li:not(.no-hover).active:after {
  width: calc(100% - (10px));
}

.tabs-small li:not(.no-hover):after {
  left: calc(50% - 10px);
  margin: 0 10px 0 0;
  height: 1px;
}

.tabs-small li.loading:after {
  animation-name: tabWobbleLineSmall;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.toggle-content {
  padding: 10px 0 0 10px;
  display: none;
}

.toggle-content.active {
  display: block;
}

.toggle-content-small {
  padding-left: 0;
}

@media all and (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
  body {
    overflow-y: scroll;
  }
  .aside {
    -ms-flex: 1 auto;
        flex: 1 auto;
  }
  .main {
    -ms-flex: 2 0px;
        flex: 2 0px;
  }
  .sidebar {
    -ms-flex-order: 1;
        order: 1;
  }
  .main {
    -ms-flex-order: 2;
        order: 2;
  }
  .content-wrapper {
    overflow: visible;
    padding: 0;
    position: static;
  }
  .subnav-content {
    margin: 20px 20px 0;
  }
  .page-content {
    padding: 30px 20px;
  }
  .page-content .page-content {
    padding: 0 20px;
  }
  .subnav {
    padding-left: 10px;
  }
  .sidebar:not(.sidebar-desktop) {
    max-width: 220px;
    min-width: 220px;
    will-change: inherit;
    position: static;
    height: auto;
    transform: none;
    transition: none;
    z-index: auto;
    overflow-y: visible;
  }
  .topbar {
    display: none;
  }
  .navbar-main {
    overflow: hidden;
    padding: 0 10px;
    position: relative;
    transform: none;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    width: 100%;
    background: transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .navbar-main .main-nav {
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
  }
  .navbar-main .more-space {
    margin-top: 0;
  }
  .navbar-main ul {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .navbar-main ul li a:active:not(.logo):not(.button),
  .navbar-main ul li.active a {
    background: none !important;
    color: #fff !important;
  }
  .navbar-main ul li:not(:last-of-type) {
    margin-right: 10px;
  }
  .navbar-main ul li a:not(.button) {
    line-height: 43px;
    padding: 0 10px;
    color: #aaa;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .navbar-main ul li a:not(.button) .badge {
    position: static;
  }
  .navbar-main ul li a:not(.button):hover {
    color: #fff;
  }
  .navbar-main ul .button {
    white-space: nowrap;
    margin-left: 10px;
  }
  .subnav li a, .tabs li a {
    padding: 0px 10px;
  }
  .home {
    background: none;
  }
  .home:not(.single-column) {
    width: 220px;
  }
  .home .logo {
    margin-left: 10px;
  }
  .wrapper {
    min-height: calc(100vh - 43px);
    margin-top: 43px;
  }
  .wrapper-center {
    margin: 43px auto 0 auto;
  }
  .header {
    height: 43px;
    background: #333;
  }
  .navigation-toggler:before {
    line-height: 43px;
  }
}

/**
* Layout in Large state
*/
@media all and (min-width: 1000px) {
  .hide-large {
    display: none;
  }
  .visible-large {
    display: block;
  }
  span.visible-large {
    display: inline;
  }
  .sidebar {
    max-width: 273px !important;
    min-width: 273px !important;
    will-change: inherit;
    position: static;
    height: auto;
    transform: none;
    transition: none;
    z-index: 0;
  }
  .subnav li, .tabs li {
    margin-right: 10px;
  }
  .home:not(.single-column) {
    width: 273px;
  }
  .header {
    padding: 0 50px 0 50px;
  }
  .content-wrapper {
    padding: 0 50px 0 50px;
  }
  .wrapper-full-width .header {
    padding: 0 70px 0 70px;
  }
  .wrapper-full-width .header .navbar-main {
    padding: 0;
  }
  .wrapper-full-width .header .navbar-main .logo {
    margin-left: 0;
  }
}

/**
* Form Base Component
*/
/**
* A Styled checkbox
*/
.multi-select-field {
  margin-top: 2px;
}

.multi-select-field.multi-row {
  display: -ms-flexbox;
  display: flex;
}

.multi-select-field.multi-row > input {
  min-width: 1px;
  -ms-flex: 1;
      flex: 1;
}

.multi-select-field.multi-row.center {
  margin-top: 0;
}

.multi-select-field.multi-row.center .checkbox {
  margin-bottom: 0;
}

.multi-select-field.multi-row .checkbox {
  margin-right: 10px;
  margin-bottom: 0;
}

.multi-select-field.multi-row .checkbox.empty {
  margin-right: 5px;
}

.multi-select-field.multi-row .checkbox:not(:last-of-type) {
  margin-right: 30px;
}

.multi-select-field .checkbox {
  margin-bottom: 10px;
}

.multi-select-field .checkbox:last-of-type {
  margin-bottom: 0;
}

.checkbox {
  padding: 0px 0 0 28px;
  position: relative;
  min-height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: block;
}

.checkbox > input {
  z-index: -1;
  position: absolute;
  left: 7px;
  top: 1px;
  width: 5px;
  height: 5px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none !important;
  box-shadow: none !important;
}

.checkbox .checkbox-container {
  line-height: 1.3;
  display: block;
}

.checkbox .checkbox-container::before {
  content: ' ';
  box-shadow: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  border-radius: 3px;
  background: #f1f1f1;
  border: none;
  transition: background .5s ease;
  top: 0;
}

.checkbox .checkbox-container::after {
  content: ' ';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #258db8 !important;
  transition: transform .3s ease;
  top: 0;
}

.checkbox:active .checkbox-container::before {
  background: #e4e4e4;
}

.checkbox input[type="checkbox"].invalid + .checkbox-container::before, .checkbox input[type="radio"].invalid + .checkbox-container::before {
  background: #fae9e7;
}

.checkbox input[type="checkbox"]:focus + .checkbox-container::before, .checkbox input[type="radio"]:focus + .checkbox-container::before {
  background: #e4e4e4;
}

.checkbox input[type="checkbox"] + .checkbox-container::after {
  font-family: "fontello";
  font-weight: normal !important;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  transform: scale3d(0, 0, 0) rotate3d(0, 0, 1, 90deg);
}

.checkbox input[type="checkbox"] + .checkbox-container::after:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}

.checkbox input[type="checkbox"] + .checkbox-container::after span {
  font-family: "Open Sans", Arial, sans-serif;
}

.checkbox input[type="radio"] + .checkbox-container::before {
  border-radius: 50%;
}

.checkbox input[type="radio"] + .checkbox-container::after {
  transform: scale3d(0, 0, 0);
  font-size: 10px;
  content: ' ';
  width: 10px;
  height: 10px;
  background: #258db8;
  border-radius: 50%;
  top: 5px;
  left: 5px;
}

.checkbox input[type="checkbox"]:checked + .checkbox-container::after {
  transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 0deg);
}

.checkbox input[type="radio"]:checked + .checkbox-container::after {
  transform: scale3d(1, 1, 1);
}

.checkbox input[disabled] + .checkbox-container {
  cursor: not-allowed;
  color: #bababa;
}

.checkbox input[disabled] + .checkbox-container::before, .checkbox input[disabled] + .checkbox-container::after {
  border-color: #e0e0e0;
  cursor: not-allowed;
  color: #bababa !important;
}

.checkbox input[disabled] + .checkbox-container::before {
  background: #fafafa;
}

.checkbox input[disabled][type="radio"] + .checkbox-container::after {
  background: #bababa !important;
}

/* An appended button */
.append-input {
  display: -ms-flexbox;
  display: flex;
}

.append-input .input, .append-input select, .append-input textarea,
.append-input input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
}

.append-input .button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  line-height: 33px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

label.error, label.invalid {
  color: #d84c3d !important;
}

label.error a, label.invalid a {
  color: #d84c3d !important;
  text-decoration: underline;
  font-weight: normal;
}

label.error a:hover, label.invalid a:hover {
  color: #92291d !important;
}

/**
* A general toggle element with less-class markup for forms
*/
.toggle-hide {
  padding-bottom: 0 !important;
}

.toggle-hide legend {
  color: #999 !important;
}

.toggle-hide legend a {
  color: #999 !important;
  text-decoration: none;
  font-weight: bold;
}

.toggle-hide legend a:hover {
  color: #666666 !important;
}

.toggle-hide .toggle-trigger, .toggle-hide a[data-toggle] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.toggle-hide .toggle-trigger i:before, .toggle-hide a[data-toggle] i:before {
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.toggle-hide .toggle-trigger.active > i:before, .toggle-hide a[data-toggle].active > i:before {
  transform: rotate(90deg);
}

.toggle-hide .toggle-container {
  display: none;
}

.toggle-hide.active .toggle-container {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

fieldset.toggle-hide.active {
  padding-bottom: 30px !important;
}

fieldset.toggle-hide:last-of-type {
  margin-bottom: -30px;
}

@media all and (min-width: 768px) {
  fieldset.toggle-hide.active {
    padding-bottom: 30px !important;
  }
  fieldset.toggle-hide:last-of-type {
    margin-bottom: -30px;
  }
}

input[type="range"] {
  background-color: transparent !important;
  padding: 0 !important;
}

input[type="range"]::-webkit-slider-thumb {
  z-index: 1;
  outline: 0;
  pointer-events: all;
  position: relative;
  background: #258db8;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background .3s ease, transform .2s ease;
  cursor: pointer;
  transform: scale3d(1, 1, 1);
  margin-top: -9px;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #39a9d7;
  transform: scale3d(1.2, 1.2, 1.2);
}

input[type="range"]::-webkit-slider-thumb:focus, input[type="range"]::-webkit-slider-thumb:active {
  background: #1c6c8e;
}

input[type="range"]::-moz-range-thumb {
  z-index: 1;
  pointer-events: all;
  position: relative;
  background: #258db8;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background .3s ease, transform .2s ease;
  cursor: pointer;
  transform: scale3d(1, 1, 1);
}

input[type="range"]::-moz-range-thumb:hover {
  background: #39a9d7;
  transform: scale3d(1.2, 1.2, 1.2);
}

input[type="range"]::-moz-range-thumb:focus, input[type="range"]::-moz-range-thumb:active {
  background: #1c6c8e;
}

input[type="range"]::-ms-thumb {
  z-index: 1;
  margin-top: 2px;
  pointer-events: all;
  position: relative;
  background: #258db8;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background .3s ease, transform .2s ease;
  cursor: pointer;
  transform: scale3d(1, 1, 1);
}

input[type="range"]::-ms-thumb:hover {
  background: #39a9d7;
  transform: scale3d(1.2, 1.2, 1.2);
}

input[type="range"]::-ms-thumb:focus, input[type="range"]::-ms-thumb:active {
  background: #1c6c8e;
}

input[type="range"][disabled]::-ms-thumb {
  cursor: not-allowed;
  background: #e6e6e6;
}

input[type="range"][disabled]::-ms-thumb:hover {
  background: #e6e6e6;
  transform: scale3d(1, 1, 1);
}

input[type="range"][disabled]::-ms-thumb:focus, input[type="range"][disabled]::-ms-thumb:active {
  background: #e6e6e6;
}

input[type="range"][disabled]::-moz-range-thumb {
  cursor: not-allowed;
  background: #e6e6e6;
}

input[type="range"][disabled]::-moz-range-thumb:hover {
  background: #e6e6e6;
  transform: scale3d(1, 1, 1);
}

input[type="range"][disabled]::-moz-range-thumb:focus, input[type="range"][disabled]::-moz-range-thumb:active {
  background: #e6e6e6;
}

input[type="range"][disabled]::-webkit-slider-thumb {
  cursor: not-allowed;
  background: #e6e6e6;
}

input[type="range"][disabled]::-webkit-slider-thumb:hover {
  background: #e6e6e6;
  transform: scale3d(1, 1, 1);
}

input[type="range"][disabled]::-webkit-slider-thumb:focus, input[type="range"][disabled]::-webkit-slider-thumb:active {
  background: #e6e6e6;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: #ccc;
  position: relative;
}

input[type="range"]::-ms-track {
  height: 3px;
  background: #ccc;
  position: relative;
  border-color: transparent;
  color: transparent;
  z-index: -1;
}

input[type=range]::-ms-fill-lower {
  background: #ccc;
  border-radius: 0;
}

input[type=range]::-ms-fill-upper {
  background: #ccc;
  border-radius: 0;
}

input::-moz-range-track {
  position: relative;
  z-index: -1;
  background-color: #ccc;
  border: 0;
}

input[type="range"][disabled]::-ms-fill-lower {
  background: #e0e0e0;
}

input[type="range"][disabled]::-ms-fill-upper {
  background: #e0e0e0;
}

input[type="range"][disabled]::-moz-range-track {
  background: #e0e0e0;
}

input[type="range"][disabled]::-ms-track {
  background: #e0e0e0;
}

input[type="range"][disabled]::-webkit-slider-runnable-track {
  background: #e0e0e0;
}

/**
* Normalized / Styled select-control
*/
.select-element {
  cursor: pointer;
  position: relative;
}

.select-element:after {
  font-family: "fontello";
  font-weight: normal !important;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: absolute;
  top: 1px;
  right: 1px;
  font-size: 70%;
  line-height: 35px;
  padding: 0 11px 0 11px;
  background: transparent;
  color: #a6a6a6;
  height: calc(100% - 2px);
  pointer-events: none;
  border-radius: 0 3px 3px 0;
  will-change: background, box-shadow;
  transition: background 0.5s ease;
}

.select-element:after:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}

.select-element:after span {
  font-family: "Open Sans", Arial, sans-serif;
}

.select-element:after:focus, .select-element:after:active {
  background: #e4e4e4;
  border-color: none;
}

.select-element.disabled:after {
  color: #e0e0e0;
}

.select-day {
  -ms-flex: 1;
      flex: 1;
  max-width: 75px;
}

.select-month {
  -ms-flex: 3;
      flex: 3;
}

.select-year {
  -ms-flex: 2;
      flex: 2;
  max-width: 100px;
}

select {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 28px !important;
}

select::-ms-expand {
  display: none;
}

/**
* Action bar for forms
*/
.form-actions {
  text-align: left;
  margin-top: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: column;
      flex-direction: column;
  border-top: 1px solid #f1f1f1;
  padding-top: 40px;
}

.form-actions.right {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.form-actions.plain {
  border-top: none;
  padding-top: 0;
}

.form-actions > div {
  -ms-flex: 1;
      flex: 1;
}

.form-actions > div > * {
  width: 100%;
  text-align: center;
}

.form-actions .right {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  -ms-flex-order: 1;
      order: 1;
}

.form-actions p {
  margin: 0;
}

.form-actions .button, .form-actions button, .form-actions input[type="submit"] {
  margin-bottom: 1rem;
}

.form-actions .left > label .checkbox-container {
  margin-bottom: 1rem;
}

@media all and (min-width: 768px) {
  .form-actions {
    margin-top: 30px;
    padding-top: 60px;
  }
}

form {
  position: relative;
}

.control-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.control-group p {
  margin: 10px 0 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.control-group p + p {
  margin-top: 0.5rem;
}

.control-group .controls {
  margin-bottom: 20px;
  position: relative;
}

.control-group .controls p {
  font-size: 12px;
  color: #999;
}

.control-group .controls p a {
  color: #999;
  font-weight: normal;
  cursor: pointer;
}

.control-group .controls p a:hover {
  color: #b3b3b3;
}

.control-group .controls p a:active {
  color: gray;
}

.control-group.tight .controls, .control-group:last-of-type .controls {
  margin-bottom: 0;
}

legend {
  font-size: 14px;
  font-weight: bold;
  color: #262626;
  margin-bottom: 30px;
}

.multi-form label:not(.checkbox):not(.checkbox),
.control-group > label:not(.checkbox), .control-group > .label:not(.checkbox) {
  font-weight: normal;
  font-size: 12px;
  color: #262626;
  margin-bottom: 3px;
  display: block;
}

fieldset {
  border: none;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}

fieldset:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

form.loading [type="submit"] {
  animation: progress-bar-stripes 2s linear infinite;
  cursor: wait;
  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: 40px 40px;
}

.input, select, textarea,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
  background-color: #f1f1f1;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  padding: 8px 10px;
  color: #262626;
  display: block;
  width: 100%;
  max-width: 100%;
  will-change: background-color, box-shadow;
  text-overflow: ellipsis;
  height: 35px;
  transition: background 0.5s ease;
  /**
  * Placeholder
  */
}

.input:focus, select:focus, textarea:focus,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):focus {
  background-color: #e4e4e4;
  border-color: none !important;
  box-shadow: none !important;
  outline: none;
}

.input.uneditable-input, select.uneditable-input, textarea.uneditable-input,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).uneditable-input {
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  height: auto;
  padding: 8px 10px;
  min-height: 35px;
}

.input.uneditable-input, .input[disabled], .input.disabled, select.uneditable-input, select[disabled], select.disabled, textarea.uneditable-input, textarea[disabled], textarea.disabled,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).uneditable-input,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"])[disabled],
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).disabled {
  background: #fafafa;
  color: #bababa;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

.input.uneditable-input:not(.copyable), .input[disabled]:not(.copyable), .input.disabled:not(.copyable), select.uneditable-input:not(.copyable), select[disabled]:not(.copyable), select.disabled:not(.copyable), textarea.uneditable-input:not(.copyable), textarea[disabled]:not(.copyable), textarea.disabled:not(.copyable),
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).uneditable-input:not(.copyable),
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"])[disabled]:not(.copyable),
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).disabled:not(.copyable) {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.input.copyable, select.copyable, textarea.copyable,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).copyable {
  cursor: copy;
}

.input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #b3b3b3;
  font-style: normal;
  font-weight: normal;
}

.input:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #b3b3b3;
  font-style: normal;
  opacity: 1;
  font-weight: normal;
}

.input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"])::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #b3b3b3;
  font-style: normal;
  opacity: 1;
  font-weight: normal;
}

.input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #b3b3b3;
  font-style: normal;
  font-weight: normal;
}

.input.invalid, select.invalid, textarea.invalid,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).invalid {
  background: #fae9e7;
  box-shadow: none;
  border: none;
}

.input.invalid.loading, select.invalid.loading, textarea.invalid.loading,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).invalid.loading {
  animation: progress-bar-stripes 2s linear infinite;
  cursor: wait;
  background-image: linear-gradient(45deg, rgba(216, 76, 61, 0.15) 25%, transparent 25%, transparent 50%, rgba(216, 76, 61, 0.15) 50%, rgba(216, 76, 61, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.input:invalid, select:invalid, textarea:invalid,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):invalid {
  box-shadow: none;
  border: none;
}

.input.loading, select.loading, textarea.loading,
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]).loading {
  transition: background 0s ease;
  position: relative;
  animation: progress-bar-stripes 2s linear infinite;
  cursor: wait;
  background-image: linear-gradient(45deg, rgba(204, 204, 204, 0.15) 25%, transparent 25%, transparent 50%, rgba(204, 204, 204, 0.15) 50%, rgba(204, 204, 204, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* Error Container */
.form-error {
  color: #d84c3d;
  font-size: 12px;
}

textarea {
  min-height: 12rem;
  padding: 10px;
}

/* A third row for appended items*/
form .append {
  margin: 10px 0 0 0;
  width: 100%;
}

form .append .checkbox {
  color: #999;
  font-size: 12px;
}

form .append p:first-of-type {
  margin-top: 0;
}

form:not(.wide) .append {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.list-form {
  width: 100%;
}

.append-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.append-form > :first-child {
  -ms-flex: 1;
      flex: 1;
}

.multi-form {
  display: -ms-flexbox;
  display: flex;
}

.multi-form > * {
  margin-left: 10px;
  min-width: 0;
  -ms-flex: 1;
      flex: 1;
}

.multi-form > *:first-child {
  margin-left: 0;
}

.multi-form.break, .multi-form.column {
  display: block;
  -ms-flex-direction: column;
      flex-direction: column;
}

.multi-form.break > *, .multi-form.column > * {
  margin-left: 0;
}

.multi-form.break > *:not(:last-of-type), .multi-form.column > *:not(:last-of-type) {
  margin-bottom: 10px;
}

.toolbar-form {
  padding: 0 4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  line-height: 43px;
  position: absolute;
  top: 0;
  min-width: 200px;
}

.toolbar-form input {
  padding-left: 2px !important;
}

.wrapped-input {
  position: relative;
}

.wrapped-input .add-on {
  position: absolute;
  top: 6px;
  left: 14px;
}

.wrapped-input .add-on [class^="icon-"] {
  position: relative;
  top: 2px;
  left: 3px;
}

.wrapped-input .loader {
  position: absolute;
  right: 8px;
  top: 8px;
}

.wrapped-input input {
  padding-left: 42px !important;
}

.subnav .form {
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@media all and (min-width: 768px) {
  .indent-label {
    margin-left: calc(25% + .375rem);
  }
  form:not(.wide) .control-group {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  form:not(.wide) .control-group > .label:not(.checkbox), form:not(.wide) .control-group > label:not(.checkbox) {
    min-width: 0;
    width: calc(25% + .375rem);
    text-align: right;
    padding: 5px 1rem 0 0;
    position: relative;
    top: 5px;
    margin-bottom: 0;
    word-wrap: break-word;
  }
  form:not(.wide) .no-label {
    margin-left: calc(25% + .375rem);
  }
  form:not(.wide) legend {
    margin-left: calc(25% + .375rem);
    margin-bottom: 30px;
  }
  form:not(.wide) .multi-select-field {
    margin-top: 7px;
  }
  form:not(.wide) .controls {
    width: calc(75% - .5rem);
    min-width: 330px;
  }
  form:not(.wide) fieldset:not(:last-of-type) {
    padding: 0 0 30px 0;
    margin-bottom: 30px;
  }
  .multi-form.break {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .multi-form.break > div:not(:first-of-type) {
    margin-left: 10px;
  }
  .multi-form.break > div:not(:last-of-type) {
    margin-bottom: 0;
  }
  .form-actions {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .form-actions label {
    margin-left: 1rem;
  }
  .form-actions .left > label {
    margin-left: 0;
  }
  .form-actions .left > label .checkbox-container {
    margin-bottom: 0;
  }
  .form-actions > div > * {
    width: auto;
    text-align: left;
  }
  .form-actions p {
    margin: 0 1rem;
  }
  .form-actions .button, .form-actions button, .form-actions input[type="submit"] {
    margin-bottom: 0;
  }
  .form-actions.break {
    margin-top: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .form-actions.break p {
    margin: 0;
  }
  .form-actions.break .button {
    margin: 1rem 1rem 1rem 0;
  }
  form:not(.wide) .append {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 10px 0 0 calc(25% + .375rem);
    max-width: calc(75% - .5rem);
    min-width: 330px;
  }
  form:not(.wide) .append.center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  form:not(.wide) .control-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.control-group:not(:last-of-type) .controls + .append {
  margin-top: -10px;
  margin-bottom: 20px;
}

@media all and (min-width: 900px) {
  form:not(.wide) .controls:not(.checkbox) {
    width: calc(50% - .75rem);
  }
  form:not(.wide) .append {
    -ms-flex: 1;
        flex: 1;
    min-width: 0;
    margin: 0 0 0 20px;
  }
  .control-group:not(:last-of-type) .controls + .append {
    margin-top: 0;
  }
}

/**
* Buttons
*/
.button {
  display: inline-block;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 11px 45px 10px;
  border-radius: 3px;
  font-weight: bold;
  background-image: none;
  transition: background-color 0.2s ease, background-image 2s ease, color 0.2s ease, border 0.2s ease;
  background-size: 40px 40px;
  font-size: 14px;
  will-change: background, background-image;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #83ba5e;
  border-color: transparent;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.button:active, .button:focus {
  outline: none;
}

.button > * {
  pointer-events: none;
}

.button.outline {
  background-color: transparent;
  border-color: #83ba5e;
  color: #83ba5e;
}

.button.outline:hover {
  background-color: #83ba5e;
  color: #fff;
}

.button.outline.disabled, .button.outline[disabled] {
  background-color: transparent;
  color: rgba(131, 186, 94, 0.2);
  border-color: rgba(131, 186, 94, 0.2);
}

.button:hover {
  color: #fff;
  background-color: rgba(131, 186, 94, 0.7);
}

.button:hover.loading {
  background-color: #83ba5e;
}

.button:active:not(.disabled):not([disabled]), .button:focus:not(.disabled):not([disabled]), .button.outline:active:not(.disabled):not([disabled]), .button.outline:focus:not(.disabled):not([disabled]) {
  transition: none;
  color: #fff;
  background-color: #6aa045;
  border-color: transparent;
}

.button.disabled, .button [disabled] {
  background-color: rgba(131, 186, 94, 0.4);
  color: #fff;
  cursor: not-allowed;
}

.button.block {
  text-align: center;
  display: block;
  width: 100%;
}

.button.action {
  padding-right: 11px;
  padding-left: 11px;
  text-align: center;
}

.button.small {
  font-size: 12px;
  padding: 7px 30px 7px;
}

.button.small.action {
  padding-left: 7px;
  padding-right: 7px;
}

.button.mini {
  font-size: 12px;
  padding: 5px 10px;
}

.button.secondary {
  background-color: #c3c3c3;
  border-color: transparent;
  color: #fff;
}

.button.secondary.outline {
  background-color: transparent;
  border-color: #c3c3c3;
  color: #c3c3c3;
}

.button.secondary.outline:hover {
  background-color: #c3c3c3;
  color: #fff;
}

.button.secondary.outline.disabled, .button.secondary.outline[disabled] {
  background-color: transparent;
  color: rgba(195, 195, 195, 0.2);
  border-color: rgba(195, 195, 195, 0.2);
}

.button.secondary:hover {
  color: #fff;
  background-color: rgba(195, 195, 195, 0.7);
}

.button.secondary:hover.loading {
  background-color: #c3c3c3;
}

.button.secondary:active:not(.disabled):not([disabled]), .button.secondary:focus:not(.disabled):not([disabled]), .button.secondary.outline:active:not(.disabled):not([disabled]), .button.secondary.outline:focus:not(.disabled):not([disabled]) {
  transition: none;
  color: #fff;
  background-color: #aaaaaa;
  border-color: transparent;
}

.button.secondary.disabled, .button.secondary [disabled] {
  background-color: rgba(195, 195, 195, 0.4);
  color: #fff;
  cursor: not-allowed;
}

.button.danger {
  background-color: #f08201;
  border-color: transparent;
  color: #fff;
}

.button.danger.outline {
  background-color: transparent;
  border-color: #f08201;
  color: #f08201;
}

.button.danger.outline:hover {
  background-color: #f08201;
  color: #fff;
}

.button.danger.outline.disabled, .button.danger.outline[disabled] {
  background-color: transparent;
  color: rgba(240, 130, 1, 0.2);
  border-color: rgba(240, 130, 1, 0.2);
}

.button.danger:hover {
  color: #fff;
  background-color: rgba(240, 130, 1, 0.7);
}

.button.danger:hover.loading {
  background-color: #f08201;
}

.button.danger:active:not(.disabled):not([disabled]), .button.danger:focus:not(.disabled):not([disabled]), .button.danger.outline:active:not(.disabled):not([disabled]), .button.danger.outline:focus:not(.disabled):not([disabled]) {
  transition: none;
  color: #fff;
  background-color: #bd6601;
  border-color: transparent;
}

.button.danger.disabled, .button.danger [disabled] {
  background-color: rgba(240, 130, 1, 0.4);
  color: #fff;
  cursor: not-allowed;
}

.button.alternative {
  background-color: #258db8;
  border-color: transparent;
  color: #fff;
}

.button.alternative.outline {
  background-color: transparent;
  border-color: #258db8;
  color: #258db8;
}

.button.alternative.outline:hover {
  background-color: #258db8;
  color: #fff;
}

.button.alternative.outline.disabled, .button.alternative.outline[disabled] {
  background-color: transparent;
  color: rgba(37, 141, 184, 0.2);
  border-color: rgba(37, 141, 184, 0.2);
}

.button.alternative:hover {
  color: #fff;
  background-color: rgba(37, 141, 184, 0.7);
}

.button.alternative:hover.loading {
  background-color: #258db8;
}

.button.alternative:active:not(.disabled):not([disabled]), .button.alternative:focus:not(.disabled):not([disabled]), .button.alternative.outline:active:not(.disabled):not([disabled]), .button.alternative.outline:focus:not(.disabled):not([disabled]) {
  transition: none;
  color: #fff;
  background-color: #1c6c8e;
  border-color: transparent;
}

.button.alternative.disabled, .button.alternative [disabled] {
  background-color: rgba(37, 141, 184, 0.4);
  color: #fff;
  cursor: not-allowed;
}

.button.loading {
  position: relative;
  animation: progress-bar-stripes 2s linear infinite;
  cursor: wait;
  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: 40px 40px;
}

.button.loadMoreButton {
  margin-top: 2rem;
  padding-right: 85px;
  padding-left: 85px;
}

.dropdown {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 22;
  font-size: 14px;
  -webkit-overflow-scrolling: touch;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  transform: translate3d(0, 100%, 0);
}

.dropdown.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translate3d(0, 0, 0);
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown ul a {
  padding: 15px 15px;
  display: block;
  border-bottom: 1px solid #cccccc;
  font-weight: normal;
  color: #262626;
  cursor: pointer;
}

.dropdown ul a.active, .dropdown ul a:hover {
  background: #f2f2f2;
}

.dropdown ul a:active {
  background: #d9d9d9;
}

.dropdown ul a i {
  color: #262626;
}

.dropdown ul a.disabled {
  cursor: not-allowed;
  background: none;
  color: #bababa;
}

.dropdown ul a.disabled > * {
  color: #bababa;
}

.dropdown ul li:last-of-type a {
  border-bottom: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dropdown ul li:first-of-type a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dropdown h3 {
  font-size: 14px;
  margin: 0;
  padding: 15px 15px;
  border-bottom: 1px solid #cccccc;
}

.dropdown.content {
  padding: 10px;
}

@media all and (max-width: 767px) {
  .modal .dropdown {
    top: 0 !important;
    bottom: auto;
    transform: translate3d(0, -100%, 0);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
  }
  .modal .dropdown.open {
    transform: translate3d(0, 0, 0);
  }
}

@media all and (min-width: 768px) {
  .dropdown {
    transform: none;
    left: auto;
    bottom: auto;
    width: auto;
    position: absolute;
    border-radius: 3px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
    max-width: 320px;
    transition: none;
    z-index: 3;
    min-width: 120px;
  }
  .dropdown:not(.open) {
    top: -100% !important;
    left: -100% !important;
    bottom: auto !important;
  }
  .dropdown ul a {
    padding: 12px 15px;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/*
* A Modal Component
*/
.modal-container {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Container that contains all Modals of an instance */
.modal-container {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  z-index: 22;
  display: none;
  -webkit-overflow-scrolling: touch;
  min-height: 100%;
  overflow-y: scroll;
}

.modal-container.front {
  z-index: 23;
}

.modal-container.open {
  display: block;
}

.modal-container > .loader-container {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  position: fixed;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  z-index: 101;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.modal-container.loading {
  cursor: wait;
}

.modal-container:after {
  pointer-events: none;
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.35);
  will-change: opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.modal-container.backdrop:after {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.modal {
  perspective: 1000px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  width: 100%;
  position: relative;
  background: #fff;
  display: none;
  padding: 30px 12px 25px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}

.modal.current {
  display: block;
  animation-name: bounceIn;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.modal.current ~ .loader-container {
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  background: #fff;
  padding: 10px;
  border-radius: 3px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}

.modal.modal-anim-end {
  animation-name: none !important;
}

.modal-container .modal.current {
  z-index: 10;
}

.modal-close {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 3;
  padding: 9px 10px 10px;
  font-size: 16px;
  cursor: pointer;
  color: #a6a6a6;
}

.modal-close:hover {
  color: #8c8c8c;
  background: #f2f2f2;
}

.modal-close:active {
  color: #404040;
  background: #e6e6e6;
}

.modal-title {
  margin: 0 0 1rem 0;
  color: #258db8;
}

.modal.alert {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 15px;
  box-shadow: none;
  word-wrap: break-word;
}

.modal.alert.current {
  animation-name: fromBottom;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

@media all and (min-width: 768px) {
  .modal-container {
    padding: 20px 20px 0 20px;
    top: 0;
  }
  .modal-container.open {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .modal {
    width: auto;
    min-width: 640px;
    max-width: 640px;
    margin-bottom: 20px;
    padding: 25px 30px 25px;
  }
  .modal.center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .modal.alert {
    padding-top: 25px;
    min-width: 0;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    width: 320px;
  }
  .modal.alert.current {
    animation-name: bounceIn;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-direction: normal;
  }
  .modal.small-modal {
    min-width: 0;
    width: 360px;
  }
}

/* helper classes */
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.display-block {
  display: block;
}

.flex-align-items-center, .multi-select-field.multi-row.center, .multi-form.center {
  -ms-flex-align: center;
      align-items: center;
}

.tooltip-container {
  z-index: 31;
  pointer-events: none;
  display: inline-block;
  opacity: 0;
  position: absolute;
  color: #fff;
  border-radius: 3px;
  padding: 7px 10px 7px;
  will-change: transform, opacity;
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-size: 12px;
  font-weight: 600;
  transform: translate3d(0, -6px, 0);
  background: #333;
  word-wrap: break-word;
  max-width: 250px;
  text-align: center;
}

.tooltip-container.error-tooltip {
  word-break: normal;
  background: #333;
}

.tooltip-container.open {
  opacity: 1;
}

.tooltip-container.is-collision-bottom:not(.is-collision-left).open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.is-collision-bottom:not(.is-collision-left):after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-bottom:not(.is-collision-left):after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 50%;
  margin-left: -5px;
}

.tooltip-container:not(.is-collision-bottom):not(.is-collision-left).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container:not(.is-collision-bottom):not(.is-collision-left):after, .tooltip-container:not(.is-collision-bottom):not(.is-collision-left):before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container:not(.is-collision-bottom):not(.is-collision-left):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.is-collision-left.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.is-collision-left.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-left.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 15px;
  margin-left: -5px;
}

.tooltip-container.is-collision-left:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.is-collision-left:not(.is-collision-bottom):after, .tooltip-container.is-collision-left:not(.is-collision-bottom):before {
  bottom: 100%;
  left: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-left:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.is-collision-right:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.is-collision-right:not(.is-collision-bottom):after, .tooltip-container.is-collision-right:not(.is-collision-bottom):before {
  bottom: 100%;
  left: calc(100% - 15px);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-right:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.is-collision-right.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.is-collision-right.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-right.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: calc(100% - 15px);
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-bottom:not(.is-collision-left).open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.error-tooltip.is-collision-bottom:not(.is-collision-left):after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-bottom:not(.is-collision-left):after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 50%;
  margin-left: -5px;
}

.tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left):after, .tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left):before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-left.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.error-tooltip.is-collision-left.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-left.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 15px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom):after, .tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom):before {
  bottom: 100%;
  left: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom):after, .tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom):before {
  bottom: 100%;
  left: calc(100% - 15px);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-right.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.error-tooltip.is-collision-right.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-right.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: calc(100% - 15px);
  margin-left: -5px;
}

/*
* A simple slider
*/

@keyframes slider {
  0%, 40% {
    transform: translate3d(0, 0, 0);
  }
  50%, 100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.slide {
  min-width: 100%;
  display: inline-block;
  position: relative;
  height: 100%;
  -ms-flex: 1;
      flex: 1;
  overflow: hidden;
}

.slider {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  display: -ms-flexbox;
  display: flex;
}

.slide-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
}

.slide-navigation label {
  font-size: 14px;
  color: #e6e6e6;
  cursor: pointer;
  transition: color 0.35s ease;
  margin: 0 5px;
}

.slide-navigation label > * {
  pointer-events: none;
}

.slide-container {
  overflow: hidden;
  -webkit-animation: bugfix infinite 1s;
}

.slide-container input {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

.slide-container input:nth-of-type(1):checked ~ .slider {
  transform: translate3d(0%, 0, 0);
}

.slide-container input:nth-of-type(1):checked ~ .slide-navigation li:nth-of-type(1) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(2):checked ~ .slider {
  transform: translate3d(-100%, 0, 0);
}

.slide-container input:nth-of-type(2):checked ~ .slide-navigation li:nth-of-type(2) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(3):checked ~ .slider {
  transform: translate3d(-200%, 0, 0);
}

.slide-container input:nth-of-type(3):checked ~ .slide-navigation li:nth-of-type(3) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(4):checked ~ .slider {
  transform: translate3d(-300%, 0, 0);
}

.slide-container input:nth-of-type(4):checked ~ .slide-navigation li:nth-of-type(4) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(5):checked ~ .slider {
  transform: translate3d(-400%, 0, 0);
}

.slide-container input:nth-of-type(5):checked ~ .slide-navigation li:nth-of-type(5) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(6):checked ~ .slider {
  transform: translate3d(-500%, 0, 0);
}

.slide-container input:nth-of-type(6):checked ~ .slide-navigation li:nth-of-type(6) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(7):checked ~ .slider {
  transform: translate3d(-600%, 0, 0);
}

.slide-container input:nth-of-type(7):checked ~ .slide-navigation li:nth-of-type(7) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(8):checked ~ .slider {
  transform: translate3d(-700%, 0, 0);
}

.slide-container input:nth-of-type(8):checked ~ .slide-navigation li:nth-of-type(8) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(9):checked ~ .slider {
  transform: translate3d(-800%, 0, 0);
}

.slide-container input:nth-of-type(9):checked ~ .slide-navigation li:nth-of-type(9) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(10):checked ~ .slider {
  transform: translate3d(-900%, 0, 0);
}

.slide-container input:nth-of-type(10):checked ~ .slide-navigation li:nth-of-type(10) label {
  color: #bfbfbf;
}

.slide-container input:nth-of-type(11):checked ~ .slider {
  transform: translate3d(-1000%, 0, 0);
}

.slide-container input:nth-of-type(11):checked ~ .slide-navigation li:nth-of-type(11) label {
  color: #bfbfbf;
}

@media all and (min-width: 768px) {
  .slide {
    min-width: calc(50% - 10px);
    margin-right: 10px;
  }
  .slide:nth-child(2n) {
    margin: 0 0 0 10px;
  }
}

/**
* Everything about photo lightbox
*/
.image-container {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  display: -ms-flexbox;
  display: flex;
}

.image-container img {
  width: 100%;
  height: auto;
}

.image-lightbox-meta {
  max-height: none;
}

.image-modal {
  padding: 0;
}

.image-container {
  background: black no-repeat center;
  background-size: contain;
  position: relative;
  opacity: 1;
  transition: opacity ease .2s;
}

.image-container.loading {
  cursor: wait !important;
  opacity: .6;
}

.image-container.has-prev:before {
  font-family: "fontello";
  font-weight: normal !important;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  left: 20px;
}

.image-container.has-prev:before:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}

.image-container.has-prev:before span {
  font-family: "Open Sans", Arial, sans-serif;
}

.image-container.has-next:after {
  font-family: "fontello";
  font-weight: normal !important;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  right: 20px;
}

.image-container.has-next:after:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}

.image-container.has-next:after span {
  font-family: "Open Sans", Arial, sans-serif;
}

.image-container.has-prev, .image-container.has-next {
  cursor: pointer;
}

.image-container.has-prev:before, .image-container.has-prev:after, .image-container.has-next:before, .image-container.has-next:after {
  text-shadow: 0 0 1px #000;
  position: absolute;
  color: #fff;
  font-size: 30px;
  top: calc(50% - 20px);
  transition: opacity .1s ease;
}

html:not(.touch) .image-container.has-prev:before, html:not(.touch) .image-container.has-prev:after, html:not(.touch) .image-container.has-next:before, html:not(.touch) .image-container.has-next:after {
  opacity: 0;
}

html:not(.touch) .image-container:hover.has-prev:before, html:not(.touch) .image-container:hover.has-prev:after, html:not(.touch) .image-container:hover.has-next:before, html:not(.touch) .image-container:hover.has-next:after {
  opacity: 1;
}

html:not(.touch) .image-modal .modal-close {
  transition: opacity .2s ease;
  opacity: 0;
}

html:not(.touch) .image-modal:hover .navigation {
  opacity: .8;
}

html:not(.touch) .image-modal:hover .lightbox-toolbar {
  opacity: 1;
}

html:not(.touch) .image-modal:hover .modal-close {
  opacity: 1;
}

.modal-close-lightbox {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}

@media all and (min-width: 768px) {
  .image-modal {
    min-height: 300px;
  }
}

@media all and (min-width: 1000px) {
  .image-modal {
    background: #f1f1f1;
    position: relative;
    min-width: 60%;
    max-width: 60%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .image-container {
    min-height: calc(80vh - 40px);
    width: 100%;
  }
  .image-container img {
    display: none;
  }
}

/**
* General visibility classes
* We can't use initial because IE10 needs to be supported
*/
.visible-large {
  display: none;
}

.visible-inline-flex-small,
.visible-inline-small,
.visible-between,
.visible-inline-block-small,
.visible-block-small,
.visible-small {
  display: none !important;
}

.visible-inline-block-large,
.visible-desktop,
.visible-block-desktop,
.visible-inline-desktop,
.visible-inline-block-desktop {
  display: none !important;
}

@media all and (max-width: 767px) {
  .visible-block-small,
  .visible-small {
    display: block !important;
  }
  .visible-inline-flex-small {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .visible-inline-small,
  span.visible-small:not(.visible-block-small):not(.visible-inline-block-small) {
    display: inline !important;
  }
  .visible-inline-block-small {
    display: inline-block !important;
  }
  .hide-small {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
  .visible-desktop {
    display: block !important;
  }
  .visible-inline-desktop {
    display: inline !important;
  }
  .visible-block-desktop {
    display: block !important;
  }
  .visible-inline-block-desktop {
    display: inline-block !important;
  }
  td.visible-desktop, th.visible-desktop {
    display: table-cell;
  }
}

@media all and (min-width: 900px) {
  .hide-between {
    display: none !important;
  }
  .visible-between {
    display: block !important;
  }
  td.visible-between, th.visible-between {
    display: table-cell;
  }
}

@media all and (min-width: 1000px) {
  .hide-large {
    display: none;
  }
  .visible-large {
    display: block;
  }
  span.visible-large {
    display: inline;
  }
  td.visible-large, th.visible-large {
    display: table-cell;
  }
  .visible-inline-block-large {
    display: inline-block !important;
  }
}

/**
* Everything about the subnavbar
*/
.navbar-sub {
  margin: 43px 0 0;
  background: #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  height: 43px;
}

.navbar-sub .subnav {
  max-width: 1200px;
  margin: 0 auto;
}

@media all and (min-width: 1000px) {
  .navbar-sub {
    padding: 0 50px;
  }
}

/* A Slidebar */
.slidebar > input {
  display: none;
}

.slidebar .trigger {
  display: none;
}

.subnav-trigger {
  display: none;
}

.subnav-content {
  overflow: hidden;
  position: relative;
  transform: translateZ(0px);
}

.subnav-content:after {
  content: ' ';
  background: linear-gradient(to right, rgba(241, 241, 241, 0) 0%, #f1f1f1 100%);
  width: 60px;
  height: 43px;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .navbar-sub {
    margin: 43px 0 0;
    height: 43px;
    background: #f1f1f1;
  }
  .subnav-content {
    position: relative;
    transform: translateZ(0px);
  }
  .subnav-content:after {
    content: ' ';
    background: linear-gradient(to right, rgba(241, 241, 241, 0) 0%, #f1f1f1 100%);
    width: 60px;
    height: 43px;
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
  }
  .subnav li a {
    line-height: 43px !important;
  }
}

@media all and (max-width: 767px) {
  .subnav-trigger:checked ~ .main .subnav-darkener {
    display: block;
    top: 43px;
    z-index: 1;
    animation-name: darkenerFadeIn;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-direction: normal;
  }
  .subnav-trigger:checked + .slidebar .subnav {
    transform: translate3d(0, 0, 0);
    transition: transform 0.35s ease;
  }
  .subnav-trigger:checked + .slidebar .subnav li.active {
    -ms-flex-order: 1;
        order: 1;
  }
  .subnav-trigger:checked + .slidebar .subnav li > label > i {
    transform: rotate3d(0, 0, 1, 180deg);
  }
  .subnav-trigger:not(:checked) + .slidebar .subnav .trigger {
    width: 100%;
  }
  .slidebar {
    overflow: visible;
    position: relative;
    height: 43px;
    z-index: 2;
  }
  .slidebar .subnav {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    transform: translate3d(0, -100%, 0) translate3d(0, 43px, 0);
    transition: transform 0s ease;
    margin-bottom: -100%;
    border-bottom: 1px solid #f1f1f1;
  }
  .slidebar .subnav li {
    -ms-flex-order: 1;
        order: 1;
  }
  .slidebar .subnav li.active {
    -ms-flex-order: 99;
        order: 99;
  }
  .slidebar .subnav li.trigger {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: block;
    position: absolute;
    bottom: 0;
    height: 100%;
    text-indent: 0;
    right: 0;
    color: #262626;
  }
  .slidebar .subnav li.trigger > label {
    width: 100%;
    height: 100%;
    margin: 0;
    text-indent: 0;
    padding: 0 26px;
    cursor: pointer;
    bottom: 0;
    position: absolute;
    right: 0;
    perspective: 1000px;
  }
  .slidebar .subnav li.trigger > label > i {
    transition: transform .3s ease;
    position: absolute;
    bottom: 12.5px;
    right: 16px;
  }
  .slidebar:after {
    display: none;
  }
}

/* A Breadcrumb */
.breadcrumb {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  max-width: 100%;
  *zoom: 1;
  color: #ccc;
  list-style-type: none;
  font-size: 14px;
  margin: 0;
}

.breadcrumb:before, .breadcrumb:after {
  content: " ";
  display: table;
}

.breadcrumb:after {
  clear: both;
}

.breadcrumb a {
  margin-left: 4px;
  color: #ccc;
  font-weight: normal;
}

.breadcrumb li {
  display: inline;
  margin-left: 1px;
}

.breadcrumb li:first-of-type {
  margin-left: 0;
}

.breadcrumb li:first-of-type a {
  margin-left: 0;
}

.breadcrumb li:before {
  content: " \B7";
  font-size: 1em;
}

.breadcrumb li:first-of-type:before {
  content: " ";
}

@media all and (min-width: 1000px) {
  .breadcrumb {
    font-size: 18px;
  }
}

@media only screen and (orientation: portrait) {
  .breadcrumb li {
    margin-left: 0;
  }
  .breadcrumb li a {
    display: none;
    margin-left: 0;
  }
  .breadcrumb li:before {
    display: none;
  }
  .breadcrumb li:last-of-type:not(:first-of-type):before {
    display: inline;
    content: "\B7    ... \B7";
  }
  .breadcrumb li:last-of-type:not(:first-of-type) a {
    margin-left: 4px;
  }
  .breadcrumb li:first-of-type a,
  .breadcrumb li:last-of-type a {
    display: inline;
    margin-right: 1px;
  }
  .breadcrumb li:first-of-type:after,
  .breadcrumb li:last-of-type:after {
    content: "";
  }
}

/**
* Everything about pagination
*/
.paginator {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  padding: 0;
}

.paginator a, .paginator span {
  display: block;
  padding: 4px 15px;
  color: #999;
  border-radius: 3px;
  transition: background 0.35s ease;
  will-change: background;
  background: #f1f1f1;
}

.paginator a i, .paginator span i {
  vertical-align: middle;
}

.paginator .item {
  margin: 0 10px 0 0;
}

.paginator .item.current a, .paginator .item.current span {
  background: #83ba5e;
  color: #fff;
}

.paginator .item:last-child {
  margin: 0;
}

html:not(.touch) .paginator a {
  background: transparent;
}

html:not(.touch) .paginator a:hover {
  background: #f1f1f1;
}

html:not(.touch) .paginator a:active {
  background: #d8d8d8;
}

@media all and (max-width: 767px) {
  .paginator {
    width: 100%;
    margin-top: 2rem;
  }
  .paginator .prev ~ .next {
    margin-left: 10px;
  }
  .paginator .item {
    margin: 0 10px 0 0;
  }
  .paginator .item.arrow {
    width: 100%;
    text-align: center;
    display: block;
  }
  .paginator .item:not(.arrow) {
    display: none;
  }
}

/**
* Labeled definition list
*/
.labeled {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1rem 0 0 0;
  border-bottom: 1px solid #f1f1f1;
}

.labeled > dt {
  color: #262626;
  font-size: 12px;
  font-weight: normal;
}

.labeled > dd {
  margin: 0 0 1rem 0;
}

.labeled > dd + dt {
  margin-top: -0.5rem;
}

.labeled:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.labeled.alternate > dt {
  color: #262626;
  font-size: 14px;
  font-weight: normal;
}

.labeled.alternate > dd {
  color: #999 !important;
}

.labeled.alternate > dd a {
  color: #999 !important;
  text-decoration: underline;
  font-weight: normal;
}

.labeled.alternate > dd a:hover {
  color: #666666 !important;
}

.labeled.alternate > dd + dt {
  margin-top: 0;
}

.labeled.last-tight:last-of-type dd:last-of-type,
.labeled.last-tight:last-of-type dt:last-of-type {
  margin-bottom: 0;
}

.labeled:not(.wide) > dt {
  margin-bottom: 3px;
}

@media all and (min-width: 768px) {
  .labeled:not(.wide) {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .labeled:not(.wide) > dd ~ dd,
  .labeled:not(.wide) > dt ~ dt {
    margin-top: -0.5rem;
  }
  .labeled:not(.wide) > dt {
    width: calc(25% + .375rem);
    min-width: 0;
    padding: 5px 1rem 0 0;
    padding-top: 0;
    margin-bottom: calc(1rem - 1px);
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: right;
  }
  .labeled:not(.wide) > dd {
    padding: 5px 1rem 0 0;
    padding-top: 0;
    width: calc(75% - .5rem);
  }
  .labeled:not(.wide).three-columns > dd {
    padding-right: 0;
  }
  .labeled:not(.wide).nowrap > dt {
    white-space: nowrap;
  }
}

@media all and (min-width: 900px) {
  .labeled:not(.wide).three-columns > dd {
    padding-right: calc(25% + .375rem);
  }
  .labeled:not(.wide).between-thirty-sixty > dt {
    width: 35%;
  }
  .labeled:not(.wide).between-thirty-sixty > dd {
    width: 65%;
  }
  .labeled:not(.wide).between-fifty-fifty > dd,
  .labeled:not(.wide).between-fifty-fifty > dt {
    width: 50%;
  }
}

@media all and (min-width: 768px) {
  .labeled:not(.wide).desktop-fifty-fifty > dd,
  .labeled:not(.wide).desktop-fifty-fifty > dt {
    width: 50%;
  }
}

/* Everything about tables */
table {
  width: 100%;
  border-spacing: 0;
  margin: 0rem 0 1rem 0;
}

table thead tr, table tbody tr {
  border-top: 1px solid #f1f1f1;
  transition: background 0.1s ease;
}

table tbody tr:last-of-type {
  border-bottom: 1px solid #f1f1f1;
}

table th {
  text-align: left;
  color: #258db8;
  font-weight: normal;
}

table th, table td {
  padding: 10px 1rem 10px 0;
}

table th:not(:first-of-type), table td:not(:first-of-type) {
  padding-left: 5px;
}

table th:last-of-type, table td:last-of-type {
  padding-right: 5px;
}

table th:first-of-type, table td:first-of-type {
  padding-left: 5px;
}

table:not(.no-hover) tbody > tr:hover {
  background: #f8f8f8;
}

table th.one, table td.one {
  width: 8.33333%;
}

table th.two, table td.two {
  width: 16.66667%;
}

table th.three, table td.three {
  width: 25%;
}

table th.four, table td.four {
  width: 33.33333%;
}

table th.five, table td.five {
  width: 41.66667%;
}

table th.six, table td.six {
  width: 50%;
}

table th.seven, table td.seven {
  width: 58.33333%;
}

table th.eight, table td.eight {
  width: 66.66667%;
}

table th.nine, table td.nine {
  width: 75%;
}

table th.ten, table td.ten {
  width: 83.33333%;
}

table th.eleven, table td.eleven {
  width: 91.66667%;
}

@media all and (max-width: 767px) {
  table th.small-one, table td.small-one {
    width: 8.33333%;
  }
  table th.small-two, table td.small-two {
    width: 16.66667%;
  }
  table th.small-three, table td.small-three {
    width: 25%;
  }
  table th.small-four, table td.small-four {
    width: 33.33333%;
  }
  table th.small-five, table td.small-five {
    width: 41.66667%;
  }
  table th.small-six, table td.small-six {
    width: 50%;
  }
  table th.small-seven, table td.small-seven {
    width: 58.33333%;
  }
  table th.small-eight, table td.small-eight {
    width: 66.66667%;
  }
  table th.small-nine, table td.small-nine {
    width: 75%;
  }
  table th.small-ten, table td.small-ten {
    width: 83.33333%;
  }
  table th.small-eleven, table td.small-eleven {
    width: 91.66667%;
  }
}

table.nowrap th, table.nowrap td {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 10px;
}

table.plain tr {
  border: none !important;
}

table.fixed {
  table-layout: fixed;
}

table.align-top td {
  vertical-align: top;
}

@media all and (max-width: 767px) {
  table.break tr, table.break td, table.break th {
    display: block;
    width: 100%;
  }
  table.break th, table.break td {
    padding: 6px 1rem 6px 0;
  }
}

/* All stuff about listings */
.listing {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  transition: background 0.2s ease;
  will-change: background;
  margin: 0;
}

.listing:hover:not(.editor) {
  background: #f8f8f8;
}

.listing h4 {
  margin: 0;
}

.listing .color-warning {
  margin: 0 0 .5rem 0;
}

.listing.highlight:before {
  content: ' ';
  position: absolute;
  width: 2px;
  background: #258db8;
  left: 0;
  height: 100%;
  top: 0;
  pointer-events: none;
}

.listing.centered {
  -ms-flex-align: center;
      align-items: center;
}

.listing .right-absolute {
  padding-right: 10px;
}

.listing:first-of-type {
  border-top: 1px solid #f1f1f1;
  margin-top: 0;
}

.listing p {
  margin: 0;
}

.listing .right-absolute {
  position: absolute;
  right: 0;
  padding: 0 0 0 10px;
  top: -10px;
  background: #fff;
}

.listing .title {
  -ms-flex: 1;
      flex: 1;
  padding: 0 20px 0 10px;
  min-width: 0;
}

.listing .avatar-row + .title {
  padding-left: 0;
}

.listing .meta-bar {
  font-size: 12px;
  color: #999;
  padding: 0 12px;
}

.listing .meta-bar .stats > * {
  min-width: 40px;
  display: inline-block;
}

.listing .actions {
  transition: opacity 0.2s ease;
  padding: 1.75rem 0 5px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.listing .actions > * {
  -ms-flex: 1;
      flex: 1;
}

.listing .actions .right {
  text-align: right;
}

.listing .actions .right .dropdown {
  text-align: left;
}

.clickable {
  cursor: pointer;
}

.clickable:active {
  background: #eeeeee;
}

.control-row {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0 10px 0 0;
}

.equal-row {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-direction: column;
      flex-direction: column;
}

.equal-row > * {
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
}

.equal-row > * > * {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-row {
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
}

.avatar-row {
  min-width: 84px;
}

.avatar-row .stats {
  text-align: center;
  margin-top: 5px;
}

.avatar-row .avatar {
  margin: 0 auto;
}

.avatar-row + .content-row {
  padding-left: 0;
}

.avatar-row-small {
  min-width: 36px !important;
  max-width: 36px !important;
  margin-right: 13px !important;
  margin-left: 13px !important;
}

.avatar-row-small .avatar {
  width: 100%;
}

html:not(.touch) .listing:not(:hover) .actions {
  opacity: 0;
}

html:not(.touch) .listing:not(:hover) .control-row .button, html:not(.touch) .listing:not(:hover) .transparent-actions .button {
  background: transparent;
  color: #999;
}

html:not(.touch) .fade-listing:not(:hover) .fade-out {
  color: #d9d9d9;
}

@media all and (min-width: 768px) {
  .control-row {
    padding: 0 20px;
  }
  .meta-bar .stats > * {
    min-width: 50px;
  }
  .content-row {
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }
  .listing.min-listing {
    min-height: 0;
  }
  .equal-row {
    -ms-flex-direction: row;
        flex-direction: row;
  }
  .equal-row > * {
    margin-right: 30px;
  }
  .avatar-row {
    min-width: 84px;
  }
  .avatar-row + .content-row .equal-row > .smaller {
    max-width: 30%;
  }
  .equal-row > .smaller {
    max-width: calc(30% - 19px);
  }
}

@media all and (min-width: 1000px) {
  .content-row {
    max-width: 60%;
  }
  .content-row.full-width {
    max-width: 100%;
  }
  .listing .right-absolute {
    top: 10px;
    padding: 0;
    background: transparent;
    right: 10px;
  }
}

.panel {
  width: 100%;
  padding: 15px;
  background: #f1f1f1;
  border-radius: 3px;
}

.panel.alert {
  background: #fae9e7;
  color: #d84c3d !important;
}

.panel.alert a {
  color: #d84c3d !important;
  text-decoration: underline;
  font-weight: normal;
}

.panel.alert a:hover {
  color: #92291d !important;
}

.panel.success {
  background: #ebf7ec;
  color: #43A047 !important;
}

.panel.success a {
  color: #43A047 !important;
  text-decoration: underline;
  font-weight: normal;
}

.panel.success a:hover {
  color: #255827 !important;
}

.panel.danger {
  background: #ffedd8;
  color: #f08201 !important;
}

.panel.danger a {
  color: #f08201 !important;
  text-decoration: underline;
  font-weight: normal;
}

.panel.danger a:hover {
  color: #8a4b01 !important;
}

.panel.inline-panel {
  display: inline-block;
  width: auto;
}

.panel ul, .panel ol {
  margin: 0;
}

.toggle-content + .panel {
  margin-top: 1.5rem;
}

/**
* Flex-Showcase
*/
.flex-showcase {
  width: 100%;
  overflow: hidden;
}

.flex-showcase ul {
  padding: 0;
  margin: 0;
  width: calc(100% + 50px);
  transform: translate3d(0%, 0, 0);
  display: -ms-flexbox;
  display: flex;
  height: 200px;
}

.flex-showcase ul > * {
  -ms-flex: 1;
      flex: 1;
  min-width: 25%;
  background: red;
  display: block;
  padding: 20px;
  color: #fff;
}

.flex-showcase ul > *:first-of-type {
  margin-left: -50px;
}

.fixed-window-open {
  overflow: hidden;
}

.fixed-window-open body {
  overflow: hidden;
}

.loader {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid transparent;
  position: relative;
  animation: spin 1s infinite cubic-bezier(0.37, 0.73, 0.62, 0.28);
}

.loader:before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: -4px;
  top: -4px;
  border-right: 4px solid #d9d9d9;
  border-top: 4px solid #d9d9d9;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #d9d9d9;
}

.loader.small {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.loader.small:before {
  width: 20px;
  height: 20px;
  left: -2px;
  top: -2px;
  border-right-width: 2px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-bottom-width: 2px;
}

/*# sourceMappingURL=../maps/base.map*/