@charset "UTF-8";
/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 90, paper/mixins/_chartist.scss */
.ct-blue {
  stroke: #7A9E9F !important;
}

/* line 93, paper/mixins/_chartist.scss */
.ct-azure {
  stroke: #68B3C8 !important;
}

/* line 96, paper/mixins/_chartist.scss */
.ct-green {
  stroke: #7AC29A !important;
}

/* line 99, paper/mixins/_chartist.scss */
.ct-orange {
  stroke: #F3BB45 !important;
}

/* line 102, paper/mixins/_chartist.scss */
.ct-red {
  stroke: #EB5E28 !important;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
/* line 42, paper/plugins/_animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 49, paper/plugins/_animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 54, paper/plugins/_animate.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 59, paper/plugins/_animate.scss */
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

/* line 65, paper/plugins/_animate.scss */
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

/* line 105, paper/plugins/_animate.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 140, paper/plugins/_animate.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 166, paper/plugins/_animate.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* line 195, paper/plugins/_animate.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* line 224, paper/plugins/_animate.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

/*!
 * FullCalendar v3.1.0 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2016 Adam Shaw
 */
/* line 7, paper/plugins/_fullcalendar.scss */
.fc {
  direction: ltr;
  text-align: left;
}

/* line 12, paper/plugins/_fullcalendar.scss */
.fc-rtl {
  text-align: right;
}

/* line 16, paper/plugins/_fullcalendar.scss */
body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
/* line 24, paper/plugins/_fullcalendar.scss */
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-popover {
  border-color: #ddd;
}

/* line 34, paper/plugins/_fullcalendar.scss */
.fc-unthemed .fc-popover {
  background-color: #FFFFFF;
}

/* line 38, paper/plugins/_fullcalendar.scss */
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header {
  background: #E3E3E3;
}

/* line 43, paper/plugins/_fullcalendar.scss */
.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666666;
}

/* line 47, paper/plugins/_fullcalendar.scss */
.fc-unthemed .fc-today {
  background: #F5F5F5;
}

/* line 51, paper/plugins/_fullcalendar.scss */
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */
}

/* line 57, paper/plugins/_fullcalendar.scss */
.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */
}

/* line 63, paper/plugins/_fullcalendar.scss */
.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
/* line 72, paper/plugins/_fullcalendar.scss */
.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
/* line 99, paper/plugins/_fullcalendar.scss */
.fc-icon:after {
  position: relative;
  margin: 0 -1em;
  /* ensures character will be centered, regardless of width */
}

/* line 104, paper/plugins/_fullcalendar.scss */
.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
  left: 3%;
}

/* line 112, paper/plugins/_fullcalendar.scss */
.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
  left: -3%;
}

/* line 120, paper/plugins/_fullcalendar.scss */
.fc-icon-left-double-arrow:after {
  content: "\000AB";
  font-size: 160%;
  top: -7%;
}

/* line 126, paper/plugins/_fullcalendar.scss */
.fc-icon-right-double-arrow:after {
  content: "\000BB";
  font-size: 160%;
  top: -7%;
}

/* line 132, paper/plugins/_fullcalendar.scss */
.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
  left: -2%;
}

/* line 139, paper/plugins/_fullcalendar.scss */
.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
  left: 2%;
}

/* line 146, paper/plugins/_fullcalendar.scss */
.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%;
}

/* line 152, paper/plugins/_fullcalendar.scss */
.fc-icon-x:after {
  content: "\000D7";
  font-size: 200%;
  top: 6%;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
/* line 162, paper/plugins/_fullcalendar.scss */
.fc button {
  border-radius: 20px;
  box-sizing: border-box;
  border-width: 2px;
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 18px;
  border-color: #66615B;
  color: #66615B;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
}

/* line 6, paper/mixins/_buttons.scss */
.fc button:hover, .fc button:focus, .fc button:active, .fc button.active,
.open > .fc button.dropdown-toggle {
  background-color: #66615B;
  color: rgba(255, 255, 255, 0.85);
  border-color: #66615B;
}

/* line 14, paper/mixins/_buttons.scss */
.fc button:hover .caret, .fc button:focus .caret, .fc button:active .caret, .fc button.active .caret,
.open > .fc button.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.fc button.disabled, .fc button.disabled:hover, .fc button.disabled:focus, .fc button.disabled.focus, .fc button.disabled:active, .fc button.disabled.active, .fc button:disabled, .fc button:disabled:hover, .fc button:disabled:focus, .fc button:disabled.focus, .fc button:disabled:active, .fc button:disabled.active, .fc button[disabled], .fc button[disabled]:hover, .fc button[disabled]:focus, .fc button[disabled].focus, .fc button[disabled]:active, .fc button[disabled].active,
fieldset[disabled] .fc button,
fieldset[disabled] .fc button:hover,
fieldset[disabled] .fc button:focus,
fieldset[disabled] .fc button.focus,
fieldset[disabled] .fc button:active,
fieldset[disabled] .fc button.active {
  background-color: transparent;
  border-color: #66615B;
}

/* line 34, paper/mixins/_buttons.scss */
.fc button.btn-fill {
  color: #FFFFFF;
  background-color: #66615B;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.fc button.btn-fill:hover, .fc button.btn-fill:focus, .fc button.btn-fill:active, .fc button.btn-fill.active,
.open > .fc button.btn-fill.dropdown-toggle {
  background-color: #484541;
  color: #FFFFFF;
  border-color: #484541;
}

/* line 49, paper/mixins/_buttons.scss */
.fc button.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.fc button.btn-simple:hover, .fc button.btn-simple:focus, .fc button.btn-simple:active, .fc button.btn-simple.active,
.open > .fc button.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #484541;
}

/* line 64, paper/mixins/_buttons.scss */
.fc button.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.fc button .caret {
  border-top-color: #66615B;
}

/* line 175, paper/plugins/_fullcalendar.scss */
.fc button:hover, .fc button:focus {
  outline: 0 !important;
}

/* line 179, paper/plugins/_fullcalendar.scss */
.fc button:active, .fc button.active,
.open > .fc button.dropdown-toggle {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 !important;
}

/* line 186, paper/plugins/_fullcalendar.scss */
.fc button.btn-icon {
  border-radius: 25px;
  padding: 6px 10px;
}

/* line 189, paper/plugins/_fullcalendar.scss */
.fc button.btn-icon i {
  margin-right: 0px;
}

/* Firefox has an annoying inner border */
/* line 198, paper/plugins/_fullcalendar.scss */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

/* line 200, paper/plugins/_fullcalendar.scss */
.fc-state-default {
  /* non-theme */
  border: 1px solid;
}

/* icons in buttons */
/* line 216, paper/plugins/_fullcalendar.scss */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
/* line 228, paper/plugins/_fullcalendar.scss */
.fc-state-hover,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

/* line 235, paper/plugins/_fullcalendar.scss */
.fc button[disabled],
.fc button[disabled]:focus,
.fc button[disabled]:hover {
  background-color: #E3E3E3;
  border-color: #E3E3E3;
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  color: #66615b;
}

/* line 245, paper/plugins/_fullcalendar.scss */
.fc-state-hover {
  background-color: #F5F5F5;
}

/* line 249, paper/plugins/_fullcalendar.scss */
.fc .fc-state-active,
.fc .fc-state-active:focus,
.fc .fc-state-active:hover,
.fc .fc-state-active:active:focus,
.fc .fc-state-active:active:hover,
.fc .fc-state-active:active {
  background-color: #66615B;
  color: #FFFFFF;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
/* line 264, paper/plugins/_fullcalendar.scss */
.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
/* line 273, paper/plugins/_fullcalendar.scss */
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 2px 0 0;
}

/* line 278, paper/plugins/_fullcalendar.scss */
.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
/* line 286, paper/plugins/_fullcalendar.scss */
.fc-popover {
  position: absolute;
  -webkit-box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.2);
  box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.2);
}

/* line 291, paper/plugins/_fullcalendar.scss */
.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

/* line 295, paper/plugins/_fullcalendar.scss */
.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

/* line 299, paper/plugins/_fullcalendar.scss */
.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

/* line 303, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

/* line 308, paper/plugins/_fullcalendar.scss */
.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* unthemed */
/* line 315, paper/plugins/_fullcalendar.scss */
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

/* line 320, paper/plugins/_fullcalendar.scss */
.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px;
}

/* jqui themed */
/* line 327, paper/plugins/_fullcalendar.scss */
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
/* line 335, paper/plugins/_fullcalendar.scss */
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

/* line 340, paper/plugins/_fullcalendar.scss */
hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

/* line 347, paper/plugins/_fullcalendar.scss */
.fc-clear {
  clear: both;
}

/* line 351, paper/plugins/_fullcalendar.scss */
.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* line 362, paper/plugins/_fullcalendar.scss */
.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

/* line 366, paper/plugins/_fullcalendar.scss */
.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
/* line 374, paper/plugins/_fullcalendar.scss */
.fc table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

/* line 382, paper/plugins/_fullcalendar.scss */
.fc th {
  text-align: right;
  border-bottom-width: 1px;
  font-size: 0.9em;
  text-transform: uppercase;
  color: #9A9A9A;
  font-weight: 400;
  padding-bottom: 3px;
}

/* line 392, paper/plugins/_fullcalendar.scss */
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

/* line 399, paper/plugins/_fullcalendar.scss */
.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* line 403, paper/plugins/_fullcalendar.scss */
.fc .fc-widget-header {
  border: 0;
}

/* line 407, paper/plugins/_fullcalendar.scss */
.fc .fc-head .fc-widget-header {
  margin-top: 15px;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
/* line 413, paper/plugins/_fullcalendar.scss */
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

/* line 419, paper/plugins/_fullcalendar.scss */
.fc-row table {
  /* don't put left/right border on anything within a fake row.
	   the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

/* line 429, paper/plugins/_fullcalendar.scss */
.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
/* line 437, paper/plugins/_fullcalendar.scss */
.fc-row {
  position: relative;
}

/* line 441, paper/plugins/_fullcalendar.scss */
.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
/* line 447, paper/plugins/_fullcalendar.scss */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

/* line 452, paper/plugins/_fullcalendar.scss */
.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

/* line 457, paper/plugins/_fullcalendar.scss */
.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

/* line 462, paper/plugins/_fullcalendar.scss */
.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

/* line 467, paper/plugins/_fullcalendar.scss */
.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
/* line 476, paper/plugins/_fullcalendar.scss */
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

/* line 482, paper/plugins/_fullcalendar.scss */
.fc-row .fc-helper-skeleton {
  z-index: 5;
}

/* line 486, paper/plugins/_fullcalendar.scss */
.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

/* line 496, paper/plugins/_fullcalendar.scss */
.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
/* line 506, paper/plugins/_fullcalendar.scss */
.fc-scroller {
  /* this class goes on elements for guaranteed vertical scrollbars */
  overflow-y: scroll;
  overflow-x: hidden;
}

/* line 511, paper/plugins/_fullcalendar.scss */
.fc-scroller > * {
  /* we expect an immediate inner element */
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
  overflow: hidden;
  /* don't let negative margins or absolute positioning create further scroll */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
/* line 521, paper/plugins/_fullcalendar.scss */
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.3;
  border-radius: 2px;
  background-color: rgba(122, 158, 159, 0.2);
  /* default BACKGROUND color */
  font-weight: normal;
  /* undo jqui's ui-widget-header bold */
}

/* line 530, paper/plugins/_fullcalendar.scss */
.fc-event.event-azure {
  background-color: rgba(104, 179, 200, 0.2);
}

/* line 533, paper/plugins/_fullcalendar.scss */
.fc-event.event-green {
  background-color: rgba(122, 194, 154, 0.2);
}

/* line 536, paper/plugins/_fullcalendar.scss */
.fc-event.event-orange {
  background-color: rgba(243, 187, 69, 0.2);
}

/* line 539, paper/plugins/_fullcalendar.scss */
.fc-event.event-red {
  background-color: rgba(235, 94, 40, 0.2);
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */
/* line 545, paper/plugins/_fullcalendar.scss */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #333333;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

/* line 552, paper/plugins/_fullcalendar.scss */
.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

/* line 557, paper/plugins/_fullcalendar.scss */
.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

/* line 562, paper/plugins/_fullcalendar.scss */
.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #FFFFFF;
  opacity: .25;
  filter: alpha(opacity=25);
  /* for IE */
}

/* line 569, paper/plugins/_fullcalendar.scss */
.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* line 574, paper/plugins/_fullcalendar.scss */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 3;
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
/* line 585, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 594, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer */
/* line 605, paper/plugins/_fullcalendar.scss */
.fc-h-event .fc-resizer {
  /* positioned it to overcome the event's borders */
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  width: 5px;
}

/* left resizer  */
/* line 614, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-ltr .fc-h-event .fc-start-resizer:before,
.fc-ltr .fc-h-event .fc-start-resizer:after,
.fc-rtl .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-end-resizer:before,
.fc-rtl .fc-h-event .fc-end-resizer:after {
  right: auto;
  /* ignore the right and only use the left */
  cursor: w-resize;
}

/* right resizer */
/* line 625, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-ltr .fc-h-event .fc-end-resizer:before,
.fc-ltr .fc-h-event .fc-end-resizer:after,
.fc-rtl .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-start-resizer:before,
.fc-rtl .fc-h-event .fc-start-resizer:after {
  left: auto;
  /* ignore the left and only use the right */
  cursor: e-resize;
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
/* line 642, paper/plugins/_fullcalendar.scss */
.fc-day-grid-event {
  margin: 2px 5px 0;
  /* spacing between events and edges */
  padding: 1px 2px;
}

/* line 648, paper/plugins/_fullcalendar.scss */
.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

/* line 653, paper/plugins/_fullcalendar.scss */
.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* line 657, paper/plugins/_fullcalendar.scss */
.fc-day-grid-event .fc-resizer {
  /* enlarge the default hit area */
  left: -3px;
  right: -3px;
  width: 7px;
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
/* line 669, paper/plugins/_fullcalendar.scss */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none;
}

/* line 676, paper/plugins/_fullcalendar.scss */
a.fc-more:hover {
  text-decoration: underline;
}

/* line 680, paper/plugins/_fullcalendar.scss */
.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
/* line 686, paper/plugins/_fullcalendar.scss */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

/* line 690, paper/plugins/_fullcalendar.scss */
.fc-more-popover {
  z-index: 2;
  width: 220px;
}

/* line 695, paper/plugins/_fullcalendar.scss */
.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
/* line 702, paper/plugins/_fullcalendar.scss */
.fc-toolbar {
  text-align: center;
  margin-bottom: 1em;
}

/* line 707, paper/plugins/_fullcalendar.scss */
.fc-toolbar .fc-left {
  float: left;
  min-width: 260px;
}

/* line 712, paper/plugins/_fullcalendar.scss */
.fc-toolbar .fc-right {
  float: right;
}

/* line 716, paper/plugins/_fullcalendar.scss */
.fc-toolbar .fc-center {
  display: inline-block;
}

/* the things within each left/right/center section */
/* line 721, paper/plugins/_fullcalendar.scss */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em;
}

/* the first thing within each left/center/right section */
/* line 727, paper/plugins/_fullcalendar.scss */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */
/* line 733, paper/plugins/_fullcalendar.scss */
.fc-toolbar h2 {
  margin: 0;
}

/* button layering (for border precedence) */
/* line 739, paper/plugins/_fullcalendar.scss */
.fc-toolbar button {
  position: relative;
}

/* line 743, paper/plugins/_fullcalendar.scss */
.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

/* line 748, paper/plugins/_fullcalendar.scss */
.fc-toolbar .fc-state-down {
  z-index: 3;
}

/* line 752, paper/plugins/_fullcalendar.scss */
.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

/* line 757, paper/plugins/_fullcalendar.scss */
.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
/* line 767, paper/plugins/_fullcalendar.scss */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 775, paper/plugins/_fullcalendar.scss */
.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
/* line 786, paper/plugins/_fullcalendar.scss */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* we are sure there are no day numbers in these views, so... */
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

/* line 793, paper/plugins/_fullcalendar.scss */
.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
/* line 799, paper/plugins/_fullcalendar.scss */
.fc-row.fc-rigid {
  overflow: hidden;
}

/* line 803, paper/plugins/_fullcalendar.scss */
.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */
/* line 812, paper/plugins/_fullcalendar.scss */
.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 0 2px;
}

/* line 817, paper/plugins/_fullcalendar.scss */
.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
  padding: 8px;
}

/* line 822, paper/plugins/_fullcalendar.scss */
.fc-basic-view .fc-week-number {
  text-align: center;
}

/* line 826, paper/plugins/_fullcalendar.scss */
.fc-basic-view .fc-week-number span {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/* line 832, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-basic-view .fc-day-number {
  text-align: right;
}

/* line 836, paper/plugins/_fullcalendar.scss */
.fc-rtl .fc-basic-view .fc-day-number {
  text-align: left;
}

/* line 840, paper/plugins/_fullcalendar.scss */
.fc-day-number.fc-other-month {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* for IE */
  /* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
/* line 851, paper/plugins/_fullcalendar.scss */
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

/* line 856, paper/plugins/_fullcalendar.scss */
.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

/* line 860, paper/plugins/_fullcalendar.scss */
.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
/* line 869, paper/plugins/_fullcalendar.scss */
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

/* line 875, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-axis {
  text-align: right;
}

/* line 879, paper/plugins/_fullcalendar.scss */
.fc-rtl .fc-axis {
  text-align: left;
}

/* line 883, paper/plugins/_fullcalendar.scss */
.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome jqui theme making it bold */
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
/* line 891, paper/plugins/_fullcalendar.scss */
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

/* line 897, paper/plugins/_fullcalendar.scss */
.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

/* line 901, paper/plugins/_fullcalendar.scss */
.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

/* line 905, paper/plugins/_fullcalendar.scss */
.fc-time-grid > .fc-bg {
  z-index: 1;
}

/* line 909, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

/* line 915, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-bgevent-skeleton,
.fc-time-grid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* line 923, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-bgevent-skeleton {
  z-index: 3;
}

/* line 927, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-highlight-skeleton {
  z-index: 4;
}

/* line 931, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-content-skeleton {
  z-index: 5;
}

/* line 935, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-helper-skeleton {
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
/* line 943, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

/* line 948, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

/* line 952, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-slats .ui-widget-content {
  /* for jqui theme */
  background: none;
  /* see through to fc-bg */
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
/* line 960, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

/* line 964, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
/* line 975, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-event-container,
.fc-time-grid .fc-bgevent-container {
  /* a div within a cell within the fc-bgevent-skeleton */
  position: relative;
}

/* line 980, paper/plugins/_fullcalendar.scss */
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

/* line 984, paper/plugins/_fullcalendar.scss */
.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

/* line 988, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

/* line 994, paper/plugins/_fullcalendar.scss */
.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
/* line 1004, paper/plugins/_fullcalendar.scss */
.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 1014, paper/plugins/_fullcalendar.scss */
.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
/* line 1031, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */
}

/* line 1035, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

/* line 1040, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */
/* line 1047, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

/* line 1052, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

/* line 1059, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

/* line 1063, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

/* line 1067, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event.fc-short .fc-time:after {
  content: "\000A0-\000A0";
  /* seperate with a dash, wrapped in nbsp's */
}

/* line 1071, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer */
/* line 1078, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

/* line 1091, paper/plugins/_fullcalendar.scss */
.fc-time-grid-event .fc-resizer:after {
  content: "=";
}

/* line 1096, paper/plugins/_fullcalendar.scss */
.card-calendar .content {
  padding: 0 !important;
}

/* line 1099, paper/plugins/_fullcalendar.scss */
.card-calendar .fc-toolbar {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

/* line 1104, paper/plugins/_fullcalendar.scss */
.card-calendar .fc td:first-child {
  border-left: 0;
}

/* line 1107, paper/plugins/_fullcalendar.scss */
.card-calendar .fc td:last-child {
  border-right: 0;
}

/* line 1110, paper/plugins/_fullcalendar.scss */
.card-calendar .fc-basic-view td:last-child.fc-week-number span,
.card-calendar .fc-basic-view td:last-child.fc-day-number {
  padding-right: 20px;
}

/* line 1114, paper/plugins/_fullcalendar.scss */
.card-calendar .fc .fc-day-header:last-child {
  padding-right: 15px;
}

/* line 1117, paper/plugins/_fullcalendar.scss */
.card-calendar .fc .fc-row:last-child td {
  border-bottom: 0;
}

/* line 1120, paper/plugins/_fullcalendar.scss */
.card-calendar .fc .fc-body .fc-widget-content {
  border-bottom: 0;
}

/* line 115, paper/plugins/_chartist.scss */
.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.9em;
  line-height: 1;
}

/* line 119, paper/plugins/_chartist.scss */
.ct-chart-line .ct-label,
.ct-chart-bar .ct-label {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

/* line 124, paper/plugins/_chartist.scss */
.ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 130, paper/plugins/_chartist.scss */
.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 136, paper/plugins/_chartist.scss */
.ct-label.ct-vertical.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

/* line 142, paper/plugins/_chartist.scss */
.ct-label.ct-vertical.ct-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 148, paper/plugins/_chartist.scss */
.ct-chart-bar .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

/* line 154, paper/plugins/_chartist.scss */
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

/* line 160, paper/plugins/_chartist.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 166, paper/plugins/_chartist.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

/* line 172, paper/plugins/_chartist.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

/* line 179, paper/plugins/_chartist.scss */
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end;
}

/* line 185, paper/plugins/_chartist.scss */
.ct-grid {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px;
}

/* line 189, paper/plugins/_chartist.scss */
.ct-point {
  stroke-width: 10px;
  stroke-linecap: round;
}

/* line 193, paper/plugins/_chartist.scss */
.ct-line {
  fill: none;
  stroke-width: 4px;
}

/* line 197, paper/plugins/_chartist.scss */
.ct-area {
  stroke: none;
  fill-opacity: 0.7;
}

/* line 201, paper/plugins/_chartist.scss */
.ct-bar {
  fill: none;
  stroke-width: 10px;
}

/* line 205, paper/plugins/_chartist.scss */
.ct-slice-donut {
  fill: none;
  stroke-width: 60px;
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
  stroke: #68B3C8;
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-a .ct-slice-pie, .ct-series-a .ct-area {
  fill: #68B3C8;
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
  stroke: #F3BB45;
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-b .ct-slice-pie, .ct-series-b .ct-area {
  fill: #F3BB45;
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
  stroke: #EB5E28;
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-c .ct-slice-pie, .ct-series-c .ct-area {
  fill: #EB5E28;
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
  stroke: #7AC29A;
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-d .ct-slice-pie, .ct-series-d .ct-area {
  fill: #7AC29A;
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
  stroke: #7A9E9F;
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-e .ct-slice-pie, .ct-series-e .ct-area {
  fill: #7A9E9F;
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
  stroke: rgba(104, 179, 200, 0.8);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-f .ct-slice-pie, .ct-series-f .ct-area {
  fill: rgba(104, 179, 200, 0.8);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
  stroke: rgba(122, 194, 154, 0.8);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-g .ct-slice-pie, .ct-series-g .ct-area {
  fill: rgba(122, 194, 154, 0.8);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
  stroke: rgba(243, 187, 69, 0.8);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-h .ct-slice-pie, .ct-series-h .ct-area {
  fill: rgba(243, 187, 69, 0.8);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
  stroke: rgba(235, 94, 40, 0.8);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-i .ct-slice-pie, .ct-series-i .ct-area {
  fill: rgba(235, 94, 40, 0.8);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
  stroke: rgba(122, 158, 159, 0.8);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-j .ct-slice-pie, .ct-series-j .ct-area {
  fill: rgba(122, 158, 159, 0.8);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
  stroke: rgba(104, 179, 200, 0.6);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-k .ct-slice-pie, .ct-series-k .ct-area {
  fill: rgba(104, 179, 200, 0.6);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
  stroke: rgba(122, 194, 154, 0.6);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-l .ct-slice-pie, .ct-series-l .ct-area {
  fill: rgba(122, 194, 154, 0.6);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
  stroke: rgba(243, 187, 69, 0.6);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-m .ct-slice-pie, .ct-series-m .ct-area {
  fill: rgba(243, 187, 69, 0.6);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
  stroke: rgba(235, 94, 40, 0.6);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-n .ct-slice-pie, .ct-series-n .ct-area {
  fill: rgba(235, 94, 40, 0.6);
}

/* line 104, paper/plugins/_chartist.scss */
.ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
  stroke: rgba(122, 158, 159, 0.6);
}

/* line 108, paper/plugins/_chartist.scss */
.ct-series-o .ct-slice-pie, .ct-series-o .ct-area {
  fill: rgba(122, 158, 159, 0.6);
}

/* line 225, paper/plugins/_chartist.scss */
.ct-square {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-square:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-square:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-square > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-minor-second {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-minor-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 93.75%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-minor-second:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-minor-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-major-second {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-major-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 88.88888889%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-major-second:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-major-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-minor-third {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-minor-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 83.33333333%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-minor-third:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-minor-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-major-third {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-major-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 80%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-major-third:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-major-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-perfect-fourth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-perfect-fourth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 75%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-perfect-fourth:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-perfect-fourth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-perfect-fifth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-perfect-fifth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 66.66666667%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-perfect-fifth:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-perfect-fifth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-minor-sixth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-minor-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 62.5%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-minor-sixth:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-minor-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-golden-section {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-golden-section:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 61.80469716%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-golden-section:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-golden-section > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-major-sixth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-major-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 60%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-major-sixth:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-major-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-minor-seventh {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-minor-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 56.25%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-minor-seventh:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-minor-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-major-seventh {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-major-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 53.33333333%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-major-seventh:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-major-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-octave {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 50%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-octave:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-major-tenth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-major-tenth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 40%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-major-tenth:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-major-tenth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-major-eleventh {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-major-eleventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 37.5%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-major-eleventh:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-major-eleventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-major-twelfth {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-major-twelfth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 33.33333333%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-major-twelfth:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-major-twelfth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 225, paper/plugins/_chartist.scss */
.ct-double-octave {
  display: block;
  position: relative;
  width: 100%;
}

/* line 6, paper/plugins/_chartist.scss */
.ct-double-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 25%;
}

/* line 15, paper/plugins/_chartist.scss */
.ct-double-octave:after {
  content: "";
  display: table;
  clear: both;
}

/* line 21, paper/plugins/_chartist.scss */
.ct-double-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 232, paper/plugins/_chartist.scss */
.ct-blue {
  stroke: #7A9E9F !important;
}

/* line 235, paper/plugins/_chartist.scss */
.ct-azure {
  stroke: #68B3C8 !important;
}

/* line 238, paper/plugins/_chartist.scss */
.ct-green {
  stroke: #7AC29A !important;
}

/* line 241, paper/plugins/_chartist.scss */
.ct-orange {
  stroke: #F3BB45 !important;
}

/* line 244, paper/plugins/_chartist.scss */
.ct-red {
  stroke: #EB5E28 !important;
}

/* perfect-scrollbar v0.6.10 */
/* line 2, paper/plugins/_perfect-scrollbar.scss */
.ps-container {
  -ms-touch-action: none;
  touch-action: none;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
  /* line 8, paper/plugins/_perfect-scrollbar.scss */
  .ps-container {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 11, paper/plugins/_perfect-scrollbar.scss */
  .ps-container {
    overflow: auto !important;
  }
}

/* line 13, paper/plugins/_perfect-scrollbar.scss */
.ps-container.ps-active-x > .ps-scrollbar-x-rail,
.ps-container.ps-active-y > .ps-scrollbar-y-rail {
  display: block;
  background-color: transparent;
}

/* line 17, paper/plugins/_perfect-scrollbar.scss */
.ps-container.ps-in-scrolling {
  pointer-events: none;
}

/* line 19, paper/plugins/_perfect-scrollbar.scss */
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #E3E3E3;
  opacity: 0.9;
}

/* line 22, paper/plugins/_perfect-scrollbar.scss */
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #9A9A9A;
}

/* line 24, paper/plugins/_perfect-scrollbar.scss */
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: #E3E3E3;
  opacity: 0.9;
}

/* line 27, paper/plugins/_perfect-scrollbar.scss */
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #9A9A9A;
}

/* line 29, paper/plugins/_perfect-scrollbar.scss */
.ps-container > .ps-scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  -moz-transition: background-color .2s linear, opacity .2s linear;
  -o-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  bottom: 3px;
  /* there must be 'bottom' for ps-scrollbar-x-rail */
  height: 8px;
}

/* line 44, paper/plugins/_perfect-scrollbar.scss */
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #AAAAAA;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
  bottom: 0;
  /* there must be 'bottom' for ps-scrollbar-x */
  height: 8px;
}

/* line 58, paper/plugins/_perfect-scrollbar.scss */
.ps-container > .ps-scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  -moz-transition: background-color .2s linear, opacity .2s linear;
  -o-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  right: 3px;
  z-index: 1042;
  /* there must be 'right' for ps-scrollbar-y-rail */
  width: 8px;
}

/* line 74, paper/plugins/_perfect-scrollbar.scss */
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  position: absolute;
  /* please don't change 'position' */
  background-color: #AAAAAA;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
  right: 0;
  /* there must be 'right' for ps-scrollbar-y */
  width: 8px;
}

/* line 88, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover.ps-in-scrolling {
  pointer-events: none;
}

/* line 90, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #E3E3E3;
  opacity: 0.9;
}

/* line 93, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #9A9A9A;
}

/* line 95, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: #E3E3E3;
  opacity: 0.9;
}

/* line 98, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #9A9A9A;
}

/* line 100, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover > .ps-scrollbar-x-rail,
.ps-container:hover > .ps-scrollbar-y-rail {
  opacity: 0.6;
}

/* line 103, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover > .ps-scrollbar-x-rail:hover {
  background-color: #E3E3E3;
  opacity: 0.9;
}

/* line 106, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  background-color: #9A9A9A;
}

/* line 108, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover > .ps-scrollbar-y-rail:hover {
  background-color: #E3E3E3;
  opacity: 0.9;
}

/* line 111, paper/plugins/_perfect-scrollbar.scss */
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background-color: #9A9A9A;
}

/* line 1, paper/plugins/_jquery.jvectormap.scss */
svg {
  touch-action: none;
}

/* line 5, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

/* line 13, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-tip {
  position: absolute;
  display: none;
  border: solid 1px #CDCDCD;
  border-radius: 3px;
  background: #292929;
  color: white;
  font-family: sans-serif, Verdana;
  font-size: smaller;
  padding: 3px;
}

/* line 25, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
  position: absolute;
  left: 10px;
  border-radius: 3px;
  background: #292929;
  padding: 3px;
  color: white;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
  box-sizing: content-box;
}

/* line 38, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-zoomin, .jvectormap-zoomout {
  width: 10px;
  height: 10px;
}

/* line 43, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-zoomin {
  top: 10px;
}

/* line 47, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-zoomout {
  top: 30px;
}

/* line 51, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-goback {
  bottom: 10px;
  z-index: 1000;
  padding: 6px;
}

/* line 57, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-spinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
}

/* line 66, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-title {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

/* line 72, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt {
  position: absolute;
}

/* line 76, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-h {
  bottom: 0;
  right: 0;
}

/* line 81, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-v {
  top: 0;
  right: 0;
}

/* line 86, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend {
  background: black;
  color: white;
  border-radius: 3px;
}

/* line 92, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-h .jvectormap-legend {
  float: left;
  margin: 0 10px 10px 0;
  padding: 3px 3px 1px 3px;
}

/* line 98, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
  float: left;
}

/* line 102, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-v .jvectormap-legend {
  margin: 10px 10px 0 0;
  padding: 3px;
}

/* line 107, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-h .jvectormap-legend-tick {
  width: 40px;
}

/* line 111, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
  height: 15px;
}

/* line 115, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}

/* line 122, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-tick-text {
  font-size: 12px;
}

/* line 126, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
  text-align: center;
}

/* line 130, paper/plugins/_jquery.jvectormap.scss */
.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  padding-left: 3px;
}

/* line 1, paper/_typography.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .brand, a, .td-name, td {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: 'Muli', "Helvetica", Arial, sans-serif;
}

/* line 7, paper/_typography.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-weight: 400;
  margin: 30px 0 15px;
}

/* line 12, paper/_typography.scss */
h1, .h1 {
  font-size: 3.2em;
}

/* line 16, paper/_typography.scss */
h2, .h2 {
  font-size: 2.6em;
}

/* line 20, paper/_typography.scss */
h3, .h3 {
  font-size: 1.825em;
  line-height: 1.4;
  margin: 20px 0 10px;
}

/* line 26, paper/_typography.scss */
h4, .h4 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}

/* line 32, paper/_typography.scss */
h5, .h5 {
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 15px;
}

/* line 39, paper/_typography.scss */
h6, .h6 {
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 45, paper/_typography.scss */
p {
  font-size: 14px;
  line-height: 1.4em;
}

/* line 50, paper/_typography.scss */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
  color: #9A9A9A;
  font-weight: 300;
  line-height: 1.4em;
}

/* line 56, paper/_typography.scss */
h1 small, h2 small, h3 small, h1 .small, h2 .small, h3 .small {
  font-size: 60%;
}

/* line 60, paper/_typography.scss */
.title-uppercase {
  text-transform: uppercase;
}

/* line 64, paper/_typography.scss */
blockquote {
  font-style: italic;
}

/* line 68, paper/_typography.scss */
blockquote small {
  font-style: normal;
}

/* line 72, paper/_typography.scss */
.text-muted {
  color: #cfcfca;
}

/* line 76, paper/_typography.scss */
.text-primary, .text-primary:hover {
  color: #5e8283;
}

/* line 80, paper/_typography.scss */
.text-info, .text-info:hover {
  color: #429cb6;
}

/* line 84, paper/_typography.scss */
.text-success, .text-success:hover {
  color: #54b07d;
}

/* line 88, paper/_typography.scss */
.text-warning, .text-warning:hover {
  color: #f0a810;
}

/* line 92, paper/_typography.scss */
.text-danger, .text-danger:hover {
  color: #c84513;
}

/* line 96, paper/_typography.scss */
.glyphicon, .execstate.step[data-execstate=SUCCEEDED], .execstate.step[data-execstate=RUNNING], .execstate.step[data-execstate=RUNNING_HANDLER], .execstate.step[data-execstate=WAITING], .execstate.step[data-execstate=FAILED], .execstate.step[data-execstate='FAILED-WITH-RETRY'], .auto-caret-open, .accordion-toggle.collapsed .auto-caret,
.auto-caret, .accordion-toggle .auto-caret,
.accordion-toggle .auto-caret-left,
.auto-caret-container .auto-caret,
.auto-caret-container .auto-caret-left, .active > .auto-caret-left,
.active > .auto-caret, .active > * > .auto-caret-left,
.active > * > .auto-caret, .auto-caret-left {
  line-height: 1;
}

/* line 100, paper/_typography.scss */
strong {
  color: #484541;
}

/* line 104, paper/_typography.scss */
.icon-primary {
  color: #7A9E9F;
}

/* line 108, paper/_typography.scss */
.icon-info {
  color: #68B3C8;
}

/* line 112, paper/_typography.scss */
.icon-success {
  color: #7AC29A;
}

/* line 116, paper/_typography.scss */
.icon-warning {
  color: #F3BB45;
}

/* line 120, paper/_typography.scss */
.icon-danger {
  color: #EB5E28;
}

/* line 125, paper/_typography.scss */
.chart-legend .text-primary, .chart-legend .text-primary:hover {
  color: #7A9E9F;
}

/* line 128, paper/_typography.scss */
.chart-legend .text-info, .chart-legend .text-info:hover {
  color: #68B3C8;
}

/* line 131, paper/_typography.scss */
.chart-legend .text-success, .chart-legend .text-success:hover {
  color: #7AC29A;
}

/* line 134, paper/_typography.scss */
.chart-legend .text-warning, .chart-legend .text-warning:hover {
  color: #F3BB45;
}

/* line 137, paper/_typography.scss */
.chart-legend .text-danger, .chart-legend .text-danger:hover {
  color: #EB5E28;
}

/* line 1, paper/_sidebar-and-main-panel.scss */
.sidebar,
.off-canvas-sidebar {
  width: 260px;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

/* line 12, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-background,
.off-canvas-sidebar .sidebar-background {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}

/* line 24, paper/_sidebar-and-main-panel.scss */
.sidebar .logo,
.off-canvas-sidebar .logo {
  padding: 5px 0px;
  margin: 0;
  box-shadow: inset -1px 0px 0px 0px #cfcfca;
  position: relative;
  z-index: 4;
  display: block;
}

/* line 35, paper/_sidebar-and-main-panel.scss */
.sidebar .logo a.logo-mini,
.off-canvas-sidebar .logo a.logo-mini {
  float: left;
  width: 30px;
  text-align: center;
  margin-left: 23px;
  margin-right: 15px;
}

/* line 43, paper/_sidebar-and-main-panel.scss */
.sidebar .logo a.logo-normal,
.off-canvas-sidebar .logo a.logo-normal {
  display: block;
  opacity: 1;
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

/* line 49, paper/_sidebar-and-main-panel.scss */
.sidebar .logo .logo-img,
.off-canvas-sidebar .logo .logo-img {
  width: 34px;
  display: inline-block;
  height: 34px;
  margin-left: 0px;
  margin-right: 10px;
  background: white;
  border-radius: 40px;
  text-align: center;
}

/* line 59, paper/_sidebar-and-main-panel.scss */
.sidebar .logo .logo-img img,
.off-canvas-sidebar .logo .logo-img img {
  max-width: 18px;
  position: relative;
}

/* line 65, paper/_sidebar-and-main-panel.scss */
.sidebar .logo .simple-text,
.off-canvas-sidebar .logo .simple-text {
  padding: 4px 0px;
  display: block;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  white-space: nowrap;
}

/* line 75, paper/_sidebar-and-main-panel.scss */
.sidebar .logo p,
.off-canvas-sidebar .logo p {
  float: left;
  font-size: 20px;
  margin: 10px 10px;
  line-height: 20px;
}

/* line 82, paper/_sidebar-and-main-panel.scss */
.sidebar .logo:before,
.off-canvas-sidebar .logo:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 15px;
  width: calc(100% - 30px);
  height: 1px;
}

/* line 92, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper,
.off-canvas-sidebar .sidebar-wrapper {
  position: relative;
  height: calc(100% - 75px);
  z-index: 4;
  box-shadow: inset -1px 0px 0px 0px #cfcfca;
  width: 260px;
}

/* line 101, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper .dropdown.open .dropdown-backdrop,
.off-canvas-sidebar .sidebar-wrapper .dropdown.open .dropdown-backdrop {
  display: none !important;
}

/* line 105, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav,
.off-canvas-sidebar .sidebar-wrapper > .nav {
  margin-top: 10px;
}

/* line 108, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav i,
.off-canvas-sidebar .sidebar-wrapper > .nav i {
  font-size: 24px;
  float: left;
  margin-right: 15px;
  line-height: 30px;
  width: 30px;
  text-align: center;
}

/* line 118, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav li > a,
.off-canvas-sidebar .sidebar-wrapper > .nav li > a {
  margin: 10px 0px 0px;
  padding-left: 25px;
  padding-right: 25px;
  opacity: .7;
  white-space: nowrap;
}

/* line 126, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav li:hover > a,
.off-canvas-sidebar .sidebar-wrapper > .nav li:hover > a {
  opacity: 1;
}

/* line 130, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav li.active > a,
.off-canvas-sidebar .sidebar-wrapper > .nav li.active > a {
  color: #7A9E9F;
  opacity: 1;
}

/* line 135, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav li.separator,
.off-canvas-sidebar .sidebar-wrapper > .nav li.separator {
  margin: 15px 0;
}

/* line 138, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav li.separator:after,
.off-canvas-sidebar .sidebar-wrapper > .nav li.separator:after {
  content: "";
  position: absolute;
  height: 1px;
  right: 10%;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 147, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav li.separator + li,
.off-canvas-sidebar .sidebar-wrapper > .nav li.separator + li {
  margin-top: 31px;
}

/* line 153, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav p,
.off-canvas-sidebar .sidebar-wrapper > .nav p {
  margin: 0;
  line-height: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
  opacity: 1;
  display: block;
  height: auto;
  white-space: nowrap;
}

/* line 167, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav .caret,
.off-canvas-sidebar .sidebar-wrapper > .nav .caret {
  margin-top: 12px;
  position: absolute;
  right: 1px;
}

/* line 173, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a,
.off-canvas-sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a {
  margin: 0;
}

/* line 181, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
.sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
.off-canvas-sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
.off-canvas-sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal {
  margin: 0;
  position: relative;
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
  opacity: 1;
  white-space: nowrap;
  display: block;
}

/* line 190, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini,
.sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini,
.off-canvas-sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini,
.off-canvas-sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini {
  text-transform: uppercase;
  float: left;
  width: 30px;
  text-align: center;
  margin-right: 15px;
  letter-spacing: 1px;
}

/* line 199, paper/_sidebar-and-main-panel.scss */
.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a i,
.sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a i,
.off-canvas-sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a i,
.off-canvas-sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a i {
  font-size: 17px;
  line-height: 20px;
  width: 26px;
}

/* line 208, paper/_sidebar-and-main-panel.scss */
.sidebar .user,
.off-canvas-sidebar .user {
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
}

/* line 213, paper/_sidebar-and-main-panel.scss */
.sidebar .user:after,
.off-canvas-sidebar .user:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 223, paper/_sidebar-and-main-panel.scss */
.sidebar .user .photo,
.off-canvas-sidebar .user .photo {
  width: 34px;
  height: 34px;
  overflow: hidden;
  float: left;
  margin-right: 11px;
  z-index: 5;
  border-radius: 50%;
  margin-left: 23px;
}

/* line 233, paper/_sidebar-and-main-panel.scss */
.sidebar .user .photo img,
.off-canvas-sidebar .user .photo img {
  width: 100%;
}

/* line 239, paper/_sidebar-and-main-panel.scss */
.sidebar .user .info a,
.off-canvas-sidebar .user .info a {
  padding: 7px 25px;
  white-space: nowrap;
  display: block;
  opacity: .7;
  position: relative;
}

/* line 246, paper/_sidebar-and-main-panel.scss */
.sidebar .user .info a:hover, .sidebar .user .info a:visited,
.off-canvas-sidebar .user .info a:hover,
.off-canvas-sidebar .user .info a:visited {
  opacity: 1;
}

/* line 252, paper/_sidebar-and-main-panel.scss */
.sidebar .user .info > a > span,
.off-canvas-sidebar .user .info > a > span {
  opacity: 1;
  line-height: 22px;
  display: block;
  position: relative;
}

/* line 259, paper/_sidebar-and-main-panel.scss */
.sidebar .user .info .caret,
.off-canvas-sidebar .user .info .caret {
  position: absolute;
  top: 11px;
  right: 0px;
}

/* line 267, paper/_sidebar-and-main-panel.scss */
.sidebar:after, .sidebar:before,
.off-canvas-sidebar:after,
.off-canvas-sidebar:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FFFFFF;
}

/* line 2, paper/mixins/_sidebar.scss */
.sidebar:after, .sidebar:before, .sidebar[data-background-color="white"]:after, .sidebar[data-background-color="white"]:before,
.off-canvas-sidebar:after,
.off-canvas-sidebar:before,
.off-canvas-sidebar[data-background-color="white"]:after,
.off-canvas-sidebar[data-background-color="white"]:before {
  background-color: #FFFFFF;
}

/* line 7, paper/mixins/_sidebar.scss */
.sidebar #style-3, .sidebar[data-background-color="white"] #style-3,
.off-canvas-sidebar #style-3,
.off-canvas-sidebar[data-background-color="white"] #style-3 {
  overflow-y: auto !important;
  overflow-x: hidden;
}

/* line 11, paper/mixins/_sidebar.scss */
.sidebar #style-3::-webkit-scrollbar-track, .sidebar[data-background-color="white"] #style-3::-webkit-scrollbar-track,
.off-canvas-sidebar #style-3::-webkit-scrollbar-track,
.off-canvas-sidebar[data-background-color="white"] #style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #FFFFFF;
  background-color: #FFFFFF;
}

/* line 17, paper/mixins/_sidebar.scss */
.sidebar #style-3::-webkit-scrollbar, .sidebar[data-background-color="white"] #style-3::-webkit-scrollbar,
.off-canvas-sidebar #style-3::-webkit-scrollbar,
.off-canvas-sidebar[data-background-color="white"] #style-3::-webkit-scrollbar {
  width: 6px;
  background-color: #66615B;
}

/* line 23, paper/mixins/_sidebar.scss */
.sidebar #style-3::-webkit-scrollbar-thumb, .sidebar[data-background-color="white"] #style-3::-webkit-scrollbar-thumb,
.off-canvas-sidebar #style-3::-webkit-scrollbar-thumb,
.off-canvas-sidebar[data-background-color="white"] #style-3::-webkit-scrollbar-thumb {
  background-color: #FFFFFF;
}

/* line 35, paper/mixins/_sidebar.scss */
.sidebar .logo p, .sidebar[data-background-color="white"] .logo p,
.off-canvas-sidebar .logo p,
.off-canvas-sidebar[data-background-color="white"] .logo p {
  color: #66615B;
}

/* line 39, paper/mixins/_sidebar.scss */
.sidebar .logo .simple-text, .sidebar[data-background-color="white"] .logo .simple-text,
.off-canvas-sidebar .logo .simple-text,
.off-canvas-sidebar[data-background-color="white"] .logo .simple-text {
  color: #66615B;
}

/* line 46, paper/mixins/_sidebar.scss */
.sidebar .nav li:not(.active) > a, .sidebar[data-background-color="white"] .nav li:not(.active) > a,
.off-canvas-sidebar .nav li:not(.active) > a,
.off-canvas-sidebar[data-background-color="white"] .nav li:not(.active) > a {
  color: #66615B;
}

/* line 50, paper/mixins/_sidebar.scss */
.sidebar .nav .divider, .sidebar[data-background-color="white"] .nav .divider,
.off-canvas-sidebar .nav .divider,
.off-canvas-sidebar[data-background-color="white"] .nav .divider {
  background-color: rgba(102, 97, 91, 0.2);
}

/* line 284, paper/_sidebar-and-main-panel.scss */
.sidebar .user, .sidebar[data-background-color="white"] .user,
.off-canvas-sidebar .user,
.off-canvas-sidebar[data-background-color="white"] .user {
  margin-top: 20px;
}

/* line 287, paper/_sidebar-and-main-panel.scss */
.sidebar .user .photo, .sidebar[data-background-color="white"] .user .photo,
.off-canvas-sidebar .user .photo,
.off-canvas-sidebar[data-background-color="white"] .user .photo {
  border: 2px solid rgba(0, 0, 0, 0.15);
}

/* line 2, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"]:after, .sidebar[data-background-color="brown"]:before,
.off-canvas-sidebar[data-background-color="brown"]:after,
.off-canvas-sidebar[data-background-color="brown"]:before {
  background-color: #66615b;
}

/* line 7, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] #style-3,
.off-canvas-sidebar[data-background-color="brown"] #style-3 {
  overflow-y: auto !important;
  overflow-x: hidden;
}

/* line 11, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] #style-3::-webkit-scrollbar-track,
.off-canvas-sidebar[data-background-color="brown"] #style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #66615b;
  background-color: #66615b;
}

/* line 17, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] #style-3::-webkit-scrollbar,
.off-canvas-sidebar[data-background-color="brown"] #style-3::-webkit-scrollbar {
  width: 6px;
  background-color: #FFFFFF;
}

/* line 23, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] #style-3::-webkit-scrollbar-thumb,
.off-canvas-sidebar[data-background-color="brown"] #style-3::-webkit-scrollbar-thumb {
  background-color: #66615b;
}

/* line 35, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] .logo p,
.off-canvas-sidebar[data-background-color="brown"] .logo p {
  color: #FFFFFF;
}

/* line 39, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] .logo .simple-text,
.off-canvas-sidebar[data-background-color="brown"] .logo .simple-text {
  color: #FFFFFF;
}

/* line 46, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] .nav li:not(.active) > a,
.off-canvas-sidebar[data-background-color="brown"] .nav li:not(.active) > a {
  color: #FFFFFF;
}

/* line 50, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"] .nav .divider,
.off-canvas-sidebar[data-background-color="brown"] .nav .divider {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 2, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"]:after, .sidebar[data-background-color="black"]:before,
.off-canvas-sidebar[data-background-color="black"]:after,
.off-canvas-sidebar[data-background-color="black"]:before {
  background-color: #212120;
}

/* line 7, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] #style-3,
.off-canvas-sidebar[data-background-color="black"] #style-3 {
  overflow-y: auto !important;
  overflow-x: hidden;
}

/* line 11, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] #style-3::-webkit-scrollbar-track,
.off-canvas-sidebar[data-background-color="black"] #style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #212120;
  background-color: #212120;
}

/* line 17, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] #style-3::-webkit-scrollbar,
.off-canvas-sidebar[data-background-color="black"] #style-3::-webkit-scrollbar {
  width: 6px;
  background-color: #FFFFFF;
}

/* line 23, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] #style-3::-webkit-scrollbar-thumb,
.off-canvas-sidebar[data-background-color="black"] #style-3::-webkit-scrollbar-thumb {
  background-color: #212120;
}

/* line 35, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] .logo p,
.off-canvas-sidebar[data-background-color="black"] .logo p {
  color: #FFFFFF;
}

/* line 39, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] .logo .simple-text,
.off-canvas-sidebar[data-background-color="black"] .logo .simple-text {
  color: #FFFFFF;
}

/* line 46, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] .nav li:not(.active) > a,
.off-canvas-sidebar[data-background-color="black"] .nav li:not(.active) > a {
  color: #FFFFFF;
}

/* line 50, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="black"] .nav .divider,
.off-canvas-sidebar[data-background-color="black"] .nav .divider {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 2, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"]:after, .sidebar[data-background-color="darkblue"]:before,
.off-canvas-sidebar[data-background-color="darkblue"]:after,
.off-canvas-sidebar[data-background-color="darkblue"]:before {
  background-color: #35495E;
}

/* line 7, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] #style-3,
.off-canvas-sidebar[data-background-color="darkblue"] #style-3 {
  overflow-y: auto !important;
  overflow-x: hidden;
}

/* line 11, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] #style-3::-webkit-scrollbar-track,
.off-canvas-sidebar[data-background-color="darkblue"] #style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #35495E;
  background-color: #35495E;
}

/* line 17, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] #style-3::-webkit-scrollbar,
.off-canvas-sidebar[data-background-color="darkblue"] #style-3::-webkit-scrollbar {
  width: 6px;
  background-color: #FFFFFF;
}

/* line 23, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] #style-3::-webkit-scrollbar-thumb,
.off-canvas-sidebar[data-background-color="darkblue"] #style-3::-webkit-scrollbar-thumb {
  background-color: #35495E;
}

/* line 35, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] .logo p,
.off-canvas-sidebar[data-background-color="darkblue"] .logo p {
  color: #FFFFFF;
}

/* line 39, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] .logo .simple-text,
.off-canvas-sidebar[data-background-color="darkblue"] .logo .simple-text {
  color: #FFFFFF;
}

/* line 46, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] .nav li:not(.active) > a,
.off-canvas-sidebar[data-background-color="darkblue"] .nav li:not(.active) > a {
  color: #FFFFFF;
}

/* line 50, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="darkblue"] .nav .divider,
.off-canvas-sidebar[data-background-color="darkblue"] .nav .divider {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 61, paper/mixins/_sidebar.scss */
.sidebar[data-background-color="brown"][data-active-color="danger"] .nav li.active > a, .sidebar[data-background-color="darkblue"][data-active-color="danger"] .nav li.active > a, .sidebar[data-background-color="black"][data-active-color="danger"] .nav li.active > a,
.off-canvas-sidebar[data-background-color="brown"][data-active-color="danger"] .nav li.active > a,
.off-canvas-sidebar[data-background-color="darkblue"][data-active-color="danger"] .nav li.active > a,
.off-canvas-sidebar[data-background-color="black"][data-active-color="danger"] .nav li.active > a {
  color: #ef8157;
  opacity: 1;
}

/* line 312, paper/_sidebar-and-main-panel.scss */
.sidebar[data-background-color="brown"] .info a, .sidebar[data-background-color="darkblue"] .info a, .sidebar[data-background-color="black"] .info a,
.off-canvas-sidebar[data-background-color="brown"] .info a,
.off-canvas-sidebar[data-background-color="darkblue"] .info a,
.off-canvas-sidebar[data-background-color="black"] .info a {
  color: #FFFFFF;
}

/* line 318, paper/_sidebar-and-main-panel.scss */
.sidebar[data-background-color="brown"] .user .photo, .sidebar[data-background-color="darkblue"] .user .photo, .sidebar[data-background-color="black"] .user .photo,
.off-canvas-sidebar[data-background-color="brown"] .user .photo,
.off-canvas-sidebar[data-background-color="darkblue"] .user .photo,
.off-canvas-sidebar[data-background-color="black"] .user .photo {
  border-color: rgba(255, 255, 255, 0.3);
}

/* line 61, paper/mixins/_sidebar.scss */
.sidebar[data-active-color="primary"] .nav li.active > a,
.off-canvas-sidebar[data-active-color="primary"] .nav li.active > a {
  color: #7A9E9F;
  opacity: 1;
}

/* line 61, paper/mixins/_sidebar.scss */
.sidebar[data-active-color="info"] .nav li.active > a,
.off-canvas-sidebar[data-active-color="info"] .nav li.active > a {
  color: #68B3C8;
  opacity: 1;
}

/* line 61, paper/mixins/_sidebar.scss */
.sidebar[data-active-color="success"] .nav li.active > a,
.off-canvas-sidebar[data-active-color="success"] .nav li.active > a {
  color: #7AC29A;
  opacity: 1;
}

/* line 61, paper/mixins/_sidebar.scss */
.sidebar[data-active-color="warning"] .nav li.active > a,
.off-canvas-sidebar[data-active-color="warning"] .nav li.active > a {
  color: #F3BB45;
  opacity: 1;
}

/* line 61, paper/mixins/_sidebar.scss */
.sidebar[data-active-color="danger"] .nav li.active > a,
.off-canvas-sidebar[data-active-color="danger"] .nav li.active > a {
  color: #EB5E28;
  opacity: 1;
}

/* line 342, paper/_sidebar-and-main-panel.scss */
.main-panel {
  background-color: #f4f3ef;
  overflow: auto;
  position: initial;
  z-index: 2;
  float: right;
  width: calc(100% - 260px);
  min-height: 100%;
  overflow-x: hidden;
}

/* line 352, paper/_sidebar-and-main-panel.scss */
.main-panel > .content {
  padding: 30px 15px 0 15px;
  min-height: calc(100% - 135px);
}

/* line 358, paper/_sidebar-and-main-panel.scss */
.main-panel > .content .row .col-md-12 > .title {
  margin-top: 0;
}

/* line 363, paper/_sidebar-and-main-panel.scss */
.main-panel > .footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 367, paper/_sidebar-and-main-panel.scss */
.main-panel .navbar {
  margin-bottom: 0;
}

/* line 372, paper/_sidebar-and-main-panel.scss */
.sidebar,
.main-panel,
.sidebar-wrapper {
  -webkit-transition-property: top,bottom,width;
  transition-property: top,bottom, width;
  -webkit-transition-duration: .2s,.2s, .35s;
  transition-duration: .2s,.2s, .35s;
  -webkit-transition-timing-function: linear,linear,ease;
  transition-timing-function: linear,linear,ease;
  -webkit-overflow-scrolling: touch;
}

/* line 384, paper/_sidebar-and-main-panel.scss */
.sidebar,
.main-panel {
  max-height: 100%;
  height: 100%;
}

/* line 393, paper/_sidebar-and-main-panel.scss */
.perfect-scrollbar-off .sidebar .sidebar-wrapper,
.perfect-scrollbar-off .main-panel {
  overflow: auto;
}

@media (min-width: 992px) {
  /* line 401, paper/_sidebar-and-main-panel.scss */
  .sidebar-mini .sidebar,
  .sidebar-mini .sidebar .sidebar-wrapper {
    width: 80px;
  }
  /* line 406, paper/_sidebar-and-main-panel.scss */
  .sidebar-mini .main-panel {
    width: calc(100% - 80px);
  }
  /* line 410, paper/_sidebar-and-main-panel.scss */
  .sidebar-mini .sidebar {
    display: block;
    font-weight: 200;
    z-index: 1000;
  }
  /* line 416, paper/_sidebar-and-main-panel.scss */
  .sidebar-mini .sidebar .logo a.logo-mini {
    opacity: 1;
  }
  /* line 420, paper/_sidebar-and-main-panel.scss */
  .sidebar-mini .sidebar .logo a.logo-normal {
    opacity: 0;
    -webkit-transform: translate3d(-25px, 0, 0);
    -moz-transform: translate3d(-25px, 0, 0);
    -o-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  /* line 427, paper/_sidebar-and-main-panel.scss */
  .sidebar-mini .sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
  .sidebar-mini .sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
  .sidebar-mini .sidebar .sidebar-wrapper .user .info > a > span,
  .sidebar-mini .sidebar .sidebar-wrapper > .nav li > a p {
    -webkit-transform: translate3d(-25px, 0, 0);
    -moz-transform: translate3d(-25px, 0, 0);
    -o-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    opacity: 0;
  }
}

/* line 1, paper/_buttons.scss */
.btn,
.navbar .navbar-nav > li > a.btn {
  border-radius: 20px;
  box-sizing: border-box;
  border-width: 2px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 18px;
  border-color: #66615B;
  color: #66615B;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
}

/* line 6, paper/mixins/_buttons.scss */
.btn:hover, .btn:focus, .btn:active, .btn.active,
.open > .btn.dropdown-toggle,
.navbar .navbar-nav > li > a.btn:hover,
.navbar .navbar-nav > li > a.btn:focus,
.navbar .navbar-nav > li > a.btn:active,
.navbar .navbar-nav > li > a.btn.active,
.open >
.navbar .navbar-nav > li > a.btn.dropdown-toggle {
  background-color: #66615B;
  color: rgba(255, 255, 255, 0.85);
  border-color: #66615B;
}

/* line 14, paper/mixins/_buttons.scss */
.btn:hover .caret, .btn:focus .caret, .btn:active .caret, .btn.active .caret,
.open > .btn.dropdown-toggle .caret,
.navbar .navbar-nav > li > a.btn:hover .caret,
.navbar .navbar-nav > li > a.btn:focus .caret,
.navbar .navbar-nav > li > a.btn:active .caret,
.navbar .navbar-nav > li > a.btn.active .caret,
.open >
.navbar .navbar-nav > li > a.btn.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.btn.disabled, .btn.disabled:hover, .btn.disabled:focus, .btn.disabled.focus, .btn.disabled:active, .btn.disabled.active, .btn:disabled, .btn:disabled:hover, .btn:disabled:focus, .btn:disabled.focus, .btn:disabled:active, .btn:disabled.active, .btn[disabled], .btn[disabled]:hover, .btn[disabled]:focus, .btn[disabled].focus, .btn[disabled]:active, .btn[disabled].active,
fieldset[disabled] .btn,
fieldset[disabled] .btn:hover,
fieldset[disabled] .btn:focus,
fieldset[disabled] .btn.focus,
fieldset[disabled] .btn:active,
fieldset[disabled] .btn.active,
.navbar .navbar-nav > li > a.btn.disabled,
.navbar .navbar-nav > li > a.btn.disabled:hover,
.navbar .navbar-nav > li > a.btn.disabled:focus,
.navbar .navbar-nav > li > a.btn.disabled.focus,
.navbar .navbar-nav > li > a.btn.disabled:active,
.navbar .navbar-nav > li > a.btn.disabled.active,
.navbar .navbar-nav > li > a.btn:disabled,
.navbar .navbar-nav > li > a.btn:disabled:hover,
.navbar .navbar-nav > li > a.btn:disabled:focus,
.navbar .navbar-nav > li > a.btn:disabled.focus,
.navbar .navbar-nav > li > a.btn:disabled:active,
.navbar .navbar-nav > li > a.btn:disabled.active,
.navbar .navbar-nav > li > a.btn[disabled],
.navbar .navbar-nav > li > a.btn[disabled]:hover,
.navbar .navbar-nav > li > a.btn[disabled]:focus,
.navbar .navbar-nav > li > a.btn[disabled].focus,
.navbar .navbar-nav > li > a.btn[disabled]:active,
.navbar .navbar-nav > li > a.btn[disabled].active,
fieldset[disabled]
.navbar .navbar-nav > li > a.btn,
fieldset[disabled]
.navbar .navbar-nav > li > a.btn:hover,
fieldset[disabled]
.navbar .navbar-nav > li > a.btn:focus,
fieldset[disabled]
.navbar .navbar-nav > li > a.btn.focus,
fieldset[disabled]
.navbar .navbar-nav > li > a.btn:active,
fieldset[disabled]
.navbar .navbar-nav > li > a.btn.active {
  background-color: transparent;
  border-color: #66615B;
}

/* line 34, paper/mixins/_buttons.scss */
.btn.btn-fill,
.navbar .navbar-nav > li > a.btn.btn-fill {
  color: #FFFFFF;
  background-color: #66615B;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.btn.btn-fill:hover, .btn.btn-fill:focus, .btn.btn-fill:active, .btn.btn-fill.active,
.open > .btn.btn-fill.dropdown-toggle,
.navbar .navbar-nav > li > a.btn.btn-fill:hover,
.navbar .navbar-nav > li > a.btn.btn-fill:focus,
.navbar .navbar-nav > li > a.btn.btn-fill:active,
.navbar .navbar-nav > li > a.btn.btn-fill.active,
.open >
.navbar .navbar-nav > li > a.btn.btn-fill.dropdown-toggle {
  background-color: #484541;
  color: #FFFFFF;
  border-color: #484541;
}

/* line 49, paper/mixins/_buttons.scss */
.btn.btn-fill .caret,
.navbar .navbar-nav > li > a.btn.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.btn.btn-simple:hover, .btn.btn-simple:focus, .btn.btn-simple:active, .btn.btn-simple.active,
.open > .btn.btn-simple.dropdown-toggle,
.navbar .navbar-nav > li > a.btn.btn-simple:hover,
.navbar .navbar-nav > li > a.btn.btn-simple:focus,
.navbar .navbar-nav > li > a.btn.btn-simple:active,
.navbar .navbar-nav > li > a.btn.btn-simple.active,
.open >
.navbar .navbar-nav > li > a.btn.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #484541;
}

/* line 64, paper/mixins/_buttons.scss */
.btn.btn-simple .caret,
.navbar .navbar-nav > li > a.btn.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.btn .caret,
.navbar .navbar-nav > li > a.btn .caret {
  border-top-color: #66615B;
}

/* line 15, paper/_buttons.scss */
.btn:hover, .btn:focus,
.navbar .navbar-nav > li > a.btn:hover,
.navbar .navbar-nav > li > a.btn:focus {
  outline: 0 !important;
}

/* line 19, paper/_buttons.scss */
.btn:active, .btn.active,
.open > .btn.dropdown-toggle,
.navbar .navbar-nav > li > a.btn:active,
.navbar .navbar-nav > li > a.btn.active,
.open >
.navbar .navbar-nav > li > a.btn.dropdown-toggle {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 !important;
}

/* line 26, paper/_buttons.scss */
.btn.btn-icon,
.navbar .navbar-nav > li > a.btn.btn-icon {
  border-radius: 25px;
  padding: 7px 10px;
}

/* line 29, paper/_buttons.scss */
.btn.btn-icon i,
.navbar .navbar-nav > li > a.btn.btn-icon i {
  margin-right: 0px;
}

/* line 34, paper/_buttons.scss */
.btn [class*="ti-"],
.navbar .navbar-nav > li > a.btn [class*="ti-"] {
  vertical-align: middle;
}

/* line 40, paper/_buttons.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -2px;
}

/* line 50, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary, .btn-primary {
  border-color: #7A9E9F;
  color: #7A9E9F;
}

/* line 6, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary:hover, .navbar .navbar-nav > li > a.btn.btn-primary:focus, .navbar .navbar-nav > li > a.btn.btn-primary:active, .navbar .navbar-nav > li > a.btn.btn-primary.active,
.open > .navbar .navbar-nav > li > a.btn.btn-primary.dropdown-toggle, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  background-color: #7A9E9F;
  color: rgba(255, 255, 255, 0.85);
  border-color: #7A9E9F;
}

/* line 14, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary:hover .caret, .navbar .navbar-nav > li > a.btn.btn-primary:focus .caret, .navbar .navbar-nav > li > a.btn.btn-primary:active .caret, .navbar .navbar-nav > li > a.btn.btn-primary.active .caret,
.open > .navbar .navbar-nav > li > a.btn.btn-primary.dropdown-toggle .caret, .btn-primary:hover .caret, .btn-primary:focus .caret, .btn-primary:active .caret, .btn-primary.active .caret,
.open > .btn-primary.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary.disabled, .navbar .navbar-nav > li > a.btn.btn-primary.disabled:hover, .navbar .navbar-nav > li > a.btn.btn-primary.disabled:focus, .navbar .navbar-nav > li > a.btn.btn-primary.disabled.focus, .navbar .navbar-nav > li > a.btn.btn-primary.disabled:active, .navbar .navbar-nav > li > a.btn.btn-primary.disabled.active, .navbar .navbar-nav > li > a.btn.btn-primary:disabled, .navbar .navbar-nav > li > a.btn.btn-primary:disabled:hover, .navbar .navbar-nav > li > a.btn.btn-primary:disabled:focus, .navbar .navbar-nav > li > a.btn.btn-primary:disabled.focus, .navbar .navbar-nav > li > a.btn.btn-primary:disabled:active, .navbar .navbar-nav > li > a.btn.btn-primary:disabled.active, .navbar .navbar-nav > li > a.btn.btn-primary[disabled], .navbar .navbar-nav > li > a.btn.btn-primary[disabled]:hover, .navbar .navbar-nav > li > a.btn.btn-primary[disabled]:focus, .navbar .navbar-nav > li > a.btn.btn-primary[disabled].focus, .navbar .navbar-nav > li > a.btn.btn-primary[disabled]:active, .navbar .navbar-nav > li > a.btn.btn-primary[disabled].active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-primary,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-primary:hover,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-primary:focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-primary.focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-primary:active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-primary.active, .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary:disabled, .btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary:disabled.focus, .btn-primary:disabled:active, .btn-primary:disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary.active {
  background-color: transparent;
  border-color: #7A9E9F;
}

/* line 34, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary.btn-fill, .btn-primary.btn-fill {
  color: #FFFFFF;
  background-color: #7A9E9F;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary.btn-fill:hover, .navbar .navbar-nav > li > a.btn.btn-primary.btn-fill:focus, .navbar .navbar-nav > li > a.btn.btn-primary.btn-fill:active, .navbar .navbar-nav > li > a.btn.btn-primary.btn-fill.active,
.open > .navbar .navbar-nav > li > a.btn.btn-primary.btn-fill.dropdown-toggle, .btn-primary.btn-fill:hover, .btn-primary.btn-fill:focus, .btn-primary.btn-fill:active, .btn-primary.btn-fill.active,
.open > .btn-primary.btn-fill.dropdown-toggle {
  background-color: #5e8283;
  color: #FFFFFF;
  border-color: #5e8283;
}

/* line 49, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary.btn-fill .caret, .btn-primary.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary.btn-simple:hover, .navbar .navbar-nav > li > a.btn.btn-primary.btn-simple:focus, .navbar .navbar-nav > li > a.btn.btn-primary.btn-simple:active, .navbar .navbar-nav > li > a.btn.btn-primary.btn-simple.active,
.open > .navbar .navbar-nav > li > a.btn.btn-primary.btn-simple.dropdown-toggle, .btn-primary.btn-simple:hover, .btn-primary.btn-simple:focus, .btn-primary.btn-simple:active, .btn-primary.btn-simple.active,
.open > .btn-primary.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #5e8283;
}

/* line 64, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary.btn-simple .caret, .btn-primary.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-primary .caret, .btn-primary .caret {
  border-top-color: #7A9E9F;
}

/* line 51, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success, .btn-success {
  border-color: #7AC29A;
  color: #7AC29A;
}

/* line 6, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success:hover, .navbar .navbar-nav > li > a.btn.btn-success:focus, .navbar .navbar-nav > li > a.btn.btn-success:active, .navbar .navbar-nav > li > a.btn.btn-success.active,
.open > .navbar .navbar-nav > li > a.btn.btn-success.dropdown-toggle, .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  background-color: #7AC29A;
  color: rgba(255, 255, 255, 0.85);
  border-color: #7AC29A;
}

/* line 14, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success:hover .caret, .navbar .navbar-nav > li > a.btn.btn-success:focus .caret, .navbar .navbar-nav > li > a.btn.btn-success:active .caret, .navbar .navbar-nav > li > a.btn.btn-success.active .caret,
.open > .navbar .navbar-nav > li > a.btn.btn-success.dropdown-toggle .caret, .btn-success:hover .caret, .btn-success:focus .caret, .btn-success:active .caret, .btn-success.active .caret,
.open > .btn-success.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success.disabled, .navbar .navbar-nav > li > a.btn.btn-success.disabled:hover, .navbar .navbar-nav > li > a.btn.btn-success.disabled:focus, .navbar .navbar-nav > li > a.btn.btn-success.disabled.focus, .navbar .navbar-nav > li > a.btn.btn-success.disabled:active, .navbar .navbar-nav > li > a.btn.btn-success.disabled.active, .navbar .navbar-nav > li > a.btn.btn-success:disabled, .navbar .navbar-nav > li > a.btn.btn-success:disabled:hover, .navbar .navbar-nav > li > a.btn.btn-success:disabled:focus, .navbar .navbar-nav > li > a.btn.btn-success:disabled.focus, .navbar .navbar-nav > li > a.btn.btn-success:disabled:active, .navbar .navbar-nav > li > a.btn.btn-success:disabled.active, .navbar .navbar-nav > li > a.btn.btn-success[disabled], .navbar .navbar-nav > li > a.btn.btn-success[disabled]:hover, .navbar .navbar-nav > li > a.btn.btn-success[disabled]:focus, .navbar .navbar-nav > li > a.btn.btn-success[disabled].focus, .navbar .navbar-nav > li > a.btn.btn-success[disabled]:active, .navbar .navbar-nav > li > a.btn.btn-success[disabled].active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-success,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-success:hover,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-success:focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-success.focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-success:active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-success.active, .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success:disabled, .btn-success:disabled:hover, .btn-success:disabled:focus, .btn-success:disabled.focus, .btn-success:disabled:active, .btn-success:disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success.active {
  background-color: transparent;
  border-color: #7AC29A;
}

/* line 34, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success.btn-fill, .btn-success.btn-fill {
  color: #FFFFFF;
  background-color: #7AC29A;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success.btn-fill:hover, .navbar .navbar-nav > li > a.btn.btn-success.btn-fill:focus, .navbar .navbar-nav > li > a.btn.btn-success.btn-fill:active, .navbar .navbar-nav > li > a.btn.btn-success.btn-fill.active,
.open > .navbar .navbar-nav > li > a.btn.btn-success.btn-fill.dropdown-toggle, .btn-success.btn-fill:hover, .btn-success.btn-fill:focus, .btn-success.btn-fill:active, .btn-success.btn-fill.active,
.open > .btn-success.btn-fill.dropdown-toggle {
  background-color: #54b07d;
  color: #FFFFFF;
  border-color: #54b07d;
}

/* line 49, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success.btn-fill .caret, .btn-success.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success.btn-simple:hover, .navbar .navbar-nav > li > a.btn.btn-success.btn-simple:focus, .navbar .navbar-nav > li > a.btn.btn-success.btn-simple:active, .navbar .navbar-nav > li > a.btn.btn-success.btn-simple.active,
.open > .navbar .navbar-nav > li > a.btn.btn-success.btn-simple.dropdown-toggle, .btn-success.btn-simple:hover, .btn-success.btn-simple:focus, .btn-success.btn-simple:active, .btn-success.btn-simple.active,
.open > .btn-success.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #54b07d;
}

/* line 64, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success.btn-simple .caret, .btn-success.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-success .caret, .btn-success .caret {
  border-top-color: #7AC29A;
}

/* line 52, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info, .btn-info {
  border-color: #68B3C8;
  color: #68B3C8;
}

/* line 6, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info:hover, .navbar .navbar-nav > li > a.btn.btn-info:focus, .navbar .navbar-nav > li > a.btn.btn-info:active, .navbar .navbar-nav > li > a.btn.btn-info.active,
.open > .navbar .navbar-nav > li > a.btn.btn-info.dropdown-toggle, .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
  background-color: #68B3C8;
  color: rgba(255, 255, 255, 0.85);
  border-color: #68B3C8;
}

/* line 14, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info:hover .caret, .navbar .navbar-nav > li > a.btn.btn-info:focus .caret, .navbar .navbar-nav > li > a.btn.btn-info:active .caret, .navbar .navbar-nav > li > a.btn.btn-info.active .caret,
.open > .navbar .navbar-nav > li > a.btn.btn-info.dropdown-toggle .caret, .btn-info:hover .caret, .btn-info:focus .caret, .btn-info:active .caret, .btn-info.active .caret,
.open > .btn-info.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info.disabled, .navbar .navbar-nav > li > a.btn.btn-info.disabled:hover, .navbar .navbar-nav > li > a.btn.btn-info.disabled:focus, .navbar .navbar-nav > li > a.btn.btn-info.disabled.focus, .navbar .navbar-nav > li > a.btn.btn-info.disabled:active, .navbar .navbar-nav > li > a.btn.btn-info.disabled.active, .navbar .navbar-nav > li > a.btn.btn-info:disabled, .navbar .navbar-nav > li > a.btn.btn-info:disabled:hover, .navbar .navbar-nav > li > a.btn.btn-info:disabled:focus, .navbar .navbar-nav > li > a.btn.btn-info:disabled.focus, .navbar .navbar-nav > li > a.btn.btn-info:disabled:active, .navbar .navbar-nav > li > a.btn.btn-info:disabled.active, .navbar .navbar-nav > li > a.btn.btn-info[disabled], .navbar .navbar-nav > li > a.btn.btn-info[disabled]:hover, .navbar .navbar-nav > li > a.btn.btn-info[disabled]:focus, .navbar .navbar-nav > li > a.btn.btn-info[disabled].focus, .navbar .navbar-nav > li > a.btn.btn-info[disabled]:active, .navbar .navbar-nav > li > a.btn.btn-info[disabled].active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-info,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-info:hover,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-info:focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-info.focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-info:active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-info.active, .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info:disabled, .btn-info:disabled:hover, .btn-info:disabled:focus, .btn-info:disabled.focus, .btn-info:disabled:active, .btn-info:disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info.active {
  background-color: transparent;
  border-color: #68B3C8;
}

/* line 34, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info.btn-fill, .btn-info.btn-fill {
  color: #FFFFFF;
  background-color: #68B3C8;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info.btn-fill:hover, .navbar .navbar-nav > li > a.btn.btn-info.btn-fill:focus, .navbar .navbar-nav > li > a.btn.btn-info.btn-fill:active, .navbar .navbar-nav > li > a.btn.btn-info.btn-fill.active,
.open > .navbar .navbar-nav > li > a.btn.btn-info.btn-fill.dropdown-toggle, .btn-info.btn-fill:hover, .btn-info.btn-fill:focus, .btn-info.btn-fill:active, .btn-info.btn-fill.active,
.open > .btn-info.btn-fill.dropdown-toggle {
  background-color: #429cb6;
  color: #FFFFFF;
  border-color: #429cb6;
}

/* line 49, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info.btn-fill .caret, .btn-info.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info.btn-simple:hover, .navbar .navbar-nav > li > a.btn.btn-info.btn-simple:focus, .navbar .navbar-nav > li > a.btn.btn-info.btn-simple:active, .navbar .navbar-nav > li > a.btn.btn-info.btn-simple.active,
.open > .navbar .navbar-nav > li > a.btn.btn-info.btn-simple.dropdown-toggle, .btn-info.btn-simple:hover, .btn-info.btn-simple:focus, .btn-info.btn-simple:active, .btn-info.btn-simple.active,
.open > .btn-info.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #429cb6;
}

/* line 64, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info.btn-simple .caret, .btn-info.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-info .caret, .btn-info .caret {
  border-top-color: #68B3C8;
}

/* line 53, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning, .btn-warning {
  border-color: #F3BB45;
  color: #F3BB45;
}

/* line 6, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning:hover, .navbar .navbar-nav > li > a.btn.btn-warning:focus, .navbar .navbar-nav > li > a.btn.btn-warning:active, .navbar .navbar-nav > li > a.btn.btn-warning.active,
.open > .navbar .navbar-nav > li > a.btn.btn-warning.dropdown-toggle, .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  background-color: #F3BB45;
  color: rgba(255, 255, 255, 0.85);
  border-color: #F3BB45;
}

/* line 14, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning:hover .caret, .navbar .navbar-nav > li > a.btn.btn-warning:focus .caret, .navbar .navbar-nav > li > a.btn.btn-warning:active .caret, .navbar .navbar-nav > li > a.btn.btn-warning.active .caret,
.open > .navbar .navbar-nav > li > a.btn.btn-warning.dropdown-toggle .caret, .btn-warning:hover .caret, .btn-warning:focus .caret, .btn-warning:active .caret, .btn-warning.active .caret,
.open > .btn-warning.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning.disabled, .navbar .navbar-nav > li > a.btn.btn-warning.disabled:hover, .navbar .navbar-nav > li > a.btn.btn-warning.disabled:focus, .navbar .navbar-nav > li > a.btn.btn-warning.disabled.focus, .navbar .navbar-nav > li > a.btn.btn-warning.disabled:active, .navbar .navbar-nav > li > a.btn.btn-warning.disabled.active, .navbar .navbar-nav > li > a.btn.btn-warning:disabled, .navbar .navbar-nav > li > a.btn.btn-warning:disabled:hover, .navbar .navbar-nav > li > a.btn.btn-warning:disabled:focus, .navbar .navbar-nav > li > a.btn.btn-warning:disabled.focus, .navbar .navbar-nav > li > a.btn.btn-warning:disabled:active, .navbar .navbar-nav > li > a.btn.btn-warning:disabled.active, .navbar .navbar-nav > li > a.btn.btn-warning[disabled], .navbar .navbar-nav > li > a.btn.btn-warning[disabled]:hover, .navbar .navbar-nav > li > a.btn.btn-warning[disabled]:focus, .navbar .navbar-nav > li > a.btn.btn-warning[disabled].focus, .navbar .navbar-nav > li > a.btn.btn-warning[disabled]:active, .navbar .navbar-nav > li > a.btn.btn-warning[disabled].active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-warning,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-warning:hover,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-warning:focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-warning.focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-warning:active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-warning.active, .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning:disabled, .btn-warning:disabled:hover, .btn-warning:disabled:focus, .btn-warning:disabled.focus, .btn-warning:disabled:active, .btn-warning:disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning.active {
  background-color: transparent;
  border-color: #F3BB45;
}

/* line 34, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning.btn-fill, .btn-warning.btn-fill {
  color: #FFFFFF;
  background-color: #F3BB45;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning.btn-fill:hover, .navbar .navbar-nav > li > a.btn.btn-warning.btn-fill:focus, .navbar .navbar-nav > li > a.btn.btn-warning.btn-fill:active, .navbar .navbar-nav > li > a.btn.btn-warning.btn-fill.active,
.open > .navbar .navbar-nav > li > a.btn.btn-warning.btn-fill.dropdown-toggle, .btn-warning.btn-fill:hover, .btn-warning.btn-fill:focus, .btn-warning.btn-fill:active, .btn-warning.btn-fill.active,
.open > .btn-warning.btn-fill.dropdown-toggle {
  background-color: #f0a810;
  color: #FFFFFF;
  border-color: #f0a810;
}

/* line 49, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning.btn-fill .caret, .btn-warning.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning.btn-simple:hover, .navbar .navbar-nav > li > a.btn.btn-warning.btn-simple:focus, .navbar .navbar-nav > li > a.btn.btn-warning.btn-simple:active, .navbar .navbar-nav > li > a.btn.btn-warning.btn-simple.active,
.open > .navbar .navbar-nav > li > a.btn.btn-warning.btn-simple.dropdown-toggle, .btn-warning.btn-simple:hover, .btn-warning.btn-simple:focus, .btn-warning.btn-simple:active, .btn-warning.btn-simple.active,
.open > .btn-warning.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #f0a810;
}

/* line 64, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning.btn-simple .caret, .btn-warning.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-warning .caret, .btn-warning .caret {
  border-top-color: #F3BB45;
}

/* line 54, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger, .btn-danger {
  border-color: #EB5E28;
  color: #EB5E28;
}

/* line 6, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger:hover, .navbar .navbar-nav > li > a.btn.btn-danger:focus, .navbar .navbar-nav > li > a.btn.btn-danger:active, .navbar .navbar-nav > li > a.btn.btn-danger.active,
.open > .navbar .navbar-nav > li > a.btn.btn-danger.dropdown-toggle, .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  background-color: #EB5E28;
  color: rgba(255, 255, 255, 0.85);
  border-color: #EB5E28;
}

/* line 14, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger:hover .caret, .navbar .navbar-nav > li > a.btn.btn-danger:focus .caret, .navbar .navbar-nav > li > a.btn.btn-danger:active .caret, .navbar .navbar-nav > li > a.btn.btn-danger.active .caret,
.open > .navbar .navbar-nav > li > a.btn.btn-danger.dropdown-toggle .caret, .btn-danger:hover .caret, .btn-danger:focus .caret, .btn-danger:active .caret, .btn-danger.active .caret,
.open > .btn-danger.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger.disabled, .navbar .navbar-nav > li > a.btn.btn-danger.disabled:hover, .navbar .navbar-nav > li > a.btn.btn-danger.disabled:focus, .navbar .navbar-nav > li > a.btn.btn-danger.disabled.focus, .navbar .navbar-nav > li > a.btn.btn-danger.disabled:active, .navbar .navbar-nav > li > a.btn.btn-danger.disabled.active, .navbar .navbar-nav > li > a.btn.btn-danger:disabled, .navbar .navbar-nav > li > a.btn.btn-danger:disabled:hover, .navbar .navbar-nav > li > a.btn.btn-danger:disabled:focus, .navbar .navbar-nav > li > a.btn.btn-danger:disabled.focus, .navbar .navbar-nav > li > a.btn.btn-danger:disabled:active, .navbar .navbar-nav > li > a.btn.btn-danger:disabled.active, .navbar .navbar-nav > li > a.btn.btn-danger[disabled], .navbar .navbar-nav > li > a.btn.btn-danger[disabled]:hover, .navbar .navbar-nav > li > a.btn.btn-danger[disabled]:focus, .navbar .navbar-nav > li > a.btn.btn-danger[disabled].focus, .navbar .navbar-nav > li > a.btn.btn-danger[disabled]:active, .navbar .navbar-nav > li > a.btn.btn-danger[disabled].active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-danger,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-danger:hover,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-danger:focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-danger.focus,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-danger:active,
fieldset[disabled] .navbar .navbar-nav > li > a.btn.btn-danger.active, .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger:disabled, .btn-danger:disabled:hover, .btn-danger:disabled:focus, .btn-danger:disabled.focus, .btn-danger:disabled:active, .btn-danger:disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active,
fieldset[disabled] .btn-danger,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger.active {
  background-color: transparent;
  border-color: #EB5E28;
}

/* line 34, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger.btn-fill, .btn-danger.btn-fill {
  color: #FFFFFF;
  background-color: #EB5E28;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger.btn-fill:hover, .navbar .navbar-nav > li > a.btn.btn-danger.btn-fill:focus, .navbar .navbar-nav > li > a.btn.btn-danger.btn-fill:active, .navbar .navbar-nav > li > a.btn.btn-danger.btn-fill.active,
.open > .navbar .navbar-nav > li > a.btn.btn-danger.btn-fill.dropdown-toggle, .btn-danger.btn-fill:hover, .btn-danger.btn-fill:focus, .btn-danger.btn-fill:active, .btn-danger.btn-fill.active,
.open > .btn-danger.btn-fill.dropdown-toggle {
  background-color: #c84513;
  color: #FFFFFF;
  border-color: #c84513;
}

/* line 49, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger.btn-fill .caret, .btn-danger.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger.btn-simple:hover, .navbar .navbar-nav > li > a.btn.btn-danger.btn-simple:focus, .navbar .navbar-nav > li > a.btn.btn-danger.btn-simple:active, .navbar .navbar-nav > li > a.btn.btn-danger.btn-simple.active,
.open > .navbar .navbar-nav > li > a.btn.btn-danger.btn-simple.dropdown-toggle, .btn-danger.btn-simple:hover, .btn-danger.btn-simple:focus, .btn-danger.btn-simple:active, .btn-danger.btn-simple.active,
.open > .btn-danger.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #c84513;
}

/* line 64, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger.btn-simple .caret, .btn-danger.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-danger .caret, .btn-danger .caret {
  border-top-color: #EB5E28;
}

/* line 56, paper/_buttons.scss */
.btn-neutral {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* line 6, paper/mixins/_buttons.scss */
.btn-neutral:hover, .btn-neutral:focus, .btn-neutral:active, .btn-neutral.active,
.open > .btn-neutral.dropdown-toggle {
  background-color: #FFFFFF;
  color: rgba(255, 255, 255, 0.85);
  border-color: #FFFFFF;
}

/* line 14, paper/mixins/_buttons.scss */
.btn-neutral:hover .caret, .btn-neutral:focus .caret, .btn-neutral:active .caret, .btn-neutral.active .caret,
.open > .btn-neutral.dropdown-toggle .caret {
  border-top-color: rgba(255, 255, 255, 0.85);
}

/* line 23, paper/mixins/_buttons.scss */
.btn-neutral.disabled, .btn-neutral.disabled:hover, .btn-neutral.disabled:focus, .btn-neutral.disabled.focus, .btn-neutral.disabled:active, .btn-neutral.disabled.active, .btn-neutral:disabled, .btn-neutral:disabled:hover, .btn-neutral:disabled:focus, .btn-neutral:disabled.focus, .btn-neutral:disabled:active, .btn-neutral:disabled.active, .btn-neutral[disabled], .btn-neutral[disabled]:hover, .btn-neutral[disabled]:focus, .btn-neutral[disabled].focus, .btn-neutral[disabled]:active, .btn-neutral[disabled].active,
fieldset[disabled] .btn-neutral,
fieldset[disabled] .btn-neutral:hover,
fieldset[disabled] .btn-neutral:focus,
fieldset[disabled] .btn-neutral.focus,
fieldset[disabled] .btn-neutral:active,
fieldset[disabled] .btn-neutral.active {
  background-color: transparent;
  border-color: #FFFFFF;
}

/* line 34, paper/mixins/_buttons.scss */
.btn-neutral.btn-fill {
  color: #FFFFFF;
  background-color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 39, paper/mixins/_buttons.scss */
.btn-neutral.btn-fill:hover, .btn-neutral.btn-fill:focus, .btn-neutral.btn-fill:active, .btn-neutral.btn-fill.active,
.open > .btn-neutral.btn-fill.dropdown-toggle {
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* line 49, paper/mixins/_buttons.scss */
.btn-neutral.btn-fill .caret {
  border-top-color: #FFFFFF;
}

/* line 55, paper/mixins/_buttons.scss */
.btn-neutral.btn-simple:hover, .btn-neutral.btn-simple:focus, .btn-neutral.btn-simple:active, .btn-neutral.btn-simple.active,
.open > .btn-neutral.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #FFFFFF;
}

/* line 64, paper/mixins/_buttons.scss */
.btn-neutral.btn-simple .caret {
  border-top-color: #FFFFFF;
}

/* line 69, paper/mixins/_buttons.scss */
.btn-neutral .caret {
  border-top-color: #FFFFFF;
}

/* line 59, paper/_buttons.scss */
.btn-neutral:hover, .btn-neutral:focus {
  color: #66615B;
}

/* line 62, paper/_buttons.scss */
.btn-neutral:hover i, .btn-neutral:focus i {
  color: #66615B;
  opacity: 1;
}

/* line 68, paper/_buttons.scss */
.btn-neutral:active, .btn-neutral.active,
.open > .btn-neutral.dropdown-toggle {
  background-color: #FFFFFF;
  color: #66615B;
}

/* line 73, paper/_buttons.scss */
.btn-neutral:active i, .btn-neutral.active i,
.open > .btn-neutral.dropdown-toggle i {
  color: #66615B;
  opacity: 1;
}

/* line 79, paper/_buttons.scss */
.btn-neutral.btn-fill {
  color: #66615B;
}

/* line 81, paper/_buttons.scss */
.btn-neutral.btn-fill i {
  color: #66615B;
  opacity: 1;
}

/* line 86, paper/_buttons.scss */
.btn-neutral.btn-fill:hover, .btn-neutral.btn-fill:focus {
  color: #484541;
}

/* line 89, paper/_buttons.scss */
.btn-neutral.btn-fill:hover i, .btn-neutral.btn-fill:focus i {
  color: #484541;
  opacity: 1;
}

/* line 95, paper/_buttons.scss */
.btn-neutral.btn-simple:active, .btn-neutral.btn-simple.active {
  background-color: transparent;
}

/* line 102, paper/_buttons.scss */
.btn:disabled, .btn[disabled], .btn.disabled, .btn.btn-disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 109, paper/_buttons.scss */
.btn-disabled {
  cursor: default;
}

/* line 112, paper/_buttons.scss */
.btn-simple {
  border: 0;
  padding: 7px 18px;
}

/* line 118, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-lg,
.btn-lg {
  font-size: 18px;
  border-radius: 50px;
  padding: 11px 30px;
  font-weight: 400;
}

/* line 79, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-lg.btn-simple,
.btn-lg.btn-simple {
  padding: 13px 30px;
}

/* line 122, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-lg.btn-icon,
.btn-lg.btn-icon {
  border-radius: 30px;
  padding: 9px 16px;
}

/* line 127, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-sm,
.btn-sm {
  font-size: 12px;
  border-radius: 26px;
  padding: 4px 10px;
}

/* line 79, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-sm.btn-simple,
.btn-sm.btn-simple {
  padding: 6px 10px;
}

/* line 130, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-sm.btn-icon,
.btn-sm.btn-icon {
  padding: 3px 6px;
}

/* line 132, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-sm.btn-icon .fa,
.btn-sm.btn-icon .fa {
  line-height: 1.6;
  width: 15px;
}

/* line 138, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-xs,
.btn-xs {
  font-size: 12px;
  border-radius: 26px;
  padding: 2px 5px;
}

/* line 79, paper/mixins/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-xs.btn-simple,
.btn-xs.btn-simple {
  padding: 4px 5px;
}

/* line 141, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-xs.btn-icon,
.btn-xs.btn-icon {
  padding: 1px 5px;
}

/* line 143, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-xs.btn-icon .fa,
.btn-xs.btn-icon .fa {
  width: 10px;
}

/* line 148, paper/_buttons.scss */
.navbar .navbar-nav > li > a.btn.btn-wd,
.btn-wd {
  min-width: 140px;
}

/* line 153, paper/_buttons.scss */
.btn-group.select {
  width: 100%;
}

/* line 156, paper/_buttons.scss */
.btn-group.select .btn {
  text-align: left;
}

/* line 159, paper/_buttons.scss */
.btn-group.select .caret {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 8px;
}

/* line 165, paper/_buttons.scss */
.btn-tooltip {
  white-space: nowrap;
}

/* line 170, paper/_buttons.scss */
.buttons-with-margin .btn {
  margin-bottom: 5px;
}

/*     General overwrite     */
/* line 2, paper/_misc.scss */
body {
  color: #66615b;
  font-size: 14px;
  font-family: 'Muli', Arial, sans-serif;
}

/* line 6, paper/_misc.scss */
body .wrapper {
  min-height: 100vh;
  position: relative;
}

/* line 12, paper/_misc.scss */
a {
  color: #68B3C8;
}

/* line 15, paper/_misc.scss */
a:hover, a:focus {
  color: #429cb6;
  text-decoration: none;
}

/* line 21, paper/_misc.scss */
a:focus, a:active,
button::-moz-focus-inner,
input::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  outline: 0 !important;
}

/* line 29, paper/_misc.scss */
.ui-slider-handle:focus,
.navbar-toggle,
input:focus,
button:focus {
  outline: 0 !important;
}

/*           Animations              */
/* line 38, paper/_misc.scss */
.form-control,
.input-group-addon,
.tagsinput,
.navbar,
.navbar .alert {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 47, paper/_misc.scss */
.sidebar .nav a,
.sidebar .nav .collapse i,
.sidebar .nav .collapse a > span,
.sidebar .sidebar-wrapper > .nav p,
.sidebar .user .info > a > span,
.sidebar .user .info .collapse .nav a > span,
.sidebar .logo a.logo-mini,
.sidebar .logo a.logo-normal,
.table > tbody > tr .td-actions .btn,
.caret {
  -webkit-transition: all 150ms ease-in;
  -moz-transition: all 150ms ease-in;
  -o-transition: all 150ms ease-in;
  -ms-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}

/* line 60, paper/_misc.scss */
.btn {
  -webkit-transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
  -ms-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}

/* line 64, paper/_misc.scss */
.fa {
  width: 21px;
  text-align: center;
}

/* line 69, paper/_misc.scss */
.fa-base {
  font-size: 1.25em !important;
}

/* line 73, paper/_misc.scss */
.margin-top {
  margin-top: 50px;
}

/* line 77, paper/_misc.scss */
hr {
  border-color: #F1EAE0;
}

/* line 81, paper/_misc.scss */
.wrapper {
  position: relative;
  top: 0;
  height: 100vh;
}

@media (min-width: 992px) {
  /* line 88, paper/_misc.scss */
  .typo-line {
    padding-left: 140px;
    margin-bottom: 40px;
    position: relative;
  }
  /* line 94, paper/_misc.scss */
  .typo-line .category {
    transform: translateY(-50%);
    top: 50%;
    left: 0px;
    position: absolute;
  }
}

/* line 102, paper/_misc.scss */
.icon-section {
  margin: 0 0 3em;
  clear: both;
  overflow: hidden;
}

/* line 108, paper/_misc.scss */
.icon-container {
  width: 240px;
  padding: .7em 0;
  float: left;
  position: relative;
  text-align: left;
}

/* line 116, paper/_misc.scss */
.icon-container [class^="ti-"],
.icon-container [class*=" ti-"] {
  color: #000;
  position: absolute;
  margin-top: 3px;
  transition: .3s;
}

/* line 124, paper/_misc.scss */
.icon-container:hover [class^="ti-"],
.icon-container:hover [class*=" ti-"] {
  font-size: 2.2em;
  margin-top: -5px;
}

/* line 130, paper/_misc.scss */
.icon-container:hover .icon-name {
  color: #000;
}

/* line 134, paper/_misc.scss */
.icon-name {
  color: #aaa;
  margin-left: 35px;
  font-size: .8em;
  transition: .3s;
}

/* line 141, paper/_misc.scss */
.icon-container:hover .icon-name {
  margin-left: 45px;
}

/* line 145, paper/_misc.scss */
.places-buttons .btn {
  margin-bottom: 30px;
}

/* line 149, paper/_misc.scss */
.sidebar .nav > li.active-pro {
  position: absolute;
  width: 100%;
  bottom: 10px;
}

/* line 155, paper/_misc.scss */
.sidebar .nav > li.active-pro a {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  color: #FFFFFF;
}

/* line 161, paper/_misc.scss */
.table-upgrade td:nth-child(2),
.table-upgrade td:nth-child(3) {
  text-align: center;
}

/* line 166, paper/_misc.scss */
.animation-transition-general {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* line 170, paper/_misc.scss */
.animation-transition-fast {
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
}

/* line 173, paper/_misc.scss */
.animation-transition-ultra-fast {
  -webkit-transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
  -ms-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}

/* line 1, paper/_inputs.scss */
.form-control::-moz-placeholder {
  color: #cfcfca;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 4, paper/_inputs.scss */
.form-control:-moz-placeholder {
  color: #cfcfca;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 7, paper/_inputs.scss */
.form-control::-webkit-input-placeholder {
  color: #cfcfca;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 10, paper/_inputs.scss */
.form-control:-ms-input-placeholder {
  color: #cfcfca;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 14, paper/_inputs.scss */
.form-control {
  background-color: #F3F2EE;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  color: #66615b;
  font-size: 14px;
  padding: 7px 18px;
  height: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 23, paper/_inputs.scss */
.form-control:focus {
  border: 1px solid #e8e7e3;
  background-color: #FFFFFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 !important;
}

/* line 30, paper/_inputs.scss */
.has-success .form-control,
.has-error .form-control,
.has-success .form-control:focus,
.has-error .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 37, paper/_inputs.scss */
.has-success .form-control, .form-control.valid {
  color: #66615b;
  border-color: #e8e7e3;
}

/* line 43, paper/_inputs.scss */
.has-success .form-control:focus, .form-control.valid:focus, .form-control[aria-invalid="false"]:focus {
  background-color: #FFFFFF;
  border-color: #7AC29A;
}

/* line 48, paper/_inputs.scss */
.has-error .form-control, .form-control.error, .form-control[aria-invalid="true"] {
  background-color: #FFC0A4;
  color: #EB5E28;
  border-color: #EB5E28;
}

/* line 54, paper/_inputs.scss */
.has-error .form-control:focus, .form-control.error:focus {
  background-color: #FFFFFF;
  border-color: #EB5E28;
}

/* line 60, paper/_inputs.scss */
.form-control + .form-control-feedback {
  border-radius: 6px;
  font-size: 14px;
  margin-top: -7px;
  position: absolute;
  right: 10px;
  top: 50%;
  vertical-align: middle;
}

/* line 70, paper/_inputs.scss */
.open .form-control {
  border-bottom-color: transparent;
}

/* line 74, paper/_inputs.scss */
.form-control.input-no-border {
  border: 0 none;
}

/* line 78, paper/_inputs.scss */
.input-group .form-control:not(:first-child):not(:last-child) {
  border-left: 0;
  border-right: 0;
}

/* line 84, paper/_inputs.scss */
.input-lg {
  height: 55px;
  padding: 11px 30px;
}

/* line 90, paper/_inputs.scss */
.has-error .form-control-feedback, .has-error .control-label {
  color: #EB5E28;
}

/* line 95, paper/_inputs.scss */
.has-success .form-control-feedback, .has-success .control-label {
  color: #7AC29A;
}

/* line 101, paper/_inputs.scss */
.input-group-addon {
  background-color: #F3F2EE;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
}

/* line 106, paper/_inputs.scss */
.has-success .input-group-addon,
.has-error .input-group-addon {
  background-color: #FFFFFF;
}

/* line 110, paper/_inputs.scss */
.has-error .form-control:focus + .input-group-addon {
  color: #EB5E28;
}

/* line 113, paper/_inputs.scss */
.has-success .form-control:focus + .input-group-addon {
  color: #7AC29A;
}

/* line 116, paper/_inputs.scss */
.form-control:focus + .input-group-addon,
.form-control:focus ~ .input-group-addon {
  background-color: #FFFFFF;
}

/* line 121, paper/_inputs.scss */
.has-error .input-group-addon {
  color: #EB5E28;
  border-color: #EB5E28;
}

/* line 125, paper/_inputs.scss */
.has-error .input-group-addon {
  color: #7AC29A;
  border-color: #7AC29A;
}

/* line 130, paper/_inputs.scss */
.input-group-addon + .form-control {
  padding-left: 0;
}

/* line 134, paper/_inputs.scss */
.input-group {
  margin-bottom: 15px;
}

/* line 138, paper/_inputs.scss */
.input-group[disabled] .input-group-addon {
  background-color: #E3E3E3;
}

/* line 142, paper/_inputs.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-right: 0 none;
}

/* line 148, paper/_inputs.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-left: 0 none;
}

/* line 154, paper/_inputs.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #E3E3E3;
  cursor: not-allowed;
  color: #9A9A9A;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 159, paper/_inputs.scss */
.form-control[disabled]::-moz-placeholder {
  color: #9A9A9A;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 162, paper/_inputs.scss */
.form-control[disabled]:-moz-placeholder {
  color: #cfcfca;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 165, paper/_inputs.scss */
.form-control[disabled]::-webkit-input-placeholder {
  color: #cfcfca;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 168, paper/_inputs.scss */
.form-control[disabled]:-ms-input-placeholder {
  color: #cfcfca;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 171, paper/_inputs.scss */
.input-group-btn .btn {
  border-width: 1px;
  padding: 9px 18px;
}

/* line 175, paper/_inputs.scss */
.input-group-btn .btn-default:not(.btn-fill) {
  border-color: #cfcfca;
}

/* line 179, paper/_inputs.scss */
.input-group-btn:last-child > .btn {
  margin-left: 0;
}

/* line 182, paper/_inputs.scss */
textarea.form-control {
  max-width: 100%;
  padding: 10px 18px;
  resize: none;
}

/* line 188, paper/_inputs.scss */
.input-group-focus .input-group-addon {
  background-color: #FFFFFF;
}

/* line 192, paper/_inputs.scss */
label::after + input[aria-required="true"] {
  content: "*";
  color: red;
}

/* line 1, paper/_progress-bars.scss */
.progress {
  background-color: #cfcfca;
  border-radius: 3px;
  box-shadow: none;
  height: 8px;
}

/* line 7, paper/_progress-bars.scss */
.progress-thin {
  height: 4px;
}

/* line 10, paper/_progress-bars.scss */
.progress-bar {
  background-color: #7A9E9F;
}

/* line 13, paper/_progress-bars.scss */
.progress-bar-primary {
  background-color: #7A9E9F;
}

/* line 16, paper/_progress-bars.scss */
.progress-bar-info {
  background-color: #68B3C8;
}

/* line 19, paper/_progress-bars.scss */
.progress-bar-success {
  background-color: #7AC29A;
}

/* line 22, paper/_progress-bars.scss */
.progress-bar-warning {
  background-color: #F3BB45;
}

/* line 25, paper/_progress-bars.scss */
.progress-bar-danger {
  background-color: #EB5E28;
}

/* line 4, paper/_forms.scss */
form label.radio, form label.checkbox {
  font-size: 14px;
  text-transform: none;
  cursor: pointer;
}

/* line 12, paper/_forms.scss */
.form-group {
  position: relative;
}

/* line 16, paper/_forms.scss */
.form-horizontal .checkbox,
.form-horizontal .radio {
  padding-top: 0;
}

/* line 20, paper/_forms.scss */
.form-horizontal .checkbox:first-child, .form-horizontal .checkbox.checkbox-inline, .form-horizontal .checkbox.radio-inline,
.form-horizontal .radio:first-child,
.form-horizontal .radio.checkbox-inline,
.form-horizontal .radio.radio-inline {
  margin-top: 13px;
}

/* line 28, paper/_forms.scss */
star {
  color: #EB5E28;
  padding-left: 3px;
}

@media (min-width: 992px) {
  /* line 35, paper/_forms.scss */
  .form-horizontal .control-label {
    padding-top: 12px !important;
  }
  /* line 38, paper/_forms.scss */
  .form-horizontal code {
    margin-top: 8px;
    display: inline-block;
  }
}

/* line 1, paper/_alerts.scss */
.alert {
  border: 0;
  border-radius: 0;
  color: #FFFFFF;
  padding: 10px 15px;
  font-size: 14px;
}

/* line 8, paper/_alerts.scss */
.container .alert {
  border-radius: 4px;
}

/* line 12, paper/_alerts.scss */
.navbar .alert {
  border-radius: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 85px;
  width: 100%;
  z-index: 3;
}

/* line 21, paper/_alerts.scss */
.navbar:not(.navbar-transparent) .alert {
  top: 70px;
}

/* line 25, paper/_alerts.scss */
.alert span[data-notify="icon"] {
  font-size: 30px;
  display: block;
  left: 15px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

/* line 34, paper/_alerts.scss */
.alert .close ~ span {
  display: block;
  max-width: 89%;
}

/* line 39, paper/_alerts.scss */
.alert[data-notify="container"] {
  padding: 10px 10px 10px 20px;
  border-radius: 4px;
}

/* line 44, paper/_alerts.scss */
.alert.alert-with-icon {
  padding-left: 65px;
}

/* line 49, paper/_alerts.scss */
.alert-info {
  background-color: #7CE4FE;
  color: #429cb6;
}

/* line 54, paper/_alerts.scss */
.alert-success {
  background-color: #8EF3C5;
  color: #54b07d;
}

/* line 59, paper/_alerts.scss */
.alert-warning {
  background-color: #FFE28C;
  color: #f0a810;
}

/* line 64, paper/_alerts.scss */
.alert-danger {
  background-color: #FF8F5E;
  color: #c84513;
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 2, paper/_tables.scss */
.table {
  border-collapse: inherit;
}

/* line 9, paper/_tables.scss */
.table thead tr > th,
.table thead tr > td,
.table tbody tr > th,
.table tbody tr > td,
.table tfoot tr > th,
.table tfoot tr > td {
  border-top: 1px solid #CCC5B9;
}

/* line 14, paper/_tables.scss */
.table thead tr.success th, .table thead tr.success td,
.table tbody tr.success th,
.table tbody tr.success td,
.table tfoot tr.success th,
.table tfoot tr.success td {
  background-color: #bcf8dd;
}

/* line 18, paper/_tables.scss */
.table thead tr.success:hover th, .table thead tr.success:hover td,
.table tbody tr.success:hover th,
.table tbody tr.success:hover td,
.table tfoot tr.success:hover th,
.table tfoot tr.success:hover td {
  background-color: #a5f5d1;
}

/* line 25, paper/_tables.scss */
.table thead tr.info th, .table thead tr.info td,
.table tbody tr.info th,
.table tbody tr.info td,
.table tfoot tr.info th,
.table tfoot tr.info td {
  background-color: #afeefe;
}

/* line 29, paper/_tables.scss */
.table thead tr.info:hover th, .table thead tr.info:hover td,
.table tbody tr.info:hover th,
.table tbody tr.info:hover td,
.table tfoot tr.info:hover th,
.table tfoot tr.info:hover td {
  background-color: #95e9fe;
}

/* line 36, paper/_tables.scss */
.table thead tr.warning th, .table thead tr.warning td,
.table tbody tr.warning th,
.table tbody tr.warning td,
.table tfoot tr.warning th,
.table tfoot tr.warning td {
  background-color: #ffefbf;
}

/* line 40, paper/_tables.scss */
.table thead tr.warning:hover th, .table thead tr.warning:hover td,
.table tbody tr.warning:hover th,
.table tbody tr.warning:hover td,
.table tfoot tr.warning:hover th,
.table tfoot tr.warning:hover td {
  background-color: #ffe8a6;
}

/* line 47, paper/_tables.scss */
.table thead tr.danger th, .table thead tr.danger td,
.table tbody tr.danger th,
.table tbody tr.danger td,
.table tfoot tr.danger th,
.table tfoot tr.danger td {
  background-color: #ffb291;
}

/* line 51, paper/_tables.scss */
.table thead tr.danger:hover th, .table thead tr.danger:hover td,
.table tbody tr.danger:hover th,
.table tbody tr.danger:hover td,
.table tfoot tr.danger:hover th,
.table tfoot tr.danger:hover td {
  background-color: #ffa178;
}

/* line 57, paper/_tables.scss */
.table > thead > tr > th {
  border-bottom-width: 0;
  font-size: 1.25em;
  font-weight: 300;
}

/* line 63, paper/_tables.scss */
.table .radio,
.table .checkbox {
  margin-top: 0;
  margin-bottom: 22px;
  padding: 0;
  width: 15px;
}

/* line 70, paper/_tables.scss */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 12px 11px;
  vertical-align: middle;
}

/* line 80, paper/_tables.scss */
.table .th-description {
  max-width: 150px;
}

/* line 83, paper/_tables.scss */
.table .td-price {
  font-size: 26px;
  font-weight: 300;
  margin-top: 5px;
  text-align: right;
}

/* line 89, paper/_tables.scss */
.table .td-total {
  font-weight: 600;
  font-size: 1.25em;
  padding-top: 20px;
  text-align: right;
}

/* line 98, paper/_tables.scss */
.table .td-actions .btn.btn-sm, .table .td-actions .btn.btn-xs {
  padding-left: 3px;
  padding-right: 3px;
}

/* line 105, paper/_tables.scss */
.table > tbody > tr {
  position: relative;
}

/* line 109, paper/_tables.scss */
.table .has-switch {
  top: 9px;
  margin-top: -12px;
}

/* line 116, paper/_tables.scss */
.table-striped tbody > tr:nth-of-type(2n+1) {
  background-color: #F3F2EE;
}

/* line 119, paper/_tables.scss */
.table-striped > thead > tr > th,
.table-striped > tbody > tr > th,
.table-striped > tfoot > tr > th,
.table-striped > thead > tr > td,
.table-striped > tbody > tr > td,
.table-striped > tfoot > tr > td {
  padding: 15px 8px;
}

/* line 129, paper/_tables.scss */
.table-shopping > thead > tr > th {
  color: #a49e93;
  font-size: 1.1em;
  font-weight: 300;
}

/* line 134, paper/_tables.scss */
.table-shopping > tbody > tr > td {
  font-size: 14px;
  padding: 30px 5px;
}

/* line 137, paper/_tables.scss */
.table-shopping > tbody > tr > td b {
  display: block;
  margin-bottom: 5px;
}

/* line 142, paper/_tables.scss */
.table-shopping .td-number,
.table-shopping .td-price,
.table-shopping .td-total {
  font-size: 1.2em;
  min-width: 130px;
  text-align: right;
  padding-right: 20px;
}

/* line 150, paper/_tables.scss */
.table-shopping .td-number small,
.table-shopping .td-price small,
.table-shopping .td-total small {
  margin-right: 3px;
}

/* line 154, paper/_tables.scss */
.table-shopping .td-product {
  min-width: 170px;
  padding-left: 30px;
}

/* line 157, paper/_tables.scss */
.table-shopping .td-product strong {
  color: #484541;
  font-size: 1.2em;
  font-weight: 600;
}

/* line 163, paper/_tables.scss */
.table-shopping .td-number,
.table-shopping .td-total {
  color: #484541;
  font-weight: 600;
}

/* line 170, paper/_tables.scss */
.table-shopping .td-quantity .btn-group {
  margin-left: 10px;
}

/* line 174, paper/_tables.scss */
.table-shopping .img-container {
  border-radius: 6px;
  display: block;
  height: 100px;
  overflow: hidden;
  width: 100px;
  margin-left: 10px;
}

/* line 182, paper/_tables.scss */
.table-shopping .img-container img {
  width: 100%;
}

/* line 186, paper/_tables.scss */
.table-shopping .tr-actions > td {
  border-top: 0;
}

/* line 193, paper/_tables.scss */
.table-icons {
  display: inline-block;
  min-width: 110px;
}

/* line 200, paper/_tables.scss */
.el-table td, .el-table th.is-leaf {
  border: none;
}

/* line 203, paper/_tables.scss */
.el-table tr {
  z-index: 10;
}

/* line 207, paper/_tables.scss */
.el-table .el-checkbox__inner:hover,
.el-table .el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #66615B;
  border-color: #66615B;
}

/* line 213, paper/_tables.scss */
.el-table .el-checkbox__input.is-focus .el-checkbox__inner {
  border-color: #66615B;
}

/* line 218, paper/_tables.scss */
.el-table .el-table__footer .cell {
  font-weight: bold;
  font-size: 16px;
}

/* line 223, paper/_tables.scss */
.el-table tbody tr td:first-child,
.el-table thead tr th:first-child {
  padding-left: 18px;
}

/* line 229, paper/_tables.scss */
.card-plain .el-table {
  background-color: transparent;
}

/* line 231, paper/_tables.scss */
.card-plain .el-table tr {
  background-color: transparent;
}

/* line 1, paper/_tooltips-and-popovers.scss */
.tooltip {
  font-size: 14px;
  font-weight: 600;
}

/* line 5, paper/_tooltips-and-popovers.scss */
.tooltip.top {
  margin-top: -11px;
  padding: 0;
}

/* line 9, paper/_tooltips-and-popovers.scss */
.tooltip.top .tooltip-inner:after {
  border-top: 11px solid #FAE6A4;
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  bottom: -10px;
}

/* line 15, paper/_tooltips-and-popovers.scss */
.tooltip.top .tooltip-inner:before {
  border-top: 11px solid rgba(0, 0, 0, 0.2);
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  bottom: -11px;
}

/* line 21, paper/_tooltips-and-popovers.scss */
.tooltip.bottom {
  margin-top: 11px;
  padding: 0;
}

/* line 25, paper/_tooltips-and-popovers.scss */
.tooltip.bottom .tooltip-inner:after {
  border-bottom: 11px solid #FAE6A4;
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  top: -10px;
}

/* line 31, paper/_tooltips-and-popovers.scss */
.tooltip.bottom .tooltip-inner:before {
  border-bottom: 11px solid rgba(0, 0, 0, 0.2);
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  top: -11px;
}

/* line 37, paper/_tooltips-and-popovers.scss */
.tooltip.left {
  margin-left: -11px;
  padding: 0;
}

/* line 41, paper/_tooltips-and-popovers.scss */
.tooltip.left .tooltip-inner:after {
  border-left: 11px solid #FAE6A4;
  border-top: 11px solid rgba(0, 0, 0, 0);
  border-bottom: 11px solid rgba(0, 0, 0, 0);
  right: -10px;
  left: auto;
  margin-left: 0;
}

/* line 49, paper/_tooltips-and-popovers.scss */
.tooltip.left .tooltip-inner:before {
  border-left: 11px solid rgba(0, 0, 0, 0.2);
  border-top: 11px solid rgba(0, 0, 0, 0);
  border-bottom: 11px solid rgba(0, 0, 0, 0);
  right: -11px;
  left: auto;
  margin-left: 0;
}

/* line 57, paper/_tooltips-and-popovers.scss */
.tooltip.right {
  margin-left: 11px;
  padding: 0;
}

/* line 61, paper/_tooltips-and-popovers.scss */
.tooltip.right .tooltip-inner:after {
  border-right: 11px solid #FAE6A4;
  border-top: 11px solid rgba(0, 0, 0, 0);
  border-bottom: 11px solid rgba(0, 0, 0, 0);
  left: -10px;
  top: 0;
  margin-left: 0;
}

/* line 69, paper/_tooltips-and-popovers.scss */
.tooltip.right .tooltip-inner:before {
  border-right: 11px solid rgba(0, 0, 0, 0.2);
  border-top: 11px solid rgba(0, 0, 0, 0);
  border-bottom: 11px solid rgba(0, 0, 0, 0);
  left: -11px;
  top: 0;
  margin-left: 0;
}

/* line 79, paper/_tooltips-and-popovers.scss */
.tooltip-arrow {
  display: none;
  opacity: 0;
}

/* line 83, paper/_tooltips-and-popovers.scss */
.tooltip-inner {
  background-color: #FAE6A4;
  border-radius: 4px;
  box-shadow: 0 1px 13px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(115, 71, 38, 0.23);
  color: #734726;
  max-width: 280px;
  min-width: 90px;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
}

/* line 94, paper/_tooltips-and-popovers.scss */
.tooltip-inner:after {
  content: "";
  display: inline-block;
  left: 100%;
  margin-left: -60%;
  position: absolute;
}

/* line 101, paper/_tooltips-and-popovers.scss */
.tooltip-inner:before {
  content: "";
  display: inline-block;
  left: 100%;
  margin-left: -60%;
  position: absolute;
}

/* line 109, paper/_tooltips-and-popovers.scss */
.popover {
  padding: 0;
  border-radius: 6px;
  z-index: 1031;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 116, paper/_tooltips-and-popovers.scss */
.popover-title {
  font-size: 14px;
  background-color: rgba(91, 202, 255, 0.98);
  font-weight: normal;
  line-height: 22px;
  padding: 8px 15px;
  margin: 0;
  color: #FFFFFF;
  text-align: center;
  border-radius: 6px 6px 0 0;
}

/* line 127, paper/_tooltips-and-popovers.scss */
.popover-content {
  padding: 9px 15px;
}

/* line 130, paper/_tooltips-and-popovers.scss */
.popover .arrow {
  border: 0;
}

/* line 133, paper/_tooltips-and-popovers.scss */
.popover.top .arrow {
  margin-left: 0;
}

/* line 136, paper/_tooltips-and-popovers.scss */
.popover.bottom .arrow:after {
  border-bottom-color: rgba(91, 202, 255, 0.98);
}

/* line 139, paper/_tooltips-and-popovers.scss */
.popover-filter {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  transition: visibility 0s linear 0.3s,opacity 0.3s linear;
}

/* line 152, paper/_tooltips-and-popovers.scss */
.popover-filter.in {
  visibility: visible;
  opacity: 0.2;
  filter: alpha(opacity=20);
  transition-delay: 0s;
}

/* line 3, paper/_navbars.scss */
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

/* line 9, paper/_navbars.scss */
.navbar {
  border: 0;
  border-radius: 0;
  font-size: 16px;
}

/* line 15, paper/_navbars.scss */
.navbar .navbar-minimize {
  float: left;
}

/* line 18, paper/_navbars.scss */
.navbar .navbar-minimize .btn {
  margin: 18px 3px;
}

/* line 22, paper/_navbars.scss */
.navbar .navbar-minimize .ti-more-alt {
  display: inline-block;
  min-width: 14px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 27, paper/_navbars.scss */
.navbar .navbar-minimize .btn-simple {
  margin: 20px 3px;
  font-size: 14px;
}

/* line 33, paper/_navbars.scss */
.navbar .navbar-brand {
  font-weight: 600;
  margin: 12px 0px;
  padding: 15px 15px;
  font-size: 20px;
}

/* line 40, paper/_navbars.scss */
.navbar .navbar-nav > li > a {
  line-height: 1.42857;
  margin: 16px 0px;
  padding: 10px 15px;
}

/* line 45, paper/_navbars.scss */
.navbar .navbar-nav > li > a i,
.navbar .navbar-nav > li > a p {
  display: inline-block;
  margin: 0;
}

/* line 50, paper/_navbars.scss */
.navbar .navbar-nav > li > a i {
  position: relative;
  top: 1px;
}

/* line 55, paper/_navbars.scss */
.navbar .navbar-nav > li > a.btn {
  margin: 17px 3px;
  padding: 7px 18px;
}

/* line 61, paper/_navbars.scss */
.navbar .btn-simple {
  font-size: 16px;
}

/* line 65, paper/_navbars.scss */
.navbar.navbar-absolute {
  position: absolute;
  width: 100%;
  z-index: 1030;
}

/* line 72, paper/_navbars.scss */
.navbar-fixed {
  position: fixed;
  z-index: 1032;
  right: 0;
  width: 100%;
}

/* line 78, paper/_navbars.scss */
.navbar-fixed ~ .main-panel > .content {
  padding-top: 95px;
  min-height: calc(100% - 71px);
}

/* line 84, paper/_navbars.scss */
.navbar-nav > li > .dropdown-menu {
  border-radius: 6px;
  margin-top: -5px;
}

/* line 90, paper/_navbars.scss */
.navbar-transparent .navbar-brand, [class*="navbar-ct"] .navbar-brand {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 93, paper/_navbars.scss */
.navbar-transparent .navbar-brand:focus, .navbar-transparent .navbar-brand:hover, [class*="navbar-ct"] .navbar-brand:focus, [class*="navbar-ct"] .navbar-brand:hover {
  background-color: transparent;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 99, paper/_navbars.scss */
.navbar-transparent .navbar-brand:not([class*="text"]), [class*="navbar-ct"] .navbar-brand:not([class*="text"]) {
  color: #FFFFFF;
}

/* line 104, paper/_navbars.scss */
.navbar-transparent .navbar-nav > li > a:not(.btn), [class*="navbar-ct"] .navbar-nav > li > a:not(.btn) {
  color: #FFFFFF;
  border-color: #FFFFFF;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* line 109, paper/_navbars.scss */
.navbar-transparent .navbar-nav > .active > a:not(.btn),
.navbar-transparent .navbar-nav > .active > a:hover:not(.btn),
.navbar-transparent .navbar-nav > .active > a:focus:not(.btn),
.navbar-transparent .navbar-nav > li > a:hover:not(.btn),
.navbar-transparent .navbar-nav > li > a:focus:not(.btn), [class*="navbar-ct"] .navbar-nav > .active > a:not(.btn),
[class*="navbar-ct"] .navbar-nav > .active > a:hover:not(.btn),
[class*="navbar-ct"] .navbar-nav > .active > a:focus:not(.btn),
[class*="navbar-ct"] .navbar-nav > li > a:hover:not(.btn),
[class*="navbar-ct"] .navbar-nav > li > a:focus:not(.btn) {
  background-color: transparent;
  border-radius: 3px;
  color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 119, paper/_navbars.scss */
.navbar-transparent .navbar-nav .nav > li > a.btn:hover, [class*="navbar-ct"] .navbar-nav .nav > li > a.btn:hover {
  background-color: transparent;
}

/* line 123, paper/_navbars.scss */
.navbar-transparent .navbar-nav > .dropdown > a .caret,
.navbar-transparent .navbar-nav > .dropdown > a:hover .caret,
.navbar-transparent .navbar-nav > .dropdown > a:focus .caret, [class*="navbar-ct"] .navbar-nav > .dropdown > a .caret,
[class*="navbar-ct"] .navbar-nav > .dropdown > a:hover .caret,
[class*="navbar-ct"] .navbar-nav > .dropdown > a:focus .caret {
  border-bottom-color: #FFFFFF;
  border-top-color: #FFFFFF;
}

/* line 130, paper/_navbars.scss */
.navbar-transparent .navbar-nav > .open > a,
.navbar-transparent .navbar-nav > .open > a:hover,
.navbar-transparent .navbar-nav > .open > a:focus, [class*="navbar-ct"] .navbar-nav > .open > a,
[class*="navbar-ct"] .navbar-nav > .open > a:hover,
[class*="navbar-ct"] .navbar-nav > .open > a:focus {
  background-color: transparent;
  color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 139, paper/_navbars.scss */
.navbar-transparent .btn-default, [class*="navbar-ct"] .btn-default {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* line 143, paper/_navbars.scss */
.navbar-transparent .btn-default.btn-fill, [class*="navbar-ct"] .btn-default.btn-fill {
  color: #9A9A9A;
  background-color: #FFFFFF;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 148, paper/_navbars.scss */
.navbar-transparent .btn-default.btn-fill:hover,
.navbar-transparent .btn-default.btn-fill:focus,
.navbar-transparent .btn-default.btn-fill:active,
.navbar-transparent .btn-default.btn-fill.active,
.navbar-transparent .open .dropdown-toggle.btn-fill.btn-default, [class*="navbar-ct"] .btn-default.btn-fill:hover,
[class*="navbar-ct"] .btn-default.btn-fill:focus,
[class*="navbar-ct"] .btn-default.btn-fill:active,
[class*="navbar-ct"] .btn-default.btn-fill.active,
[class*="navbar-ct"] .open .dropdown-toggle.btn-fill.btn-default {
  border-color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 159, paper/_navbars.scss */
.navbar-transparent .dropdown-menu .divider {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 164, paper/_navbars.scss */
.navbar-default {
  background-color: #f4f3ef;
  border-bottom: 1px solid #cfcfca;
}

/* line 168, paper/_navbars.scss */
.navbar-default .brand {
  color: #66615b !important;
}

/* line 172, paper/_navbars.scss */
.navbar-default .navbar-nav > li > a:not(.btn) {
  color: #9A9A9A;
}

/* line 176, paper/_navbars.scss */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:not(.btn):hover,
.navbar-default .navbar-nav > .active > a:not(.btn):focus,
.navbar-default .navbar-nav > li > a:not(.btn):hover,
.navbar-default .navbar-nav > li > a:not(.btn):focus {
  background-color: transparent;
  border-radius: 3px;
  color: #68B3C8;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 187, paper/_navbars.scss */
.navbar-default .navbar-nav > .dropdown > a:hover .caret,
.navbar-default .navbar-nav > .dropdown > a:focus .caret {
  border-bottom-color: #68B3C8;
  border-top-color: #68B3C8;
}

/* line 194, paper/_navbars.scss */
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: transparent;
  color: #68B3C8;
}

/* line 201, paper/_navbars.scss */
.navbar-default .navbar-nav .navbar-toggle:hover, .navbar-default .navbar-nav .navbar-toggle:focus {
  background-color: transparent;
}

/* line 207, paper/_navbars.scss */
.navbar-default:not(.navbar-transparent) .btn-neutral,
.navbar-default:not(.navbar-transparent) .btn-neutral:hover,
.navbar-default:not(.navbar-transparent) .btn-neutral:active {
  color: #9A9A9A;
}

/* line 214, paper/_navbars.scss */
.navbar-form {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 224, paper/_navbars.scss */
.navbar-form .input-group {
  margin: 0;
}

/* line 230, paper/_navbars.scss */
.navbar-ct-primary {
  background-color: #8ECFD5;
}

/* line 233, paper/_navbars.scss */
.navbar-ct-info {
  background-color: #7CE4FE;
}

/* line 236, paper/_navbars.scss */
.navbar-ct-success {
  background-color: #8EF3C5;
}

/* line 239, paper/_navbars.scss */
.navbar-ct-warning {
  background-color: #FFE28C;
}

/* line 242, paper/_navbars.scss */
.navbar-ct-danger {
  background-color: #FF8F5E;
}

/* line 246, paper/_navbars.scss */
.navbar-transparent {
  padding-top: 15px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

/* line 251, paper/_navbars.scss */
.navbar-transparent .navbar-brand {
  color: #FFFFFF;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 255, paper/_navbars.scss */
.navbar-transparent .navbar-brand:focus, .navbar-transparent .navbar-brand:hover {
  background-color: transparent;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 263, paper/_navbars.scss */
.navbar-transparent .navbar-nav > li > a:not(.btn) {
  color: #FFFFFF;
  border-color: #FFFFFF;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* line 268, paper/_navbars.scss */
.navbar-transparent .navbar-nav > .active > a:not(.btn),
.navbar-transparent .navbar-nav > .active > a:hover:not(.btn),
.navbar-transparent .navbar-nav > .active > a:focus:not(.btn),
.navbar-transparent .navbar-nav > li > a:hover:not(.btn),
.navbar-transparent .navbar-nav > li > a:focus:not(.btn) {
  background-color: transparent;
  border-radius: 3px;
  color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 278, paper/_navbars.scss */
.navbar-transparent .navbar-nav .nav > li > a.btn:hover {
  background-color: transparent;
}

/* line 284, paper/_navbars.scss */
.navbar-toggle {
  margin-top: 19px;
  margin-bottom: 19px;
  border: 0;
}

/* line 289, paper/_navbars.scss */
.navbar-toggle .icon-bar {
  background-color: #FFFFFF;
}

/* line 292, paper/_navbars.scss */
.navbar-toggle .navbar-collapse,
.navbar-toggle .navbar-form {
  border-color: transparent;
}

/* line 297, paper/_navbars.scss */
.navbar-toggle.navbar-default .navbar-toggle:hover,
.navbar-toggle.navbar-default .navbar-toggle:focus {
  background-color: transparent;
}

/* line 1, paper/_footers.scss */
.footer {
  background-attachment: fixed;
  position: relative;
  line-height: 20px;
}

/* line 6, paper/_footers.scss */
.footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* line 11, paper/_footers.scss */
.footer nav ul li {
  display: inline-block;
  padding: 10px 15px;
  margin: 15px 3px;
  line-height: 20px;
  text-align: center;
}

/* line 18, paper/_footers.scss */
.footer nav ul a:not(.btn) {
  color: #66615b;
  display: block;
  margin-bottom: 3px;
}

/* line 23, paper/_footers.scss */
.footer nav ul a:not(.btn):focus, .footer nav ul a:not(.btn):hover {
  color: #484541;
}

/* line 30, paper/_footers.scss */
.footer .copyright {
  color: #66615b;
  padding: 10px 15px;
  font-size: 14px;
  white-space: nowrap;
  margin: 15px 3px;
  line-height: 20px;
  text-align: center;
}

/* line 39, paper/_footers.scss */
.footer .heart {
  color: #EB5E28;
}

/* line 46, paper/_footers.scss */
.main-panel .footer nav ul {
  margin: 10px 10px 0 0;
}

/* line 48, paper/_footers.scss */
.main-panel .footer nav ul li {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-left: 18px;
  line-height: 20px;
}

/* line 57, paper/_footers.scss */
.main-panel .footer .copyright {
  padding: 0;
  margin: 10px 0 0 10px;
}

/* line 1, paper/_cards.scss */
.card {
  border-radius: 6px;
  box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  color: #252422;
  margin-bottom: 20px;
  position: relative;
}

/* line 9, paper/_cards.scss */
.card .card-title,
.card .stats,
.card .category,
.card .description,
.card .social-line,
.card .actions,
.card .card-content,
.card .card-footer,
.card small,
.card a {
  position: relative;
}

/* line 22, paper/_cards.scss */
.card .card-link {
  color: #444444;
}

/* line 25, paper/_cards.scss */
.card .card-link:hover, .card .card-link:focus {
  color: #333333;
}

/* line 31, paper/_cards.scss */
.card img {
  max-width: 100%;
  height: auto;
}

/* line 36, paper/_cards.scss */
.card .card-header {
  padding: 20px 15px 0px;
  position: relative;
  border-radius: 3px 3px 0 0;
}

/* line 43, paper/_cards.scss */
.card .card-header.header-with-icon {
  height: 150px;
}

/* line 46, paper/_cards.scss */
.card .card-header img {
  width: 100%;
}

/* line 50, paper/_cards.scss */
.card .card-header .category {
  padding: 5px 0px;
}

/* line 56, paper/_cards.scss */
.card .actions {
  padding: 10px 15px;
}

/* line 59, paper/_cards.scss */
.card .more {
  float: right;
  z-index: 4;
  display: block;
  padding-top: 10px;
  padding-right: 10px;
  position: relative;
}

/* line 68, paper/_cards.scss */
.card .alert {
  border-radius: 4px;
}

/* line 71, paper/_cards.scss */
.card .category {
  font-size: 14px;
  font-weight: 400;
  color: #9A9A9A;
  margin-bottom: 0px;
}

/* line 77, paper/_cards.scss */
.card .category i {
  font-size: 14px;
}

/* line 81, paper/_cards.scss */
.card .category.error {
  color: #EB5E28;
  font-size: 12px;
}

/* line 87, paper/_cards.scss */
.card .card-title {
  margin: 0;
  color: #252422;
  font-weight: 300;
}

/* line 93, paper/_cards.scss */
.card .card-content {
  padding: 15px 15px 10px 15px;
}

/* line 96, paper/_cards.scss */
.card .card-content .card-title {
  margin: 10px 0 20px 0;
}

/* line 100, paper/_cards.scss */
.card .card-content .big-title {
  text-transform: uppercase;
  text-align: center;
}

/* line 105, paper/_cards.scss */
.card .card-content .category ~ .card-title {
  margin-top: 10px;
}

/* line 109, paper/_cards.scss */
.card .card-content .description ~ .card-title {
  margin-top: -10px;
}

/* line 114, paper/_cards.scss */
.card .description {
  font-size: 14px;
  color: #66615b;
}

/* line 119, paper/_cards.scss */
.card h6 {
  font-size: 12px;
  margin: 10px 0;
}

/* line 124, paper/_cards.scss */
.card .card-footer {
  padding: 0 15px 15px;
}

/* line 128, paper/_cards.scss */
.card .card-footer .social-line .btn:first-child {
  border-radius: 0 0 0 6px;
}

/* line 131, paper/_cards.scss */
.card .card-footer .social-line .btn:last-child {
  border-radius: 0 0 6px 0;
}

/* line 136, paper/_cards.scss */
.card .card-footer hr {
  margin-top: 0px;
  margin-bottom: 15px;
}

/* line 141, paper/_cards.scss */
.card .card-footer > .form-group {
  margin-bottom: 0;
}

/* line 145, paper/_cards.scss */
.card .card-footer .footer-title {
  padding-top: 5px;
  display: inline-block;
}

/* line 152, paper/_cards.scss */
.card .map {
  height: 280px;
  border-radius: 4px;
}

/* line 156, paper/_cards.scss */
.card .map.map-big {
  height: 420px;
}

/* line 161, paper/_cards.scss */
.card.card-separator:after {
  height: 100%;
  right: -15px;
  top: 0;
  width: 1px;
  background-color: #cfcfca;
  content: "";
  position: absolute;
}

/* line 171, paper/_cards.scss */
.card .icon {
  display: block;
  margin: 0 auto;
  top: 60%;
  position: relative;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  text-align: center;
}

/* line 180, paper/_cards.scss */
.card .icon i {
  font-size: 60px;
  padding: 18px;
  width: 110px;
  border: 2px solid #ccc5b9;
  border-radius: 50%;
  height: 110px;
}

/* line 192, paper/_cards.scss */
.card .icon-big {
  font-size: 3em;
}

/* line 196, paper/_cards.scss */
.card .numbers {
  text-align: right;
  font-size: 2em;
}

/* line 200, paper/_cards.scss */
.card .numbers p {
  margin: 0;
}

/* line 206, paper/_cards.scss */
.card .pull-right .label {
  margin-top: 7px;
}

/* line 211, paper/_cards.scss */
.card ul.team-members li {
  padding: 10px 0px;
}

/* line 213, paper/_cards.scss */
.card ul.team-members li:not(:last-child) {
  border-bottom: 1px solid #F1EAE0;
}

/* line 221, paper/_cards.scss */
.col-lg-4 .card .icon i {
  font-size: 80px;
  padding: 22px;
}

/* line 228, paper/_cards.scss */
.card .stats {
  color: #a49e93;
  font-weight: 300;
}

/* line 234, paper/_cards.scss */
.card.card-circle-chart .card-title {
  margin-bottom: 10px;
}

/* line 237, paper/_cards.scss */
.card.card-circle-chart .card-content {
  padding: 10px 15px 10px;
  text-align: center;
}

/* line 243, paper/_cards.scss */
.card .bootstrap-table {
  padding: 0px 20px;
}

/* line 254, paper/_cards.scss */
.card[data-background-color="blue"] .card-title,
.card[data-background-color="blue"] .stats,
.card[data-background-color="blue"] .category,
.card[data-background-color="blue"] .description,
.card[data-background-color="blue"] .card-content,
.card[data-background-color="blue"] .card-footer,
.card[data-background-color="blue"] small,
.card[data-background-color="blue"] .content a, .card[data-background-color="green"] .card-title,
.card[data-background-color="green"] .stats,
.card[data-background-color="green"] .category,
.card[data-background-color="green"] .description,
.card[data-background-color="green"] .card-content,
.card[data-background-color="green"] .card-footer,
.card[data-background-color="green"] small,
.card[data-background-color="green"] .content a, .card[data-background-color="yellow"] .card-title,
.card[data-background-color="yellow"] .stats,
.card[data-background-color="yellow"] .category,
.card[data-background-color="yellow"] .description,
.card[data-background-color="yellow"] .card-content,
.card[data-background-color="yellow"] .card-footer,
.card[data-background-color="yellow"] small,
.card[data-background-color="yellow"] .content a, .card[data-background-color="brown"] .card-title,
.card[data-background-color="brown"] .stats,
.card[data-background-color="brown"] .category,
.card[data-background-color="brown"] .description,
.card[data-background-color="brown"] .card-content,
.card[data-background-color="brown"] .card-footer,
.card[data-background-color="brown"] small,
.card[data-background-color="brown"] .content a, .card[data-background-color="purple"] .card-title,
.card[data-background-color="purple"] .stats,
.card[data-background-color="purple"] .category,
.card[data-background-color="purple"] .description,
.card[data-background-color="purple"] .card-content,
.card[data-background-color="purple"] .card-footer,
.card[data-background-color="purple"] small,
.card[data-background-color="purple"] .content a, .card[data-background-color="orange"] .card-title,
.card[data-background-color="orange"] .stats,
.card[data-background-color="orange"] .category,
.card[data-background-color="orange"] .description,
.card[data-background-color="orange"] .card-content,
.card[data-background-color="orange"] .card-footer,
.card[data-background-color="orange"] small,
.card[data-background-color="orange"] .content a {
  color: #FFFFFF;
}

/* line 265, paper/_cards.scss */
.card[data-background-color="blue"] .card-content a:hover,
.card[data-background-color="blue"] .card-content a:focus, .card[data-background-color="green"] .card-content a:hover,
.card[data-background-color="green"] .card-content a:focus, .card[data-background-color="yellow"] .card-content a:hover,
.card[data-background-color="yellow"] .card-content a:focus, .card[data-background-color="brown"] .card-content a:hover,
.card[data-background-color="brown"] .card-content a:focus, .card[data-background-color="purple"] .card-content a:hover,
.card[data-background-color="purple"] .card-content a:focus, .card[data-background-color="orange"] .card-content a:hover,
.card[data-background-color="orange"] .card-content a:focus {
  color: #FFFFFF;
}

/* line 271, paper/_cards.scss */
.card[data-background-color="blue"] .icon i, .card[data-background-color="green"] .icon i, .card[data-background-color="yellow"] .icon i, .card[data-background-color="brown"] .icon i, .card[data-background-color="purple"] .icon i, .card[data-background-color="orange"] .icon i {
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* line 277, paper/_cards.scss */
.card[data-background-color="blue"] .icon-big, .card[data-background-color="green"] .icon-big, .card[data-background-color="yellow"] .icon-big, .card[data-background-color="brown"] .icon-big, .card[data-background-color="purple"] .icon-big, .card[data-background-color="orange"] .icon-big {
  color: rgba(0, 0, 0, 0.4);
}

/* line 280, paper/_cards.scss */
.card[data-background-color="blue"] hr, .card[data-background-color="green"] hr, .card[data-background-color="yellow"] hr, .card[data-background-color="brown"] hr, .card[data-background-color="purple"] hr, .card[data-background-color="orange"] hr {
  border-color: rgba(255, 255, 255, 0.5);
}

/* line 285, paper/_cards.scss */
.card[data-background-color="blue"] {
  background: #b8d8d8;
}

/* line 244, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="blue"] .category {
  color: #7a9e9f;
}

/* line 247, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="blue"] .description {
  color: #506568;
}

/* line 251, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="blue"] .icon i {
  color: #506568;
  border: 2px solid #7a9e9f;
}

/* line 289, paper/_cards.scss */
.card[data-background-color="green"] {
  background: #d5e5a3;
}

/* line 244, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="green"] .category {
  color: #92ac56;
}

/* line 247, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="green"] .description {
  color: #60773d;
}

/* line 251, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="green"] .icon i {
  color: #60773d;
  border: 2px solid #92ac56;
}

/* line 293, paper/_cards.scss */
.card[data-bakcground-color="yellow"] {
  background: #ffe28c;
}

/* line 244, paper/mixins/_vendor-prefixes.scss */
.card[data-bakcground-color="yellow"] .category {
  color: #d88715;
}

/* line 247, paper/mixins/_vendor-prefixes.scss */
.card[data-bakcground-color="yellow"] .description {
  color: #b25825;
}

/* line 251, paper/mixins/_vendor-prefixes.scss */
.card[data-bakcground-color="yellow"] .icon i {
  color: #b25825;
  border: 2px solid #d88715;
}

/* line 297, paper/_cards.scss */
.card[data-background-color="brown"] {
  background: #d6c1ab;
}

/* line 244, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="brown"] .category {
  color: #a47e65;
}

/* line 247, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="brown"] .description {
  color: #75442e;
}

/* line 251, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="brown"] .icon i {
  color: #75442e;
  border: 2px solid #a47e65;
}

/* line 301, paper/_cards.scss */
.card[data-background-color="purple"] {
  background: #baa9ba;
}

/* line 244, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="purple"] .category {
  color: #5a283d;
}

/* line 247, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="purple"] .description {
  color: #3a283d;
}

/* line 251, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="purple"] .icon i {
  color: #3a283d;
  border: 2px solid #5a283d;
}

/* line 305, paper/_cards.scss */
.card[data-background-color="orange"] {
  background: #ff8f5e;
}

/* line 244, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="orange"] .category {
  color: #e95e37;
}

/* line 247, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="orange"] .description {
  color: #772510;
}

/* line 251, paper/mixins/_vendor-prefixes.scss */
.card[data-background-color="orange"] .icon i {
  color: #772510;
  border: 2px solid #e95e37;
}

/* line 310, paper/_cards.scss */
.btn-center {
  text-align: center;
}

/* line 314, paper/_cards.scss */
.card-wizard {
  border-radius: 6px;
}

/* line 317, paper/_cards.scss */
.card-wizard .nav-pills {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 325, paper/_cards.scss */
.card-wizard .nav-pills > li > a {
  text-align: center;
  border: none;
  background-color: #9A9A9A;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* line 332, paper/_cards.scss */
.card-wizard .nav-pills > li > a:hover, .card-wizard .nav-pills > li > a:focus {
  background-color: #9A9A9A;
  outline: 0 !important;
}

/* line 339, paper/_cards.scss */
.card-wizard .nav-pills > li:first-child > a,
.card-wizard .nav-pills > li:last-child > a {
  border-radius: 0;
}

/* line 346, paper/_cards.scss */
.card-wizard .btn-finish {
  display: none;
}

/* line 351, paper/_cards.scss */
.card-wizard .card-header .category {
  padding: 0px;
}

/* line 356, paper/_cards.scss */
.card-wizard .card-content h5 {
  padding: 20px;
}

/* line 359, paper/_cards.scss */
.card-wizard .card-content label.error:not(.form-control) {
  color: #EB5E28;
  font-weight: 300;
  font-size: 0.8em;
}

/* line 365, paper/_cards.scss */
.card-wizard .footer {
  padding-bottom: 25px;
  padding-top: 25px;
}

/* line 372, paper/_cards.scss */
.card-user .image {
  border-radius: 8px 8px 0 0;
  height: 150px;
  position: relative;
  overflow: hidden;
}

/* line 378, paper/_cards.scss */
.card-user .image img {
  width: 100%;
  height: 150px;
}

/* line 383, paper/_cards.scss */
.card-user .image-plain {
  height: 0;
  margin-top: 110px;
}

/* line 387, paper/_cards.scss */
.card-user .author {
  text-align: center;
  text-transform: none;
  margin-top: -65px;
}

/* line 391, paper/_cards.scss */
.card-user .author .card-title {
  color: #484541;
}

/* line 393, paper/_cards.scss */
.card-user .author .card-title small {
  color: #ccc5b9;
}

/* line 398, paper/_cards.scss */
.card-user .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 15px;
}

/* line 405, paper/_cards.scss */
.card-user .avatar.border-white {
  border: 5px solid #FFFFFF;
}

/* line 408, paper/_cards.scss */
.card-user .avatar.border-gray {
  border: 5px solid #ccc5b9;
}

/* line 412, paper/_cards.scss */
.card-user .card-title {
  font-weight: 600;
  line-height: 24px;
}

/* line 416, paper/_cards.scss */
.card-user .card-content {
  min-height: 240px;
}

/* line 421, paper/_cards.scss */
.card-user.card-plain .avatar {
  height: 190px;
  width: 190px;
}

/* line 429, paper/_cards.scss */
.card-image .details {
  margin-left: 4px;
  min-height: 50px;
  padding: 0 4px 0.5em;
  position: relative;
}

/* line 435, paper/_cards.scss */
.card-image .details .author {
  margin-top: -21px;
}

/* line 438, paper/_cards.scss */
.card-image .details .author .name {
  color: #66615b;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.15;
  max-width: 11em;
  overflow: hidden;
  padding-top: 3px;
  text-overflow: ellipsis;
}

/* line 448, paper/_cards.scss */
.card-image .details .author .name:hover, .card-image .details .author .name:active, .card-image .details .author .name:focus {
  color: #484541;
}

/* line 452, paper/_cards.scss */
.card-image .details .author img {
  height: 40px;
  width: 40px;
  margin-bottom: 5px;
}

/* line 458, paper/_cards.scss */
.card-image .details .meta {
  color: #ccc5b9;
  font-size: 0.8em;
}

/* line 462, paper/_cards.scss */
.card-image .details .actions {
  float: right;
  font-size: 0.875em;
  line-height: 2.6;
  position: absolute;
  right: 4px;
  top: 36px;
  z-index: 1;
}

/* line 470, paper/_cards.scss */
.card-image .details .actions .btn.btn-simple {
  padding-left: 2px;
}

/* line 476, paper/_cards.scss */
.card-image .details-center {
  text-align: center;
}

/* line 478, paper/_cards.scss */
.card-image .details-center .author {
  position: relative;
  display: inline-block;
  text-align: left;
  margin: 20px auto 0;
}

/* line 484, paper/_cards.scss */
.card-image .details-center .author img {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 489, paper/_cards.scss */
.card-image .details-center .author .text {
  padding-left: 50px;
}

/* line 497, paper/_cards.scss */
.card-lock {
  text-align: center;
  padding: 30px;
  display: block;
}

/* line 502, paper/_cards.scss */
.card-lock .author {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 0 auto;
}

/* line 508, paper/_cards.scss */
.card-lock .author img {
  width: 100%;
}

/* line 513, paper/_cards.scss */
.card-lock h4 {
  margin-top: 15px;
  margin-bottom: 30px;
}

/* line 519, paper/_cards.scss */
.card-login,
.card-lock {
  box-shadow: 0 25px 30px -13px rgba(40, 40, 40, 0.4);
  border-radius: 6px;
  padding-top: 25px;
  padding-bottom: 25px;
}

/* line 528, paper/_cards.scss */
.card-login .card-header {
  text-align: center;
}

/* line 530, paper/_cards.scss */
.card-login .card-header .card-title {
  color: #66615b;
  margin-bottom: 20px;
}

/* line 536, paper/_cards.scss */
.card-login label {
  color: #66615b;
}

/* line 539, paper/_cards.scss */
.card-login .btn-wd {
  min-width: 180px;
}

/* line 543, paper/_cards.scss */
.card-login .card-footer {
  padding: 20px 0 0;
}

/* line 545, paper/_cards.scss */
.card-login .card-footer .forgot {
  padding: 20px 0px 0px;
}

/* line 552, paper/_cards.scss */
.card-product .details .name {
  margin-top: 20px;
}

/* line 555, paper/_cards.scss */
.card-product .details .description {
  display: inline-block;
  margin-right: 60px;
}

/* line 559, paper/_cards.scss */
.card-product .details .actions {
  top: 20px;
}

/* line 562, paper/_cards.scss */
.card-product .details .actions h5 {
  color: #484541;
}

/* line 570, paper/_cards.scss */
.card-user .footer,
.card-price .footer {
  padding: 5px 15px 10px;
}

/* line 573, paper/_cards.scss */
.card-user hr,
.card-price hr {
  margin: 5px 15px;
}

/* line 578, paper/_cards.scss */
.card-chat hr {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 583, paper/_cards.scss */
.card-chat .card-footer {
  padding: 0;
  float: right;
}

/* line 590, paper/_cards.scss */
.card-map .full-screen-map {
  height: 500px;
  margin-top: 20px;
}

/* line 596, paper/_cards.scss */
.card-plain {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* line 601, paper/_cards.scss */
.card-plain .image {
  border-radius: 4px;
}

/* line 605, paper/_cards.scss */
.card-plain .card-content,
.card-plain .card-header {
  padding-left: 0;
  padding-right: 0;
}

/* line 612, paper/_cards.scss */
.card-content .ct-chart {
  min-height: 210px;
}

/* line 2, paper/_timeline.scss */
.card-timeline .timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

/* line 7, paper/_timeline.scss */
.card-timeline .timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #E3E3E3;
  left: 50%;
  margin-left: -1.5px;
  background-color: #e8e7e3;
}

/* line 19, paper/_timeline.scss */
.card-timeline .timeline h6 {
  color: #9A9A9A;
  font-weight: 400;
  margin: 10px 0px 0px;
}

/* line 27, paper/_timeline.scss */
.card-timeline .timeline.timeline-simple:before {
  left: 5%;
  background-color: #e8e7e3;
}

/* line 32, paper/_timeline.scss */
.card-timeline .timeline.timeline-simple > li > .timeline-panel {
  width: 86%;
}

/* line 36, paper/_timeline.scss */
.card-timeline .timeline.timeline-simple > li > .timeline-badge {
  left: 5%;
}

/* line 41, paper/_timeline.scss */
.card-timeline .timeline > li {
  margin-bottom: 20px;
  position: relative;
}

/* line 45, paper/_timeline.scss */
.card-timeline .timeline > li:before, .card-timeline .timeline > li:after {
  content: " ";
  display: table;
}

/* line 51, paper/_timeline.scss */
.card-timeline .timeline > li:after {
  clear: both;
}

/* line 57, paper/_timeline.scss */
.card-timeline .timeline > li > .timeline-panel {
  width: 45%;
  float: left;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
  background-color: #FFFFFF;
  color: #252422;
  margin-bottom: 20px;
  position: relative;
}

/* line 68, paper/_timeline.scss */
.card-timeline .timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #e8e7e3;
  border-right: 0 solid #e8e7e3;
  border-bottom: 15px solid transparent;
  content: " ";
}

/* line 80, paper/_timeline.scss */
.card-timeline .timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #FFFFFF;
  border-right: 0 solid #FFFFFF;
  border-bottom: 14px solid transparent;
  content: " ";
}

/* line 95, paper/_timeline.scss */
.card-timeline .timeline > li > .timeline-badge {
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  line-height: 51px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #9A9A9A;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

/* line 113, paper/_timeline.scss */
.card-timeline .timeline > li > .timeline-badge [class^="ti-"],
.card-timeline .timeline > li > .timeline-badge [class*=" ti-"] {
  line-height: inherit;
}

/* line 121, paper/_timeline.scss */
.card-timeline .timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  background-color: #FFFFFF;
}

/* line 125, paper/_timeline.scss */
.card-timeline .timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

/* line 132, paper/_timeline.scss */
.card-timeline .timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

/* line 143, paper/_timeline.scss */
.card-timeline .timeline-heading {
  margin-bottom: 15px;
}

/* line 146, paper/_timeline.scss */
.card-timeline .timeline-badge.primary {
  background-color: #b8d8d8 !important;
}

/* line 149, paper/_timeline.scss */
.card-timeline .timeline-badge.info {
  background-color: #b8d8d8 !important;
}

/* line 153, paper/_timeline.scss */
.card-timeline .timeline-badge.success {
  background-color: #d5e5a3 !important;
}

/* line 157, paper/_timeline.scss */
.card-timeline .timeline-badge.warning {
  background-color: #ffe28c !important;
}

/* line 161, paper/_timeline.scss */
.card-timeline .timeline-badge.danger {
  background-color: #ff8f5e !important;
}

/* line 166, paper/_timeline.scss */
.card-timeline .timeline-title {
  margin-top: 0;
  color: inherit;
}

/* line 171, paper/_timeline.scss */
.card-timeline .timeline-body > p,
.card-timeline .timeline-body > ul {
  margin-bottom: 0;
}

/* line 176, paper/_timeline.scss */
.card-timeline .timeline-body > p + p {
  margin-top: 5px;
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 5, paper/_slider.scss */
.slider-info .el-slider__bar {
  height: 6px;
  background-color: #68B3C8;
}

/* line 9, paper/_slider.scss */
.slider-info .el-tooltip {
  border: none;
}

/* line 12, paper/_slider.scss */
.slider-info .el-slider__button {
  background-color: #68B3C8;
  height: 18px;
  width: 18px;
}

/* line 13, paper/_slider.scss */
.slider-info .el-slider__button.hover, .slider-info .el-slider__button:hover, .slider-info .el-slider__button.dragging {
  background-color: #44a0b9;
}

/* line 5, paper/_slider.scss */
.slider-primary .el-slider__bar {
  height: 6px;
  background-color: #7A9E9F;
}

/* line 9, paper/_slider.scss */
.slider-primary .el-tooltip {
  border: none;
}

/* line 12, paper/_slider.scss */
.slider-primary .el-slider__button {
  background-color: #7A9E9F;
  height: 18px;
  width: 18px;
}

/* line 13, paper/_slider.scss */
.slider-primary .el-slider__button.hover, .slider-primary .el-slider__button:hover, .slider-primary .el-slider__button.dragging {
  background-color: #608586;
}

/* line 5, paper/_slider.scss */
.slider-success .el-slider__bar {
  height: 6px;
  background-color: #7AC29A;
}

/* line 9, paper/_slider.scss */
.slider-success .el-tooltip {
  border: none;
}

/* line 12, paper/_slider.scss */
.slider-success .el-slider__button {
  background-color: #7AC29A;
  height: 18px;
  width: 18px;
}

/* line 13, paper/_slider.scss */
.slider-success .el-slider__button.hover, .slider-success .el-slider__button:hover, .slider-success .el-slider__button.dragging {
  background-color: #57b27f;
}

/* line 5, paper/_slider.scss */
.slider-warning .el-slider__bar {
  height: 6px;
  background-color: #F3BB45;
}

/* line 9, paper/_slider.scss */
.slider-warning .el-tooltip {
  border: none;
}

/* line 12, paper/_slider.scss */
.slider-warning .el-slider__button {
  background-color: #F3BB45;
  height: 18px;
  width: 18px;
}

/* line 13, paper/_slider.scss */
.slider-warning .el-slider__button.hover, .slider-warning .el-slider__button:hover, .slider-warning .el-slider__button.dragging {
  background-color: #f0a915;
}

/* line 5, paper/_slider.scss */
.slider-danger .el-slider__bar {
  height: 6px;
  background-color: #EB5E28;
}

/* line 9, paper/_slider.scss */
.slider-danger .el-tooltip {
  border: none;
}

/* line 12, paper/_slider.scss */
.slider-danger .el-slider__button {
  background-color: #EB5E28;
  height: 18px;
  width: 18px;
}

/* line 13, paper/_slider.scss */
.slider-danger .el-slider__button.hover, .slider-danger .el-slider__button:hover, .slider-danger .el-slider__button.dragging {
  background-color: #cd4713;
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 74, paper/_select.scss */
.el-select .el-input:hover .el-input__icon,
.el-select .el-input:hover input {
  color: white;
}

/* line 76, paper/_select.scss */
.el-select .el-input:hover .el-input__icon::placeholder,
.el-select .el-input:hover input::placeholder {
  color: white;
}

/* line 83, paper/_select.scss */
.el-select-dropdown {
  border-radius: 10px;
}

/* line 6, paper/_select.scss */
.select-default.el-select .el-input .el-input__suffix {
  display: flex;
  align-items: center;
}

/* line 11, paper/_select.scss */
.select-default.el-select .el-input:hover .el-input__icon,
.select-default.el-select .el-input:hover input {
  color: white;
}

/* line 13, paper/_select.scss */
.select-default.el-select .el-input:hover .el-input__icon::placeholder,
.select-default.el-select .el-input:hover input::placeholder {
  color: white;
}

/* line 18, paper/_select.scss */
.select-default.el-select .el-input:hover input,
.select-default.el-select .el-input:hover .el-input__icon {
  background-color: #66615B;
}

/* line 24, paper/_select.scss */
.select-default.el-select .el-input .el-input__icon {
  border-radius: 20px;
  height: 20px;
}

/* line 29, paper/_select.scss */
.select-default.el-select .el-input input {
  background-color: white;
  border-color: #66615B !important;
  border-width: 2px;
  border-radius: 20px;
  color: #66615B;
}

/* line 36, paper/_select.scss */
.select-default.el-select .el-input .el-input__icon {
  color: #66615B;
}

/* line 42, paper/_select.scss */
.select-default .el-tag, .select-default .el-tag.el-tag--info {
  line-height: 24px;
  background-color: #66615B !important;
  border: none !important;
}

/* line 46, paper/_select.scss */
.select-default .el-tag .el-tag__close, .select-default .el-tag.el-tag--info .el-tag__close {
  width: 20px;
  height: 20px;
  top: 1px;
  color: white;
  background-color: transparent;
}

/* line 52, paper/_select.scss */
.select-default .el-tag .el-tag__close:hover, .select-default .el-tag.el-tag--info .el-tag__close:hover {
  background-color: white;
}

/* line 57, paper/_select.scss */
.select-default.el-select-dropdown__item.selected, .select-default.el-select-dropdown__item.selected.hover {
  background-color: #66615B;
  color: white;
}

/* line 66, paper/_select.scss */
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.select-default {
  color: #66615B;
}

/* line 6, paper/_select.scss */
.select-info.el-select .el-input .el-input__suffix {
  display: flex;
  align-items: center;
}

/* line 11, paper/_select.scss */
.select-info.el-select .el-input:hover .el-input__icon,
.select-info.el-select .el-input:hover input {
  color: white;
}

/* line 13, paper/_select.scss */
.select-info.el-select .el-input:hover .el-input__icon::placeholder,
.select-info.el-select .el-input:hover input::placeholder {
  color: white;
}

/* line 18, paper/_select.scss */
.select-info.el-select .el-input:hover input,
.select-info.el-select .el-input:hover .el-input__icon {
  background-color: #68B3C8;
}

/* line 24, paper/_select.scss */
.select-info.el-select .el-input .el-input__icon {
  border-radius: 20px;
  height: 20px;
}

/* line 29, paper/_select.scss */
.select-info.el-select .el-input input {
  background-color: white;
  border-color: #68B3C8 !important;
  border-width: 2px;
  border-radius: 20px;
  color: #68B3C8;
}

/* line 36, paper/_select.scss */
.select-info.el-select .el-input .el-input__icon {
  color: #68B3C8;
}

/* line 42, paper/_select.scss */
.select-info .el-tag, .select-info .el-tag.el-tag--info {
  line-height: 24px;
  background-color: #68B3C8 !important;
  border: none !important;
}

/* line 46, paper/_select.scss */
.select-info .el-tag .el-tag__close, .select-info .el-tag.el-tag--info .el-tag__close {
  width: 20px;
  height: 20px;
  top: 1px;
  color: white;
  background-color: transparent;
}

/* line 52, paper/_select.scss */
.select-info .el-tag .el-tag__close:hover, .select-info .el-tag.el-tag--info .el-tag__close:hover {
  background-color: white;
}

/* line 57, paper/_select.scss */
.select-info.el-select-dropdown__item.selected, .select-info.el-select-dropdown__item.selected.hover {
  background-color: #68B3C8;
  color: white;
}

/* line 66, paper/_select.scss */
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.select-info {
  color: #68B3C8;
}

/* line 6, paper/_select.scss */
.select-primary.el-select .el-input .el-input__suffix {
  display: flex;
  align-items: center;
}

/* line 11, paper/_select.scss */
.select-primary.el-select .el-input:hover .el-input__icon,
.select-primary.el-select .el-input:hover input {
  color: white;
}

/* line 13, paper/_select.scss */
.select-primary.el-select .el-input:hover .el-input__icon::placeholder,
.select-primary.el-select .el-input:hover input::placeholder {
  color: white;
}

/* line 18, paper/_select.scss */
.select-primary.el-select .el-input:hover input,
.select-primary.el-select .el-input:hover .el-input__icon {
  background-color: #7A9E9F;
}

/* line 24, paper/_select.scss */
.select-primary.el-select .el-input .el-input__icon {
  border-radius: 20px;
  height: 20px;
}

/* line 29, paper/_select.scss */
.select-primary.el-select .el-input input {
  background-color: white;
  border-color: #7A9E9F !important;
  border-width: 2px;
  border-radius: 20px;
  color: #7A9E9F;
}

/* line 36, paper/_select.scss */
.select-primary.el-select .el-input .el-input__icon {
  color: #7A9E9F;
}

/* line 42, paper/_select.scss */
.select-primary .el-tag, .select-primary .el-tag.el-tag--info {
  line-height: 24px;
  background-color: #7A9E9F !important;
  border: none !important;
}

/* line 46, paper/_select.scss */
.select-primary .el-tag .el-tag__close, .select-primary .el-tag.el-tag--info .el-tag__close {
  width: 20px;
  height: 20px;
  top: 1px;
  color: white;
  background-color: transparent;
}

/* line 52, paper/_select.scss */
.select-primary .el-tag .el-tag__close:hover, .select-primary .el-tag.el-tag--info .el-tag__close:hover {
  background-color: white;
}

/* line 57, paper/_select.scss */
.select-primary.el-select-dropdown__item.selected, .select-primary.el-select-dropdown__item.selected.hover {
  background-color: #7A9E9F;
  color: white;
}

/* line 66, paper/_select.scss */
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.select-primary {
  color: #7A9E9F;
}

/* line 6, paper/_select.scss */
.select-success.el-select .el-input .el-input__suffix {
  display: flex;
  align-items: center;
}

/* line 11, paper/_select.scss */
.select-success.el-select .el-input:hover .el-input__icon,
.select-success.el-select .el-input:hover input {
  color: white;
}

/* line 13, paper/_select.scss */
.select-success.el-select .el-input:hover .el-input__icon::placeholder,
.select-success.el-select .el-input:hover input::placeholder {
  color: white;
}

/* line 18, paper/_select.scss */
.select-success.el-select .el-input:hover input,
.select-success.el-select .el-input:hover .el-input__icon {
  background-color: #7AC29A;
}

/* line 24, paper/_select.scss */
.select-success.el-select .el-input .el-input__icon {
  border-radius: 20px;
  height: 20px;
}

/* line 29, paper/_select.scss */
.select-success.el-select .el-input input {
  background-color: white;
  border-color: #7AC29A !important;
  border-width: 2px;
  border-radius: 20px;
  color: #7AC29A;
}

/* line 36, paper/_select.scss */
.select-success.el-select .el-input .el-input__icon {
  color: #7AC29A;
}

/* line 42, paper/_select.scss */
.select-success .el-tag, .select-success .el-tag.el-tag--info {
  line-height: 24px;
  background-color: #7AC29A !important;
  border: none !important;
}

/* line 46, paper/_select.scss */
.select-success .el-tag .el-tag__close, .select-success .el-tag.el-tag--info .el-tag__close {
  width: 20px;
  height: 20px;
  top: 1px;
  color: white;
  background-color: transparent;
}

/* line 52, paper/_select.scss */
.select-success .el-tag .el-tag__close:hover, .select-success .el-tag.el-tag--info .el-tag__close:hover {
  background-color: white;
}

/* line 57, paper/_select.scss */
.select-success.el-select-dropdown__item.selected, .select-success.el-select-dropdown__item.selected.hover {
  background-color: #7AC29A;
  color: white;
}

/* line 66, paper/_select.scss */
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.select-success {
  color: #7AC29A;
}

/* line 6, paper/_select.scss */
.select-warning.el-select .el-input .el-input__suffix {
  display: flex;
  align-items: center;
}

/* line 11, paper/_select.scss */
.select-warning.el-select .el-input:hover .el-input__icon,
.select-warning.el-select .el-input:hover input {
  color: white;
}

/* line 13, paper/_select.scss */
.select-warning.el-select .el-input:hover .el-input__icon::placeholder,
.select-warning.el-select .el-input:hover input::placeholder {
  color: white;
}

/* line 18, paper/_select.scss */
.select-warning.el-select .el-input:hover input,
.select-warning.el-select .el-input:hover .el-input__icon {
  background-color: #F3BB45;
}

/* line 24, paper/_select.scss */
.select-warning.el-select .el-input .el-input__icon {
  border-radius: 20px;
  height: 20px;
}

/* line 29, paper/_select.scss */
.select-warning.el-select .el-input input {
  background-color: white;
  border-color: #F3BB45 !important;
  border-width: 2px;
  border-radius: 20px;
  color: #F3BB45;
}

/* line 36, paper/_select.scss */
.select-warning.el-select .el-input .el-input__icon {
  color: #F3BB45;
}

/* line 42, paper/_select.scss */
.select-warning .el-tag, .select-warning .el-tag.el-tag--info {
  line-height: 24px;
  background-color: #F3BB45 !important;
  border: none !important;
}

/* line 46, paper/_select.scss */
.select-warning .el-tag .el-tag__close, .select-warning .el-tag.el-tag--info .el-tag__close {
  width: 20px;
  height: 20px;
  top: 1px;
  color: white;
  background-color: transparent;
}

/* line 52, paper/_select.scss */
.select-warning .el-tag .el-tag__close:hover, .select-warning .el-tag.el-tag--info .el-tag__close:hover {
  background-color: white;
}

/* line 57, paper/_select.scss */
.select-warning.el-select-dropdown__item.selected, .select-warning.el-select-dropdown__item.selected.hover {
  background-color: #F3BB45;
  color: white;
}

/* line 66, paper/_select.scss */
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.select-warning {
  color: #F3BB45;
}

/* line 6, paper/_select.scss */
.select-danger.el-select .el-input .el-input__suffix {
  display: flex;
  align-items: center;
}

/* line 11, paper/_select.scss */
.select-danger.el-select .el-input:hover .el-input__icon,
.select-danger.el-select .el-input:hover input {
  color: white;
}

/* line 13, paper/_select.scss */
.select-danger.el-select .el-input:hover .el-input__icon::placeholder,
.select-danger.el-select .el-input:hover input::placeholder {
  color: white;
}

/* line 18, paper/_select.scss */
.select-danger.el-select .el-input:hover input,
.select-danger.el-select .el-input:hover .el-input__icon {
  background-color: #EB5E28;
}

/* line 24, paper/_select.scss */
.select-danger.el-select .el-input .el-input__icon {
  border-radius: 20px;
  height: 20px;
}

/* line 29, paper/_select.scss */
.select-danger.el-select .el-input input {
  background-color: white;
  border-color: #EB5E28 !important;
  border-width: 2px;
  border-radius: 20px;
  color: #EB5E28;
}

/* line 36, paper/_select.scss */
.select-danger.el-select .el-input .el-input__icon {
  color: #EB5E28;
}

/* line 42, paper/_select.scss */
.select-danger .el-tag, .select-danger .el-tag.el-tag--info {
  line-height: 24px;
  background-color: #EB5E28 !important;
  border: none !important;
}

/* line 46, paper/_select.scss */
.select-danger .el-tag .el-tag__close, .select-danger .el-tag.el-tag--info .el-tag__close {
  width: 20px;
  height: 20px;
  top: 1px;
  color: white;
  background-color: transparent;
}

/* line 52, paper/_select.scss */
.select-danger .el-tag .el-tag__close:hover, .select-danger .el-tag.el-tag--info .el-tag__close:hover {
  background-color: white;
}

/* line 57, paper/_select.scss */
.select-danger.el-select-dropdown__item.selected, .select-danger.el-select-dropdown__item.selected.hover {
  background-color: #EB5E28;
  color: white;
}

/* line 66, paper/_select.scss */
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.select-danger {
  color: #EB5E28;
}

/*           Labels & Progress-bar              */
/* line 2, paper/_labels.scss */
.label {
  padding: 3px 8px;
  border-radius: 12px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.75em;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.5em;
}

/* line 5, paper/_labels.scss */
.label-icon {
  padding: 0.4em 0.55em;
}

/* line 7, paper/_labels.scss */
.label-icon i {
  font-size: 0.8em;
  line-height: 1;
}

/* line 12, paper/_labels.scss */
.label-default {
  background-color: #66615b;
}

/* line 15, paper/_labels.scss */
.label-primary {
  background-color: #7A9E9F;
}

/* line 18, paper/_labels.scss */
.label-info {
  background-color: #68B3C8;
}

/* line 21, paper/_labels.scss */
.label-success {
  background-color: #7AC29A;
}

/* line 24, paper/_labels.scss */
.label-warning {
  background-color: #F3BB45;
}

/* line 27, paper/_labels.scss */
.label-danger {
  background-color: #EB5E28;
}

/* line 2, paper/_chat-message.scss */
.card-chat .chat {
  list-style: none;
  background: none;
  margin: 0;
  padding: 0 0 20px 0;
  margin-top: 10px;
}

/* line 9, paper/_chat-message.scss */
.card-chat .chat > li {
  padding: 0.5rem;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
}

/* line 17, paper/_chat-message.scss */
.card-chat .chat .avatar {
  width: 40px;
  height: 40px;
  position: relative;
  display: block;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
}

/* line 25, paper/_chat-message.scss */
.card-chat .chat .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 40, paper/_chat-message.scss */
.card-chat .chat .footer {
  padding: 0;
  text-align: right;
  font-size: 11px;
  color: #9A9A9A;
}

/* line 47, paper/_chat-message.scss */
.card-chat .chat h6 {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
}

/* line 55, paper/_chat-message.scss */
.card-chat .send-message {
  text-align: center;
}

/* line 58, paper/_chat-message.scss */
.card-chat .send-message .avatar {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-top: 7px;
}

/* line 64, paper/_chat-message.scss */
.card-chat .send-message .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 79, paper/_chat-message.scss */
.card-chat .send-message .send-button {
  width: 75px;
  display: inline-block;
}

/* line 85, paper/_chat-message.scss */
.card-chat ::-webkit-input-placeholder {
  color: #9A9A9A;
}

/* line 92, paper/_chat-message.scss */
.card-chat .other .msg {
  order: 1;
  border: 2px solid #b8d8d8;
  border-radius: 16px;
  position: relative;
  margin-left: 22px;
  max-width: 75%;
  background-color: #b8d8d8;
}

/* line 101, paper/_chat-message.scss */
.card-chat .other .msg:before {
  content: "";
  position: absolute;
  top: 15px;
  left: -16px;
  height: 0px;
  border: 8px solid #b8d8d8;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

/* line 113, paper/_chat-message.scss */
.card-chat .other .no-avatar {
  width: 40px;
  height: 40px;
  order: 2;
}

/* line 122, paper/_chat-message.scss */
.card-chat .self {
  justify-content: flex-end;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -webkit-justify-content: flex-end;
}

/* line 128, paper/_chat-message.scss */
.card-chat .self .msg {
  order: 1;
  border: 2px solid #d6c1ab;
  border-radius: 16px;
  position: relative;
  margin-right: 22px;
  max-width: 75%;
  background-color: #d6c1ab;
}

/* line 137, paper/_chat-message.scss */
.card-chat .self .avatar {
  order: 2;
}

/* line 142, paper/_chat-message.scss */
.card-chat .self .avatar:after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 19px;
  right: 48px;
  width: 0px;
  height: 0px;
  border: 8px solid #d6c1ab;
  border-right-color: transparent;
  border-top-color: transparent;
}

/* line 156, paper/_chat-message.scss */
.card-chat .self .no-avatar {
  width: 40px;
  height: 40px;
  order: 2;
}

/* line 164, paper/_chat-message.scss */
.card-chat .msg {
  background: white;
  min-width: 50px;
  padding: 10px 10px 0px 10px;
  border-radius: 2px;
}

/* line 170, paper/_chat-message.scss */
.card-chat .msg p {
  margin: 0 0 0.2rem 0;
  font-size: 15px;
  line-height: 1.2em;
}

/* line 177, paper/_chat-message.scss */
.card-chat .msg img {
  position: relative;
  display: block;
  width: 450px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 193, paper/_chat-message.scss */
.card-chat input.textarea {
  display: inline-block;
  width: calc(100% - 132px);
}

@media screen and (max-width: 800px) {
  /* line 199, paper/_chat-message.scss */
  .card-chat .msg img {
    width: 300px;
  }
}

@media screen and (max-width: 550px) {
  /* line 204, paper/_chat-message.scss */
  .card-chat .msg img {
    width: 200px;
  }
}

/* line 1, paper/_checkbox-radio.scss */
.checkbox,
.radio {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* line 7, paper/_checkbox-radio.scss */
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 10px;
}

/* line 14, paper/_checkbox-radio.scss */
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  margin-left: -20px;
  border-radius: 3px;
  opacity: .50;
  background-color: #66615b;
  transition: opacity 0.2s linear;
}

/* line 28, paper/_checkbox-radio.scss */
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  top: -2px;
  text-align: center;
  margin-left: -20px;
  font-size: 16px;
  color: #FFFFFF;
}

/* line 42, paper/_checkbox-radio.scss */
.checkbox input[type="checkbox"],
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
  width: 19px;
  height: 19px;
  top: -2px;
}

/* line 52, paper/_checkbox-radio.scss */
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="checkbox"]:not(:disabled):hover + label::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00c";
  font-weight: 700;
}

/* line 59, paper/_checkbox-radio.scss */
.checkbox input[type="checkbox"]:checked + label::before {
  opacity: 1;
}

/* line 64, paper/_checkbox-radio.scss */
.checkbox input[type="checkbox"]:disabled + label {
  color: #cfcfcf;
}

/* line 68, paper/_checkbox-radio.scss */
.checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #cfcfcf;
  cursor: not-allowed;
}

/* line 73, paper/_checkbox-radio.scss */
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

/* line 77, paper/_checkbox-radio.scss */
.checkbox.checkbox-inline {
  margin-top: 0;
}

/* line 81, paper/_checkbox-radio.scss */
.checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #428bca;
  border-color: #428bca;
}

/* line 86, paper/_checkbox-radio.scss */
.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff;
}

/* line 90, paper/_checkbox-radio.scss */
.checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

/* line 95, paper/_checkbox-radio.scss */
.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff;
}

/* line 99, paper/_checkbox-radio.scss */
.checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

/* line 104, paper/_checkbox-radio.scss */
.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff;
}

/* line 108, paper/_checkbox-radio.scss */
.checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

/* line 113, paper/_checkbox-radio.scss */
.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff;
}

/* line 117, paper/_checkbox-radio.scss */
.checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

/* line 122, paper/_checkbox-radio.scss */
.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff;
}

/* line 126, paper/_checkbox-radio.scss */
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 10px;
}

/* line 133, paper/_checkbox-radio.scss */
.radio label::before {
  font-family: 'Font Awesome 5 Free';
  content: "\f111";
  font-size: 22px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -5px;
  color: #66615b;
  opacity: .50;
  margin-left: -20px;
}

/* line 149, paper/_checkbox-radio.scss */
.radio input[type="radio"]:not(:disabled):hover + label::before {
  font-family: 'Font Awesome 5 Free';
  content: "\f192";
  color: #66615b;
  opacity: .50;
}

/* line 156, paper/_checkbox-radio.scss */
.radio label::after {
  display: inline-block;
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  content: "\f192";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  left: 0px;
  top: -5px;
  margin-left: -20px;
  font-size: 22px;
  background-color: transparent;
  color: #66615b;
  transition: opacity 0.2s linear;
}

/* line 173, paper/_checkbox-radio.scss */
.radio input[type="radio"]:checked + label::after {
  opacity: 1;
}

/* line 177, paper/_checkbox-radio.scss */
.radio input[type="radio"]:disabled + label {
  color: #cfcfcf;
}

/* line 181, paper/_checkbox-radio.scss */
.radio input[type="radio"]:disabled + label::before,
.radio input[type="radio"]:disabled + label::after {
  color: #cfcfcf;
}

/* line 186, paper/_checkbox-radio.scss */
.radio.radio-inline {
  margin-top: 0;
}

/* line 190, paper/_checkbox-radio.scss */
.radio-primary input[type="radio"] + label::after {
  background-color: #428bca;
}

/* line 194, paper/_checkbox-radio.scss */
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #428bca;
}

/* line 198, paper/_checkbox-radio.scss */
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #428bca;
}

/* line 202, paper/_checkbox-radio.scss */
.radio-danger input[type="radio"] + label::after {
  background-color: #d9534f;
}

/* line 206, paper/_checkbox-radio.scss */
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #d9534f;
}

/* line 210, paper/_checkbox-radio.scss */
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #d9534f;
}

/* line 214, paper/_checkbox-radio.scss */
.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}

/* line 218, paper/_checkbox-radio.scss */
.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}

/* line 222, paper/_checkbox-radio.scss */
.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}

/* line 226, paper/_checkbox-radio.scss */
.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e;
}

/* line 230, paper/_checkbox-radio.scss */
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e;
}

/* line 234, paper/_checkbox-radio.scss */
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e;
}

/* line 238, paper/_checkbox-radio.scss */
.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c;
}

/* line 242, paper/_checkbox-radio.scss */
.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c;
}

/* line 246, paper/_checkbox-radio.scss */
.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c;
}

/* line 1, paper/_dropdown.scss */
.dropdown-menu {
  background-color: #FFFFFF;
  border: 0 none;
  border-radius: 6px;
  margin-top: 5px;
  padding: 0px;
  -webkit-box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.2);
  box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.2);
}

/* line 9, paper/_dropdown.scss */
.dropdown .dropdown-menu,
.bootstrap-table .btn-group .dropdown-menu,
.btn-group .dropdown-menu,
.dropup .dropdown-menu {
  -webkit-transform: translate3d(0, -30px, 0);
  -moz-transform: translate3d(0, -30px, 0);
  -o-transform: translate3d(0, -30px, 0);
  -ms-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  display: block;
}

/* line 20, paper/_dropdown.scss */
.dropdown.open .dropdown-menu, .dropdown-menu.bootstrap-datetimepicker-widget.open,
.bootstrap-table .btn-group.open .dropdown-menu,
.btn-group.open .dropdown-menu {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}

/* line 29, paper/_dropdown.scss */
.dropup .dropdown-menu {
  -webkit-transform: translate3d(0, 30px, 0);
  -moz-transform: translate3d(0, 30px, 0);
  -o-transform: translate3d(0, 30px, 0);
  -ms-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  display: block;
}

/* line 38, paper/_dropdown.scss */
.dropup.open .dropdown-menu, .dropdown-menu.bootstrap-datetimepicker-widget.top.open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}

/* line 45, paper/_dropdown.scss */
.dropup .dropdown-menu {
  margin-bottom: 5px;
}

/* line 48, paper/_dropdown.scss */
.dropup .dropdown-menu > .active > a,
.dropup .dropdown-menu > .active > a:hover,
.dropup .dropdown-menu > .active > a:focus {
  background-color: #F9F7F3;
  color: #66615b;
}

/* line 55, paper/_dropdown.scss */
.dropup .dropdown-menu > li > a:hover,
.dropup .dropdown-menu > li > a:focus {
  background-color: #66615B;
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
  text-decoration: none;
}

/* line 95, paper/_dropdown.scss */
.dropup .dropdown-menu:before, .dropdown-menu.bootstrap-datetimepicker-widget.top:before {
  border-top: 11px solid #F1EAE0;
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  border-bottom: none;
  content: "";
  display: inline-block;
  position: absolute;
  left: 12px;
  right: auto;
  top: auto;
  bottom: -12px;
}

/* line 109, paper/_dropdown.scss */
.dropup .dropdown-menu:after, .dropdown-menu.bootstrap-datetimepicker-widget.top:after {
  border-top: 11px solid #FFFFFF;
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  border-bottom: none;
  content: "";
  display: inline-block;
  position: absolute;
  left: 12px;
  right: auto;
  bottom: -11px;
  top: auto;
}

/* line 125, paper/_dropdown.scss */
.dropdown-menu.dropdown-menu-left:after {
  left: 12px;
  right: auto;
}

/* line 129, paper/_dropdown.scss */
.dropdown-menu.dropdown-menu-left:before {
  left: 12px;
  right: auto;
}

/* line 135, paper/_dropdown.scss */
.dropdown-menu .divider {
  background-color: #F1EAE0;
  margin: 0px;
}

/* line 140, paper/_dropdown.scss */
.dropdown-menu .dropdown-header {
  color: #9A9A9A;
  font-size: 12px;
  padding: 10px 15px;
}

/* line 146, paper/_dropdown.scss */
.dropdown-menu > li > a {
  color: #66615b;
  font-size: 14px;
  padding: 10px 15px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}

/* line 152, paper/_dropdown.scss */
.dropdown-menu > li > a img {
  margin-top: -3px;
}

/* line 156, paper/_dropdown.scss */
.dropdown-menu > li > a:focus {
  outline: 0 !important;
}

/* line 160, paper/_dropdown.scss */
.btn-group.select .dropdown-menu {
  min-width: 100%;
}

/* line 164, paper/_dropdown.scss */
.dropdown-menu > li:first-child > a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 169, paper/_dropdown.scss */
.dropdown-menu > li:last-child > a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 174, paper/_dropdown.scss */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background-color: #66615B;
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
  text-decoration: none;
}

/* line 184, paper/_dropdown.scss */
.dropdown-menu.dropdown-primary > li:not(.disabled) > a:hover,
.dropdown-menu.dropdown-primary > li:not(.disabled) > a:focus {
  background-color: #7A9E9F;
}

/* line 191, paper/_dropdown.scss */
.dropdown-menu.dropdown-info > li:not(.disabled) > a:hover,
.dropdown-menu.dropdown-info > li:not(.disabled) > a:focus {
  background-color: #68B3C8;
}

/* line 199, paper/_dropdown.scss */
.dropdown-menu.dropdown-success > li:not(.disabled) > a:hover,
.dropdown-menu.dropdown-success > li:not(.disabled) > a:focus {
  background-color: #7AC29A;
}

/* line 206, paper/_dropdown.scss */
.dropdown-menu.dropdown-warning > li:not(.disabled) > a:hover,
.dropdown-menu.dropdown-warning > li:not(.disabled) > a:focus {
  background-color: #F3BB45;
}

/* line 213, paper/_dropdown.scss */
.dropdown-menu.dropdown-danger > li:not(.disabled) > a:hover,
.dropdown-menu.dropdown-danger > li:not(.disabled) > a:focus {
  background-color: #EB5E28;
}

/* line 220, paper/_dropdown.scss */
.dropdown-menu > li.dropdown-footer {
  background-color: #E8E7E3;
  border-radius: 0 0 6px 6px;
}

/* line 224, paper/_dropdown.scss */
.dropdown-menu > li.dropdown-footer > ul {
  list-style: outside none none;
  padding: 0px 5px;
}

/* line 227, paper/_dropdown.scss */
.dropdown-menu > li.dropdown-footer > ul > li {
  display: inline-block;
  text-align: left;
  padding: 0 10px;
}

/* line 232, paper/_dropdown.scss */
.dropdown-menu > li.dropdown-footer > ul > li > a {
  color: #9C9B99;
  font-size: 0.9em;
  line-height: 35px;
}

/* line 238, paper/_dropdown.scss */
.dropdown-menu > li.dropdown-footer > ul > li:hover a {
  color: #5E5E5C;
}

/* line 247, paper/_dropdown.scss */
.select .no-style:hover,
.select .no-style:active,
.select .no-style:focus {
  background-color: #FFFFFF;
  color: #66615b;
}

/* line 253, paper/_dropdown.scss */
.select .no-style:hover .caret,
.select .no-style:active .caret,
.select .no-style:focus .caret {
  border-top-color: #66615b;
}

/* line 259, paper/_dropdown.scss */
.open .no-style {
  background-color: #FFFFFF !important;
  color: #66615b !important;
}

/* line 262, paper/_dropdown.scss */
.open .no-style .caret {
  border-top-color: #66615b !important;
}

/* line 269, paper/_dropdown.scss */
.btn-group.select {
  overflow: hidden;
}

/* line 272, paper/_dropdown.scss */
.btn-group.select.open {
  overflow: visible;
}

/* line 277, paper/_dropdown.scss */
.notification-bubble {
  left: 25px;
  position: absolute;
  top: 13px;
}

/* line 284, paper/_dropdown.scss */
.dropdown-notification .dropdown-header {
  border-bottom: 1px solid #F1EAE0;
}

/* line 288, paper/_dropdown.scss */
.dropdown-notification .no-notification {
  color: #9A9A9A;
  font-size: 1.2em;
  padding: 30px 30px;
  text-align: center;
}

/* line 299, paper/_dropdown.scss */
.dropdown-notification-list > li {
  border-bottom: 1px solid #F1EAE0;
  color: #66615b;
  font-size: 14px;
  padding: 10px 5px;
}

/* line 307, paper/_dropdown.scss */
.dropdown-notification-list > li > a {
  color: #66615b;
  white-space: normal;
}

/* line 311, paper/_dropdown.scss */
.dropdown-notification-list > li > a .notification-text {
  padding-left: 40px;
  position: relative;
}

/* line 315, paper/_dropdown.scss */
.dropdown-notification-list > li > a .label {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 7px;
}

/* line 322, paper/_dropdown.scss */
.dropdown-notification-list > li > a .message {
  font-size: 0.9em;
  line-height: 0.7;
}

/* line 326, paper/_dropdown.scss */
.dropdown-notification-list > li > a .time {
  color: #9A9A9A;
  font-size: 0.7em;
}

/* line 330, paper/_dropdown.scss */
.dropdown-notification-list > li > a .read-notification {
  font-size: 12px;
  opacity: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -12px;
}

/* line 340, paper/_dropdown.scss */
.dropdown-notification-list > li:hover,
.dropdown-notification-list > li:focus {
  background-color: #F0EFEB;
  color: #66615b;
  opacity: 1;
  text-decoration: none;
}

/* line 347, paper/_dropdown.scss */
.dropdown-notification-list > li:hover .read-notification,
.dropdown-notification-list > li:focus .read-notification {
  opacity: 1;
}

/* line 353, paper/_dropdown.scss */
.scroll-area {
  max-height: 310px;
  overflow-y: scroll;
  list-style: outside none none;
  padding: 0px;
}

/* line 361, paper/_dropdown.scss */
.dropdown-sharing li {
  color: #66615b;
  font-size: 14px;
}

/* line 365, paper/_dropdown.scss */
.dropdown-sharing li .social-line {
  line-height: 28px;
  padding: 10px 20px 5px 20px;
}

/* line 369, paper/_dropdown.scss */
.dropdown-sharing li .social-line [class*="icon-"] {
  font-size: 20px;
}

/* line 377, paper/_dropdown.scss */
.dropdown-sharing li:hover .social-line,
.dropdown-sharing li:hover a,
.dropdown-sharing li:hover .action-line,
.dropdown-sharing li:focus .social-line,
.dropdown-sharing li:focus a,
.dropdown-sharing li:focus .action-line {
  background-color: #F9F7F3;
  color: #66615b;
  opacity: 1;
  text-decoration: none;
}

/* line 389, paper/_dropdown.scss */
.dropdown-actions li .action-line {
  line-height: 24px;
  padding: 10px 20px;
  font-weight: bold;
}

/* line 393, paper/_dropdown.scss */
.dropdown-actions li .action-line [class*="icon-"] {
  font-size: 24px;
}

/* line 396, paper/_dropdown.scss */
.dropdown-actions li .action-line .col-xs-9 {
  line-height: 34px;
}

/* line 400, paper/_dropdown.scss */
.dropdown-actions li .link-danger {
  color: #EB5E28;
}

/* line 402, paper/_dropdown.scss */
.dropdown-actions li .link-danger:hover, .dropdown-actions li .link-danger:active, .dropdown-actions li .link-danger:focus {
  color: #EB5E28;
}

/* line 409, paper/_dropdown.scss */
.dropdown-actions li:hover a,
.dropdown-actions li:focus a {
  background-color: #F0EFEB;
  color: #66615b;
  opacity: 1;
  text-decoration: none;
}

/* line 1, paper/_social.scss */
.btn-facebook {
  border-color: #3b5998;
  color: #3b5998;
}

/* line 6, paper/mixins/_social.scss */
.btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active, .btn-facebook.active,
.open > .btn-facebook.dropdown-toggle {
  background-color: #3b5998;
  border-color: #3b5998;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-facebook:disabled, .btn-facebook[disabled], .btn-facebook.disabled {
  background-color: transparent;
  border-color: #3b5998;
}

/* line 23, paper/mixins/_social.scss */
.btn-facebook.btn-fill {
  color: #FFFFFF;
  background-color: #3b5998;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-facebook.btn-fill:hover, .btn-facebook.btn-fill:focus, .btn-facebook.btn-fill:active, .btn-facebook.btn-fill.active,
.open > .btn-facebook.btn-fill.dropdown-toggle {
  background-color: #3b5998;
  border-color: #3b5998;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-facebook.btn-simple {
  color: #3b5998;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-facebook.btn-simple:hover, .btn-facebook.btn-simple:focus, .btn-facebook.btn-simple:active, .btn-facebook.btn-simple.active,
.open > .btn-facebook.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #3b5998;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-facebook.btn-simple:hover i, .btn-facebook.btn-simple:focus i, .btn-facebook.btn-simple:active i, .btn-facebook.btn-simple.active i,
.open > .btn-facebook.btn-simple.dropdown-toggle i {
  color: #3b5998;
  opacity: 1;
}

/* line 5, paper/_social.scss */
.btn-twitter {
  border-color: #55acee;
  color: #55acee;
}

/* line 6, paper/mixins/_social.scss */
.btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active, .btn-twitter.active,
.open > .btn-twitter.dropdown-toggle {
  background-color: #55acee;
  border-color: #55acee;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-twitter:disabled, .btn-twitter[disabled], .btn-twitter.disabled {
  background-color: transparent;
  border-color: #55acee;
}

/* line 23, paper/mixins/_social.scss */
.btn-twitter.btn-fill {
  color: #FFFFFF;
  background-color: #55acee;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-twitter.btn-fill:hover, .btn-twitter.btn-fill:focus, .btn-twitter.btn-fill:active, .btn-twitter.btn-fill.active,
.open > .btn-twitter.btn-fill.dropdown-toggle {
  background-color: #55acee;
  border-color: #55acee;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-twitter.btn-simple {
  color: #55acee;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-twitter.btn-simple:hover, .btn-twitter.btn-simple:focus, .btn-twitter.btn-simple:active, .btn-twitter.btn-simple.active,
.open > .btn-twitter.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #55acee;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-twitter.btn-simple:hover i, .btn-twitter.btn-simple:focus i, .btn-twitter.btn-simple:active i, .btn-twitter.btn-simple.active i,
.open > .btn-twitter.btn-simple.dropdown-toggle i {
  color: #55acee;
  opacity: 1;
}

/* line 9, paper/_social.scss */
.btn-pinterest {
  border-color: #cc2127;
  color: #cc2127;
}

/* line 6, paper/mixins/_social.scss */
.btn-pinterest:hover, .btn-pinterest:focus, .btn-pinterest:active, .btn-pinterest.active,
.open > .btn-pinterest.dropdown-toggle {
  background-color: #cc2127;
  border-color: #cc2127;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-pinterest:disabled, .btn-pinterest[disabled], .btn-pinterest.disabled {
  background-color: transparent;
  border-color: #cc2127;
}

/* line 23, paper/mixins/_social.scss */
.btn-pinterest.btn-fill {
  color: #FFFFFF;
  background-color: #cc2127;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-pinterest.btn-fill:hover, .btn-pinterest.btn-fill:focus, .btn-pinterest.btn-fill:active, .btn-pinterest.btn-fill.active,
.open > .btn-pinterest.btn-fill.dropdown-toggle {
  background-color: #cc2127;
  border-color: #cc2127;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-pinterest.btn-simple {
  color: #cc2127;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-pinterest.btn-simple:hover, .btn-pinterest.btn-simple:focus, .btn-pinterest.btn-simple:active, .btn-pinterest.btn-simple.active,
.open > .btn-pinterest.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #cc2127;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-pinterest.btn-simple:hover i, .btn-pinterest.btn-simple:focus i, .btn-pinterest.btn-simple:active i, .btn-pinterest.btn-simple.active i,
.open > .btn-pinterest.btn-simple.dropdown-toggle i {
  color: #cc2127;
  opacity: 1;
}

/* line 13, paper/_social.scss */
.btn-google {
  border-color: #dd4b39;
  color: #dd4b39;
}

/* line 6, paper/mixins/_social.scss */
.btn-google:hover, .btn-google:focus, .btn-google:active, .btn-google.active,
.open > .btn-google.dropdown-toggle {
  background-color: #dd4b39;
  border-color: #dd4b39;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-google:disabled, .btn-google[disabled], .btn-google.disabled {
  background-color: transparent;
  border-color: #dd4b39;
}

/* line 23, paper/mixins/_social.scss */
.btn-google.btn-fill {
  color: #FFFFFF;
  background-color: #dd4b39;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-google.btn-fill:hover, .btn-google.btn-fill:focus, .btn-google.btn-fill:active, .btn-google.btn-fill.active,
.open > .btn-google.btn-fill.dropdown-toggle {
  background-color: #dd4b39;
  border-color: #dd4b39;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-google.btn-simple {
  color: #dd4b39;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-google.btn-simple:hover, .btn-google.btn-simple:focus, .btn-google.btn-simple:active, .btn-google.btn-simple.active,
.open > .btn-google.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #dd4b39;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-google.btn-simple:hover i, .btn-google.btn-simple:focus i, .btn-google.btn-simple:active i, .btn-google.btn-simple.active i,
.open > .btn-google.btn-simple.dropdown-toggle i {
  color: #dd4b39;
  opacity: 1;
}

/* line 17, paper/_social.scss */
.btn-linkedin {
  border-color: #0976b4;
  color: #0976b4;
}

/* line 6, paper/mixins/_social.scss */
.btn-linkedin:hover, .btn-linkedin:focus, .btn-linkedin:active, .btn-linkedin.active,
.open > .btn-linkedin.dropdown-toggle {
  background-color: #0976b4;
  border-color: #0976b4;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-linkedin:disabled, .btn-linkedin[disabled], .btn-linkedin.disabled {
  background-color: transparent;
  border-color: #0976b4;
}

/* line 23, paper/mixins/_social.scss */
.btn-linkedin.btn-fill {
  color: #FFFFFF;
  background-color: #0976b4;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-linkedin.btn-fill:hover, .btn-linkedin.btn-fill:focus, .btn-linkedin.btn-fill:active, .btn-linkedin.btn-fill.active,
.open > .btn-linkedin.btn-fill.dropdown-toggle {
  background-color: #0976b4;
  border-color: #0976b4;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-linkedin.btn-simple {
  color: #0976b4;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-linkedin.btn-simple:hover, .btn-linkedin.btn-simple:focus, .btn-linkedin.btn-simple:active, .btn-linkedin.btn-simple.active,
.open > .btn-linkedin.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #0976b4;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-linkedin.btn-simple:hover i, .btn-linkedin.btn-simple:focus i, .btn-linkedin.btn-simple:active i, .btn-linkedin.btn-simple.active i,
.open > .btn-linkedin.btn-simple.dropdown-toggle i {
  color: #0976b4;
  opacity: 1;
}

/* line 21, paper/_social.scss */
.btn-dribbble {
  border-color: #ea4c89;
  color: #ea4c89;
}

/* line 6, paper/mixins/_social.scss */
.btn-dribbble:hover, .btn-dribbble:focus, .btn-dribbble:active, .btn-dribbble.active,
.open > .btn-dribbble.dropdown-toggle {
  background-color: #ea4c89;
  border-color: #ea4c89;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-dribbble:disabled, .btn-dribbble[disabled], .btn-dribbble.disabled {
  background-color: transparent;
  border-color: #ea4c89;
}

/* line 23, paper/mixins/_social.scss */
.btn-dribbble.btn-fill {
  color: #FFFFFF;
  background-color: #ea4c89;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-dribbble.btn-fill:hover, .btn-dribbble.btn-fill:focus, .btn-dribbble.btn-fill:active, .btn-dribbble.btn-fill.active,
.open > .btn-dribbble.btn-fill.dropdown-toggle {
  background-color: #ea4c89;
  border-color: #ea4c89;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-dribbble.btn-simple {
  color: #ea4c89;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-dribbble.btn-simple:hover, .btn-dribbble.btn-simple:focus, .btn-dribbble.btn-simple:active, .btn-dribbble.btn-simple.active,
.open > .btn-dribbble.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #ea4c89;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-dribbble.btn-simple:hover i, .btn-dribbble.btn-simple:focus i, .btn-dribbble.btn-simple:active i, .btn-dribbble.btn-simple.active i,
.open > .btn-dribbble.btn-simple.dropdown-toggle i {
  color: #ea4c89;
  opacity: 1;
}

/* line 25, paper/_social.scss */
.btn-github {
  border-color: #333333;
  color: #333333;
}

/* line 6, paper/mixins/_social.scss */
.btn-github:hover, .btn-github:focus, .btn-github:active, .btn-github.active,
.open > .btn-github.dropdown-toggle {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-github:disabled, .btn-github[disabled], .btn-github.disabled {
  background-color: transparent;
  border-color: #333333;
}

/* line 23, paper/mixins/_social.scss */
.btn-github.btn-fill {
  color: #FFFFFF;
  background-color: #333333;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-github.btn-fill:hover, .btn-github.btn-fill:focus, .btn-github.btn-fill:active, .btn-github.btn-fill.active,
.open > .btn-github.btn-fill.dropdown-toggle {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-github.btn-simple {
  color: #333333;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-github.btn-simple:hover, .btn-github.btn-simple:focus, .btn-github.btn-simple:active, .btn-github.btn-simple.active,
.open > .btn-github.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #333333;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-github.btn-simple:hover i, .btn-github.btn-simple:focus i, .btn-github.btn-simple:active i, .btn-github.btn-simple.active i,
.open > .btn-github.btn-simple.dropdown-toggle i {
  color: #333333;
  opacity: 1;
}

/* line 29, paper/_social.scss */
.btn-youtube {
  border-color: #e52d27;
  color: #e52d27;
}

/* line 6, paper/mixins/_social.scss */
.btn-youtube:hover, .btn-youtube:focus, .btn-youtube:active, .btn-youtube.active,
.open > .btn-youtube.dropdown-toggle {
  background-color: #e52d27;
  border-color: #e52d27;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-youtube:disabled, .btn-youtube[disabled], .btn-youtube.disabled {
  background-color: transparent;
  border-color: #e52d27;
}

/* line 23, paper/mixins/_social.scss */
.btn-youtube.btn-fill {
  color: #FFFFFF;
  background-color: #e52d27;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-youtube.btn-fill:hover, .btn-youtube.btn-fill:focus, .btn-youtube.btn-fill:active, .btn-youtube.btn-fill.active,
.open > .btn-youtube.btn-fill.dropdown-toggle {
  background-color: #e52d27;
  border-color: #e52d27;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-youtube.btn-simple {
  color: #e52d27;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-youtube.btn-simple:hover, .btn-youtube.btn-simple:focus, .btn-youtube.btn-simple:active, .btn-youtube.btn-simple.active,
.open > .btn-youtube.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #e52d27;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-youtube.btn-simple:hover i, .btn-youtube.btn-simple:focus i, .btn-youtube.btn-simple:active i, .btn-youtube.btn-simple.active i,
.open > .btn-youtube.btn-simple.dropdown-toggle i {
  color: #e52d27;
  opacity: 1;
}

/* line 33, paper/_social.scss */
.btn-instagram {
  border-color: #125688;
  color: #125688;
}

/* line 6, paper/mixins/_social.scss */
.btn-instagram:hover, .btn-instagram:focus, .btn-instagram:active, .btn-instagram.active,
.open > .btn-instagram.dropdown-toggle {
  background-color: #125688;
  border-color: #125688;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-instagram:disabled, .btn-instagram[disabled], .btn-instagram.disabled {
  background-color: transparent;
  border-color: #125688;
}

/* line 23, paper/mixins/_social.scss */
.btn-instagram.btn-fill {
  color: #FFFFFF;
  background-color: #125688;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-instagram.btn-fill:hover, .btn-instagram.btn-fill:focus, .btn-instagram.btn-fill:active, .btn-instagram.btn-fill.active,
.open > .btn-instagram.btn-fill.dropdown-toggle {
  background-color: #125688;
  border-color: #125688;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-instagram.btn-simple {
  color: #125688;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-instagram.btn-simple:hover, .btn-instagram.btn-simple:focus, .btn-instagram.btn-simple:active, .btn-instagram.btn-simple.active,
.open > .btn-instagram.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #125688;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-instagram.btn-simple:hover i, .btn-instagram.btn-simple:focus i, .btn-instagram.btn-simple:active i, .btn-instagram.btn-simple.active i,
.open > .btn-instagram.btn-simple.dropdown-toggle i {
  color: #125688;
  opacity: 1;
}

/* line 37, paper/_social.scss */
.btn-reddit {
  border-color: #ff4500;
  color: #ff4500;
}

/* line 6, paper/mixins/_social.scss */
.btn-reddit:hover, .btn-reddit:focus, .btn-reddit:active, .btn-reddit.active,
.open > .btn-reddit.dropdown-toggle {
  background-color: #ff4500;
  border-color: #ff4500;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-reddit:disabled, .btn-reddit[disabled], .btn-reddit.disabled {
  background-color: transparent;
  border-color: #ff4500;
}

/* line 23, paper/mixins/_social.scss */
.btn-reddit.btn-fill {
  color: #FFFFFF;
  background-color: #ff4500;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-reddit.btn-fill:hover, .btn-reddit.btn-fill:focus, .btn-reddit.btn-fill:active, .btn-reddit.btn-fill.active,
.open > .btn-reddit.btn-fill.dropdown-toggle {
  background-color: #ff4500;
  border-color: #ff4500;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-reddit.btn-simple {
  color: #ff4500;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-reddit.btn-simple:hover, .btn-reddit.btn-simple:focus, .btn-reddit.btn-simple:active, .btn-reddit.btn-simple.active,
.open > .btn-reddit.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #ff4500;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-reddit.btn-simple:hover i, .btn-reddit.btn-simple:focus i, .btn-reddit.btn-simple:active i, .btn-reddit.btn-simple.active i,
.open > .btn-reddit.btn-simple.dropdown-toggle i {
  color: #ff4500;
  opacity: 1;
}

/* line 41, paper/_social.scss */
.btn-tumblr {
  border-color: #35465c;
  color: #35465c;
}

/* line 6, paper/mixins/_social.scss */
.btn-tumblr:hover, .btn-tumblr:focus, .btn-tumblr:active, .btn-tumblr.active,
.open > .btn-tumblr.dropdown-toggle {
  background-color: #35465c;
  border-color: #35465c;
  color: #FFFFFF;
}

/* line 16, paper/mixins/_social.scss */
.btn-tumblr:disabled, .btn-tumblr[disabled], .btn-tumblr.disabled {
  background-color: transparent;
  border-color: #35465c;
}

/* line 23, paper/mixins/_social.scss */
.btn-tumblr.btn-fill {
  color: #FFFFFF;
  background-color: #35465c;
  opacity: 0.8;
}

/* line 28, paper/mixins/_social.scss */
.btn-tumblr.btn-fill:hover, .btn-tumblr.btn-fill:focus, .btn-tumblr.btn-fill:active, .btn-tumblr.btn-fill.active,
.open > .btn-tumblr.btn-fill.dropdown-toggle {
  background-color: #35465c;
  border-color: #35465c;
  color: #FFFFFF;
  opacity: 1;
}

/* line 41, paper/mixins/_social.scss */
.btn-tumblr.btn-simple {
  color: #35465c;
  opacity: 0.8;
}

/* line 46, paper/mixins/_social.scss */
.btn-tumblr.btn-simple:hover, .btn-tumblr.btn-simple:focus, .btn-tumblr.btn-simple:active, .btn-tumblr.btn-simple.active,
.open > .btn-tumblr.btn-simple.dropdown-toggle {
  background-color: transparent;
  color: #35465c;
  opacity: 1;
}

/* line 54, paper/mixins/_social.scss */
.btn-tumblr.btn-simple:hover i, .btn-tumblr.btn-simple:focus i, .btn-tumblr.btn-simple:active i, .btn-tumblr.btn-simple.active i,
.open > .btn-tumblr.btn-simple.dropdown-toggle i {
  color: #35465c;
  opacity: 1;
}

/* line 44, paper/_social.scss */
.label-facebook {
  background-color: #3b5998;
}

/* line 48, paper/_social.scss */
.label-twitter {
  background-color: #55acee;
}

/* line 52, paper/_social.scss */
.label-pinterest {
  background-color: #cc2127;
}

/* line 56, paper/_social.scss */
.label-google {
  background-color: #dd4b39;
}

/* line 60, paper/_social.scss */
.label-linkedin {
  background-color: #0976b4;
}

/* line 64, paper/_social.scss */
.label-dribbble {
  background-color: #ea4c89;
}

/* line 68, paper/_social.scss */
.label-github {
  background-color: #333333;
}

/* line 72, paper/_social.scss */
.label-youtube {
  background-color: #e52d27;
}

/* line 76, paper/_social.scss */
.label-instagram {
  background-color: #125688;
}

/* line 80, paper/_social.scss */
.label-reddit {
  background-color: #ff4500;
}

/* line 84, paper/_social.scss */
.label-tumblr {
  background-color: #35465c;
}

/* line 88, paper/_social.scss */
.icon-facebook {
  color: #3b5998;
}

/* line 92, paper/_social.scss */
.icon-twitter {
  color: #55acee;
}

/* line 96, paper/_social.scss */
.icon-pinterest {
  color: #cc2127;
}

/* line 100, paper/_social.scss */
.icon-google {
  color: #dd4b39;
}

/* line 104, paper/_social.scss */
.icon-linkedin {
  color: #0976b4;
}

/* line 108, paper/_social.scss */
.icon-dribbble {
  color: #ea4c89;
}

/* line 112, paper/_social.scss */
.icon-github {
  color: #333333;
}

/* line 116, paper/_social.scss */
.icon-youtube {
  color: #e52d27;
}

/* line 120, paper/_social.scss */
.icon-instagram {
  color: #125688;
}

/* line 124, paper/_social.scss */
.icon-reddit {
  color: #ff4500;
}

/* line 128, paper/_social.scss */
.icon-tumblr {
  color: #35465c;
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 21, paper/_tags.scss */
.el-tag {
  border-radius: 12px !important;
  margin-left: 10px;
  margin-bottom: 5px;
}

/* line 26, paper/_tags.scss */
.input-new-tag {
  margin-left: 10px;
  width: 150px !important;
  height: 32px;
  display: inline;
}

/* line 4, paper/_tags.scss */
.input-new-tag.input-info .el-input__inner {
  border-color: #68B3C8 !important;
}

/* line 7, paper/_tags.scss */
.el-tag,
.el-tag.el-tag--info {
  background-color: #68B3C8 !important;
  color: white;
}

/* line 9, paper/_tags.scss */
.el-tag .el-tag__close,
.el-tag.el-tag--info .el-tag__close {
  color: white;
}

/* line 12, paper/_tags.scss */
.el-tag .el-tag__close:hover,
.el-tag.el-tag--info .el-tag__close:hover {
  background-color: white;
  color: #68B3C8;
}

/* line 4, paper/_tags.scss */
.input-new-tag.input-primary .el-input__inner {
  border-color: #7A9E9F !important;
}

/* line 7, paper/_tags.scss */
.el-tag,
.el-tag.el-tag--primary {
  background-color: #7A9E9F !important;
  color: white;
}

/* line 9, paper/_tags.scss */
.el-tag .el-tag__close,
.el-tag.el-tag--primary .el-tag__close {
  color: white;
}

/* line 12, paper/_tags.scss */
.el-tag .el-tag__close:hover,
.el-tag.el-tag--primary .el-tag__close:hover {
  background-color: white;
  color: #7A9E9F;
}

/* line 4, paper/_tags.scss */
.input-new-tag.input-success .el-input__inner {
  border-color: #7AC29A !important;
}

/* line 7, paper/_tags.scss */
.el-tag,
.el-tag.el-tag--success {
  background-color: #7AC29A !important;
  color: white;
}

/* line 9, paper/_tags.scss */
.el-tag .el-tag__close,
.el-tag.el-tag--success .el-tag__close {
  color: white;
}

/* line 12, paper/_tags.scss */
.el-tag .el-tag__close:hover,
.el-tag.el-tag--success .el-tag__close:hover {
  background-color: white;
  color: #7AC29A;
}

/* line 4, paper/_tags.scss */
.input-new-tag.input-warning .el-input__inner {
  border-color: #F3BB45 !important;
}

/* line 7, paper/_tags.scss */
.el-tag,
.el-tag.el-tag--warning {
  background-color: #F3BB45 !important;
  color: white;
}

/* line 9, paper/_tags.scss */
.el-tag .el-tag__close,
.el-tag.el-tag--warning .el-tag__close {
  color: white;
}

/* line 12, paper/_tags.scss */
.el-tag .el-tag__close:hover,
.el-tag.el-tag--warning .el-tag__close:hover {
  background-color: white;
  color: #F3BB45;
}

/* line 4, paper/_tags.scss */
.input-new-tag.input-danger .el-input__inner {
  border-color: #EB5E28 !important;
}

/* line 7, paper/_tags.scss */
.el-tag,
.el-tag.el-tag--danger {
  background-color: #EB5E28 !important;
  color: white;
}

/* line 9, paper/_tags.scss */
.el-tag .el-tag__close,
.el-tag.el-tag--danger .el-tag__close {
  color: white;
}

/* line 12, paper/_tags.scss */
.el-tag .el-tag__close:hover,
.el-tag.el-tag--danger .el-tag__close:hover {
  background-color: white;
  color: #EB5E28;
}

/* line 1, paper/_collapse.scss */
.el-collapse {
  border: none !important;
}

/* line 4, paper/_collapse.scss */
.el-collapse-item {
  background-color: #F9F7F3;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6em;
  margin-top: 10px;
  padding: 7px 10px;
  border: 1px solid #e8e7e3;
}

/* line 14, paper/_collapse.scss */
.el-collapse-item__wrap {
  background-color: #F9F7F3;
  border-bottom: none !important;
}

/* line 19, paper/_collapse.scss */
.el-collapse-item .el-collapse-item__header {
  background-color: #F9F7F3;
  border: 0 none;
  border-radius: 3px;
  font-weight: bold;
  font-size: 16px;
  color: #66615b;
}

/* line 26, paper/_collapse.scss */
.el-collapse-item .el-collapse-item__header:hover, .el-collapse-item .el-collapse-item__header:active, .el-collapse-item .el-collapse-item__header:focus {
  color: #EB5E28;
}

/* line 32, paper/_collapse.scss */
.el-collapse-item .el-collapse-item__content {
  background-color: #F9F7F3;
  border: none;
  box-shadow: none;
}

/* line 1, paper/_carousel.scss */
.carousel-control {
  width: 8%;
}

/* line 4, paper/_carousel.scss */
.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .fa, .carousel-control .fa {
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 5;
}

/* line 10, paper/_carousel.scss */
.carousel-control .fa {
  font-size: 35px;
}

/* line 13, paper/_carousel.scss */
.carousel-control.left, .carousel-control.right {
  background-image: none;
}

/* line 3, paper/_animated-buttons.scss */
.icon-property, .btn-rotate i, .btn-magnify i, .btn-move-left i, .btn-move-right i {
  -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  -moz-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  -o-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  -ms-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  position: relative;
  display: inline-block;
}

/* line 16, paper/_animated-buttons.scss */
.btn-rotate:hover i, .btn-rotate:focus i {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(53deg);
  -ms-transform: rotate(53deg);
  transform: rotate(53deg);
}

/* line 29, paper/_animated-buttons.scss */
.btn-magnify:hover i, .btn-magnify:focus i {
  -webkit-transform: scale(1.22);
  -moz-transform: scale(1.22);
  -o-transform: scale(1.22);
  -ms-transform: scale(1.22);
  transform: scale(1.22);
}

/* line 36, paper/_animated-buttons.scss */
.btn-move-left i {
  margin-right: 0;
}

/* line 43, paper/_animated-buttons.scss */
.btn-move-left:hover i, .btn-move-left:focus i {
  -webkit-transform: translate3d(-5px, 0, 0);
  -moz-transform: translate3d(-5px, 0, 0);
  -o-transform: translate3d(-5px, 0, 0);
  -ms-transform: translate3d(-5px, 0, 0);
  transform: translate3d(-5px, 0, 0);
}

/* line 50, paper/_animated-buttons.scss */
.btn-move-right i {
  margin-right: 0;
}

/* line 57, paper/_animated-buttons.scss */
.btn-move-right:hover i, .btn-move-right:focus i {
  -webkit-transform: translate3d(5px, 0, 0);
  -moz-transform: translate3d(5px, 0, 0);
  -o-transform: translate3d(5px, 0, 0);
  -ms-transform: translate3d(5px, 0, 0);
  transform: translate3d(5px, 0, 0);
}

/* ========================================================================
 * bootstrap-switch - v3.3.2
 * http://www.bootstrap-switch.org
 * ========================================================================
 * Copyright 2012-2013 Mattia Larentis
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */
/* line 169, paper/_switch.scss */
.bootstrap-switch {
  display: inline-block;
  direction: ltr;
  cursor: pointer;
  border-radius: 30px;
  border: 0;
  position: relative;
  text-align: left;
  overflow: hidden;
  margin-bottom: 5px;
  line-height: 8px;
  width: 61px !important;
  height: 26px;
  outline: none;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* line 192, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-container {
  display: inline-flex;
  top: 0;
  height: 26px;
  border-radius: 4px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100px !important;
}

/* line 201, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block !important;
  height: 100%;
  color: #fff;
  padding: 6px 12px;
  font-size: 11px;
  text-indent: -5px;
  line-height: 15px;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

/* line 219, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
  text-align: center;
  z-index: 1;
  float: left;
  width: 50% !important;
  background-color: #66615B;
}

/* line 227, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  color: #fff;
  background: #7A9E9F;
}

/* line 232, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  color: #fff;
  background: #447DF7;
}

/* line 237, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  color: #fff;
  background: #7AC29A;
}

/* line 242, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  background: #FFA534;
  color: #fff;
}

/* line 247, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  color: #fff;
  background: #FB404B;
}

/* line 252, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  color: #fff;
  background: #cfcfca;
}

/* line 257, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-label {
  text-align: center;
  z-index: 100;
  color: #333333;
  background: #ffffff;
  width: 22px !important;
  height: 22px;
  margin: 2px -11px;
  border-radius: 12px;
  position: relative;
  float: left;
  padding: 0;
  background-color: #FFFFFF;
  box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 1px rgba(0, 0, 0, 0.25);
}

/* line 272, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-on {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 276, paper/_switch.scss */
.bootstrap-switch .bootstrap-switch-handle-off {
  text-indent: 6px;
}

/* line 279, paper/_switch.scss */
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
  position: absolute !important;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

/* line 288, paper/_switch.scss */
.bootstrap-switch input[type='radio'].form-control,
.bootstrap-switch input[type='checkbox'].form-control {
  height: auto;
}

/* line 292, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 299, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 306, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.33;
}

/* line 313, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
  cursor: default !important;
}

/* line 318, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default !important;
}

/* line 331, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
  -webkit-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}

/* line 335, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 341, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 364, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container {
  margin-left: -2px !important;
}

/* line 368, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container {
  margin-left: -37px !important;
}

/* line 372, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on:hover .bootstrap-switch-label {
  width: 26px !important;
  margin: 2px -15px;
}

/* line 377, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-off:hover .bootstrap-switch-label {
  width: 26px !important;
  margin: 2px -15px -13px -11px;
}

/* line 382, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-handle-off {
  background-color: #66615B;
}

/* line 386, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-handle-on {
  background-color: #cfcfca;
}

/* line 392, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-danger ~ .bootstrap-switch-default {
  background-color: #FB404B;
}

/* line 396, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-warning ~ .bootstrap-switch-default {
  background-color: #FFA534;
}

/* line 400, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-success ~ .bootstrap-switch-default {
  background-color: #7AC29A;
}

/* line 404, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-primary ~ .bootstrap-switch-default {
  background-color: #7A9E9F;
}

/* line 408, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-info ~ .bootstrap-switch-default {
  background-color: #447DF7;
}

/* line 412, paper/_switch.scss */
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-danger,
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-primary,
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-info,
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-warning,
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-success {
  background-color: #cfcfca;
}

/* line 1, paper/_pages.scss */
.wrapper {
  position: relative;
  top: 0;
  height: 100vh;
}

/* line 6, paper/_pages.scss */
.wrapper.wrapper-full-page {
  height: auto;
  min-height: 100vh;
}

/* line 14, paper/_pages.scss */
.full-page:after, .full-page:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

/* line 25, paper/_pages.scss */
.full-page:after {
  background: #5e5e5e;
  z-index: 3;
  opacity: 1;
}

/* line 31, paper/_pages.scss */
.full-page > .content,
.full-page > .footer {
  position: relative;
  z-index: 4;
}

/* line 37, paper/_pages.scss */
.full-page > .content {
  min-height: calc(100vh - 93px);
}

/* line 42, paper/_pages.scss */
.full-page .full-page-background {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}

/* line 55, paper/_pages.scss */
.full-page[data-image]:after, .full-page.has-image:after {
  opacity: .7;
}

/* line 60, paper/_pages.scss */
.full-page[data-color="blue"]:after {
  background-color: rgba(96, 133, 134, 0.7);
}

/* line 63, paper/_pages.scss */
.full-page[data-color="azure"]:after {
  background-color: rgba(68, 160, 185, 0.7);
}

/* line 66, paper/_pages.scss */
.full-page[data-color="green"]:after {
  background-color: rgba(87, 178, 127, 0.7);
}

/* line 69, paper/_pages.scss */
.full-page[data-color="orange"]:after {
  background-color: rgba(240, 169, 21, 0.7);
}

/* line 72, paper/_pages.scss */
.full-page[data-color="red"]:after {
  background-color: rgba(205, 71, 19, 0.7);
}

/* line 76, paper/_pages.scss */
.full-page .footer nav > ul a:not(.btn),
.full-page .footer .copyright,
.full-page .footer .copyright a {
  color: #FFFFFF;
  font-size: 14px;
}

/* line 88, paper/_pages.scss */
.login-page > .content,
.lock-page > .content,
.four-oh-four > .content {
  padding-top: 10vh;
}

/* line 94, paper/_pages.scss */
.lock-page .card-lock {
  text-align: center;
  width: 300px;
  margin: 30px auto 0;
  padding: 30px;
  position: absolute;
  left: 50%;
  margin-left: -150px;
  display: block;
}

/* line 107, paper/_pages.scss */
.register-page .header-text {
  text-align: center;
  padding: 60px 0 40px;
}

/* line 111, paper/_pages.scss */
.register-page .header-text h4 {
  margin-top: 10px;
}

/* line 115, paper/_pages.scss */
.register-page .header-text hr {
  opacity: .3;
  margin-top: 30px;
}

/* line 121, paper/_pages.scss */
.register-page .media {
  /*         color: $white-color; */
  margin-bottom: 45px;
}

/* line 125, paper/_pages.scss */
.register-page .media .icon {
  float: left;
  margin-right: 5px;
}

/* line 130, paper/_pages.scss */
.register-page .media i {
  font-size: 2.6em;
}

/* line 134, paper/_pages.scss */
.register-page .media h4 {
  margin: 0 0 5px 0;
}

/* line 139, paper/_pages.scss */
.register-page .form-group {
  margin-bottom: 25px;
}

/* line 144, paper/_pages.scss */
.register-page .card .content {
  padding-top: 0;
  padding-bottom: 0;
}

/*             Navigation Tabs                 */
/* line 2, paper/_tabs-navs-pagination.scss */
.vue-tabs {
  /*             Navigation Pills               */
}

/* line 3, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs-navigation {
  text-align: center;
  border-bottom: 1px solid #F1EAE0;
  margin-bottom: 30px;
}

/* line 8, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs-navigation .nav > li > a {
  padding-bottom: 20px;
}

/* line 12, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs-wrapper {
  display: inline-block;
  margin-bottom: -6px;
  margin-left: 1.25%;
  margin-right: 1.25%;
  position: relative;
  width: auto;
}

/* line 19, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs-wrapper.stacked {
  float: right;
}

/* line 23, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs {
  border-bottom: 0 none;
  font-size: 14px;
  font-weight: 600;
}

/* line 28, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs > li > a {
  border: 0 none;
  color: #A49E93;
}

/* line 32, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs > li > a:hover {
  color: #66615b;
}

/* line 36, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs > li.active, .vue-tabs .nav-tabs .el-tabs__item.is-active {
  color: #66615b;
  position: relative;
}

/* line 40, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs > li.active > a,
.vue-tabs .nav-tabs > li.active > a:hover,
.vue-tabs .nav-tabs > li.active > a:focus, .vue-tabs .nav-tabs .el-tabs__item.is-active > a,
.vue-tabs .nav-tabs .el-tabs__item.is-active > a:hover,
.vue-tabs .nav-tabs .el-tabs__item.is-active > a:focus {
  background-color: transparent;
  border: 0 none;
}

/* line 48, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs > li.active a:after, .vue-tabs .nav-tabs .el-tabs__item.is-active a:after {
  border-bottom: 11px solid #FFFFFF;
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  position: absolute;
  right: 40%;
  bottom: 0;
}

/* line 59, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-tabs > li.active a:before, .vue-tabs .nav-tabs .el-tabs__item.is-active a:before {
  border-bottom: 11px solid #F1EAE0;
  border-left: 11px solid rgba(0, 0, 0, 0);
  border-right: 11px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  position: absolute;
  right: 40%;
  bottom: 1px;
}

/* line 71, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-stacked {
  border-right: 1px solid #F1EAE0;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 0;
}

/* line 78, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-stacked > li > a {
  color: #A49E93;
  padding: 7px 25px;
  text-align: right;
}

/* line 83, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-stacked > li > a:hover {
  color: #66615b;
}

/* line 88, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-stacked > li.active > a {
  color: #66615b;
}

/* line 91, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-stacked > li.active a:after {
  border-right: 11px solid #FFFFFF;
  border-top: 11px solid rgba(0, 0, 0, 0);
  border-bottom: 11px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  position: absolute;
  right: -1px;
  bottom: 7px;
}

/* line 102, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-stacked > li.active a:before {
  border-right: 11px solid #F1EAE0;
  border-top: 11px solid rgba(0, 0, 0, 0);
  border-bottom: 11px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 7px;
}

/* line 115, paper/_tabs-navs-pagination.scss */
.vue-tabs .left-vertical-tabs {
  width: 170px;
  float: left;
}

/* line 120, paper/_tabs-navs-pagination.scss */
.vue-tabs .right-text-tabs {
  width: calc(100% - 170px);
  float: left;
  padding: 6px 15px;
}

/* line 128, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-pills > li + li {
  margin-left: 0;
}

/* line 131, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-pills > li > a {
  border: 2px solid #66615B;
  border-radius: 0;
  color: #66615B;
  font-weight: 600;
  margin-left: -1px;
  padding: 10px 20px;
}

/* line 140, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-pills > li.active > a,
.vue-tabs .nav-pills > li.active > a:hover,
.vue-tabs .nav-pills > li.active > a:focus {
  background-color: #66615B;
  color: #FFFFFF;
}

/* line 146, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-pills > li:first-child > a {
  border-radius: 30px 0 0 30px;
  margin: 0;
}

/* line 150, paper/_tabs-navs-pagination.scss */
.vue-tabs .nav-pills > li:last-child > a {
  border-radius: 0 30px 30px 0;
}

/* line 156, paper/_tabs-navs-pagination.scss */
.vue-tabs .tab-content {
  text-align: center;
}

/* line 164, paper/_tabs-navs-pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 20px;
}

/* line 170, paper/_tabs-navs-pagination.scss */
.pagination > li > a,
.pagination > li > span {
  background-color: transparent;
  border: 2px solid #66615B;
  border-radius: 20px;
  color: #66615B;
  height: 36px;
  font-weight: 600;
  margin: 0 2px;
  min-width: 36px;
  padding: 6px;
  line-height: 22px;
  text-align: center;
}

/* line 184, paper/_tabs-navs-pagination.scss */
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > a:active,
.pagination > li.active > a,
.pagination > li.active > span,
.pagination > li.active > a:hover,
.pagination > li.active > span:hover,
.pagination > li.active > a:focus,
.pagination > li.active > span:focus {
  background-color: #66615B;
  border-color: #66615B;
  color: #FFFFFF;
  cursor: pointer;
}

/* line 204, paper/_tabs-navs-pagination.scss */
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #cfcfca;
  border-color: #cfcfca;
}

/* line 216, paper/_tabs-navs-pagination.scss */
.nav-pills-primary > li > a,
.pagination-primary > li > a,
.pagination-primary > li > span,
.pagination-primary > li:first-child > a,
.pagination-primary > li:first-child > span,
.pagination-primary > li:last-child > a,
.pagination-primary > li:last-child > span {
  border: 2px solid #7A9E9F;
  color: #7A9E9F;
}

/* line 227, paper/_tabs-navs-pagination.scss */
.nav-pills-primary > li.active > a,
.nav-pills-primary > li.active > a:hover,
.nav-pills-primary > li.active > a:focus,
.pagination-primary > li > a:hover,
.pagination-primary > li > a:focus,
.pagination-primary > li > a:active,
.pagination-primary > li.active > a,
.pagination-primary > li.active > span,
.pagination-primary > li.active > a:hover,
.pagination-primary > li.active > span:hover,
.pagination-primary > li.active > a:focus,
.pagination-primary > li.active > span:focus {
  background-color: #7A9E9F;
  border-color: #7A9E9F;
  color: #FFFFFF;
}

/* line 249, paper/_tabs-navs-pagination.scss */
.pagination.pagination-primary > .disabled > span, .pagination.pagination-primary > .disabled > span:hover, .pagination.pagination-primary > .disabled > span:focus,
.pagination.pagination-primary > .disabled > a,
.pagination.pagination-primary > .disabled > a:hover,
.pagination.pagination-primary > .disabled > a:focus {
  color: #d3dfdf;
  border-color: #d3dfdf;
}

/* line 216, paper/_tabs-navs-pagination.scss */
.nav-pills-info > li > a,
.pagination-info > li > a,
.pagination-info > li > span,
.pagination-info > li:first-child > a,
.pagination-info > li:first-child > span,
.pagination-info > li:last-child > a,
.pagination-info > li:last-child > span {
  border: 2px solid #68B3C8;
  color: #68B3C8;
}

/* line 227, paper/_tabs-navs-pagination.scss */
.nav-pills-info > li.active > a,
.nav-pills-info > li.active > a:hover,
.nav-pills-info > li.active > a:focus,
.pagination-info > li > a:hover,
.pagination-info > li > a:focus,
.pagination-info > li > a:active,
.pagination-info > li.active > a,
.pagination-info > li.active > span,
.pagination-info > li.active > a:hover,
.pagination-info > li.active > span:hover,
.pagination-info > li.active > a:focus,
.pagination-info > li.active > span:focus {
  background-color: #68B3C8;
  border-color: #68B3C8;
  color: #FFFFFF;
}

/* line 249, paper/_tabs-navs-pagination.scss */
.pagination.pagination-info > .disabled > span, .pagination.pagination-info > .disabled > span:hover, .pagination.pagination-info > .disabled > span:focus,
.pagination.pagination-info > .disabled > a,
.pagination.pagination-info > .disabled > a:hover,
.pagination.pagination-info > .disabled > a:focus {
  color: #d8ebf1;
  border-color: #d8ebf1;
}

/* line 216, paper/_tabs-navs-pagination.scss */
.nav-pills-success > li > a,
.pagination-success > li > a,
.pagination-success > li > span,
.pagination-success > li:first-child > a,
.pagination-success > li:first-child > span,
.pagination-success > li:last-child > a,
.pagination-success > li:last-child > span {
  border: 2px solid #7AC29A;
  color: #7AC29A;
}

/* line 227, paper/_tabs-navs-pagination.scss */
.nav-pills-success > li.active > a,
.nav-pills-success > li.active > a:hover,
.nav-pills-success > li.active > a:focus,
.pagination-success > li > a:hover,
.pagination-success > li > a:focus,
.pagination-success > li > a:active,
.pagination-success > li.active > a,
.pagination-success > li.active > span,
.pagination-success > li.active > a:hover,
.pagination-success > li.active > span:hover,
.pagination-success > li.active > a:focus,
.pagination-success > li.active > span:focus {
  background-color: #7AC29A;
  border-color: #7AC29A;
  color: #FFFFFF;
}

/* line 249, paper/_tabs-navs-pagination.scss */
.pagination.pagination-success > .disabled > span, .pagination.pagination-success > .disabled > span:hover, .pagination.pagination-success > .disabled > span:focus,
.pagination.pagination-success > .disabled > a,
.pagination.pagination-success > .disabled > a:hover,
.pagination.pagination-success > .disabled > a:focus {
  color: #e3f2ea;
  border-color: #e3f2ea;
}

/* line 216, paper/_tabs-navs-pagination.scss */
.nav-pills-warning > li > a,
.pagination-warning > li > a,
.pagination-warning > li > span,
.pagination-warning > li:first-child > a,
.pagination-warning > li:first-child > span,
.pagination-warning > li:last-child > a,
.pagination-warning > li:last-child > span {
  border: 2px solid #F3BB45;
  color: #F3BB45;
}

/* line 227, paper/_tabs-navs-pagination.scss */
.nav-pills-warning > li.active > a,
.nav-pills-warning > li.active > a:hover,
.nav-pills-warning > li.active > a:focus,
.pagination-warning > li > a:hover,
.pagination-warning > li > a:focus,
.pagination-warning > li > a:active,
.pagination-warning > li.active > a,
.pagination-warning > li.active > span,
.pagination-warning > li.active > a:hover,
.pagination-warning > li.active > span:hover,
.pagination-warning > li.active > a:focus,
.pagination-warning > li.active > span:focus {
  background-color: #F3BB45;
  border-color: #F3BB45;
  color: #FFFFFF;
}

/* line 249, paper/_tabs-navs-pagination.scss */
.pagination.pagination-warning > .disabled > span, .pagination.pagination-warning > .disabled > span:hover, .pagination.pagination-warning > .disabled > span:focus,
.pagination.pagination-warning > .disabled > a,
.pagination.pagination-warning > .disabled > a:hover,
.pagination.pagination-warning > .disabled > a:focus {
  color: #fcf0d5;
  border-color: #fcf0d5;
}

/* line 216, paper/_tabs-navs-pagination.scss */
.nav-pills-danger > li > a,
.pagination-danger > li > a,
.pagination-danger > li > span,
.pagination-danger > li:first-child > a,
.pagination-danger > li:first-child > span,
.pagination-danger > li:last-child > a,
.pagination-danger > li:last-child > span {
  border: 2px solid #EB5E28;
  color: #EB5E28;
}

/* line 227, paper/_tabs-navs-pagination.scss */
.nav-pills-danger > li.active > a,
.nav-pills-danger > li.active > a:hover,
.nav-pills-danger > li.active > a:focus,
.pagination-danger > li > a:hover,
.pagination-danger > li > a:focus,
.pagination-danger > li > a:active,
.pagination-danger > li.active > a,
.pagination-danger > li.active > span,
.pagination-danger > li.active > a:hover,
.pagination-danger > li.active > span:hover,
.pagination-danger > li.active > a:focus,
.pagination-danger > li.active > span:focus {
  background-color: #EB5E28;
  border-color: #EB5E28;
  color: #FFFFFF;
}

/* line 249, paper/_tabs-navs-pagination.scss */
.pagination.pagination-danger > .disabled > span, .pagination.pagination-danger > .disabled > span:hover, .pagination.pagination-danger > .disabled > span:focus,
.pagination.pagination-danger > .disabled > a,
.pagination.pagination-danger > .disabled > a:hover,
.pagination.pagination-danger > .disabled > a:focus {
  color: #f8c7b4;
  border-color: #f8c7b4;
}

/* line 1, paper/_circlechart.scss */
.chart-circle {
  display: inline-block;
  font-size: 2em;
  height: 160px;
  line-height: 160px;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
  width: 160px;
}

/* line 12, paper/_circlechart.scss */
.chart-circle canvas {
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  /* line 2, paper/_responsive.scss */
  .navbar {
    min-height: 75px;
  }
  /* line 5, paper/_responsive.scss */
  .navbar-form {
    margin-top: 17px;
    margin-bottom: 17px;
    padding-left: 5px;
    padding-right: 5px;
  }
  /* line 12, paper/_responsive.scss */
  .navbar-fixed {
    width: calc(100% - 260px);
  }
  /* line 16, paper/_responsive.scss */
  .close-layer {
    display: none;
  }
  /* line 20, paper/_responsive.scss */
  .navbar-nav > li > .dropdown-menu {
    -webkit-transform: translate3d(0, -30px, 0);
    -moz-transform: translate3d(0, -30px, 0);
    -o-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.3s ease 0s, height 0s linear 0.35s;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    display: block;
  }
  /* line 28, paper/_responsive.scss */
  .navbar-nav > li > .dropdown-menu:before {
    border-bottom: 11px solid #F1EAE0;
    border-left: 11px solid rgba(0, 0, 0, 0);
    border-right: 11px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    position: absolute;
    right: 12px;
    top: -12px;
  }
  /* line 38, paper/_responsive.scss */
  .navbar-nav > li > .dropdown-menu:after {
    border-bottom: 11px solid #FFFFFF;
    border-left: 11px solid rgba(0, 0, 0, 0);
    border-right: 11px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    position: absolute;
    right: 12px;
    top: -11px;
  }
  /* line 50, paper/_responsive.scss */
  .navbar-nav > li.open > .dropdown-menu {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }
  /* line 56, paper/_responsive.scss */
  .navbar-nav.navbar-left > li > .dropdown-menu:before {
    right: auto;
    left: 12px;
  }
  /* line 61, paper/_responsive.scss */
  .navbar-nav.navbar-left > li > .dropdown-menu:after {
    right: auto;
    left: 12px;
  }
  /* line 67, paper/_responsive.scss */
  .navbar .navbar-header {
    margin-left: 15px;
  }
  /* line 74, paper/_responsive.scss */
  .footer:not(.footer-big) nav > ul li:first-child {
    margin-left: 0;
  }
  /* line 80, paper/_responsive.scss */
  body .navbar-collapse.collapse.off-canvas-sidebar {
    display: none !important;
  }
  /* line 85, paper/_responsive.scss */
  .card form {
    /*[class*="col-"]{
          padding: 6px;
      }*/
  }
  /* line 89, paper/_responsive.scss */
  .card form [class*="col-"]:first-child {
    padding-left: 15px;
  }
  /* line 92, paper/_responsive.scss */
  .card form [class*="col-"]:last-child {
    padding-right: 15px;
  }
  /* line 105, paper/_responsive.scss */
  .sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):before {
    border-right: 17px solid #cfcfca;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    opacity: 1;
    top: 8px;
    transition: opacity 150ms ease-in;
  }
  /* line 119, paper/_responsive.scss */
  .sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):after {
    border-right: 17px solid #f4f3ef;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    right: -1px;
    opacity: 1;
    top: 8px;
    transition: opacity 150ms ease-in;
  }
}

/*          Changes for small display      */
@media (max-width: 992px) {
  /* line 161, paper/_responsive.scss */
  .navbar-form {
    margin: 25px 0 0;
    padding: 0 23px 0;
    float: none !important;
  }
  /* line 167, paper/_responsive.scss */
  .bootstrap-select {
    margin-bottom: 10px;
  }
  /* line 171, paper/_responsive.scss */
  .main-panel {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    left: 0;
    width: 100%;
  }
  /* line 178, paper/_responsive.scss */
  .navbar-transparent {
    padding-top: 15px;
  }
  /* line 181, paper/_responsive.scss */
  body {
    position: relative;
  }
  /* line 184, paper/_responsive.scss */
  h6 {
    font-size: 1em;
  }
  /* line 187, paper/_responsive.scss */
  .wrapper {
    background-color: white;
  }
  /* line 190, paper/_responsive.scss */
  .main-panel {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    left: 0;
  }
  /* line 195, paper/_responsive.scss */
  .navbar .container,
  .wrapper-full-page {
    left: 0;
    width: 100%;
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    position: relative;
  }
  /* line 203, paper/_responsive.scss */
  .navbar .navbar-collapse.collapse,
  .navbar .navbar-collapse.collapse.in,
  .navbar .navbar-collapse.collapsing {
    display: none !important;
  }
  /* line 209, paper/_responsive.scss */
  .navbar-nav > li {
    float: none;
    position: relative;
    display: block;
  }
  /* line 215, paper/_responsive.scss */
  .sidebar,
  .off-canvas-sidebar {
    position: fixed;
    display: block;
    top: 0;
    height: 100%;
    width: 230px;
    right: 0;
    left: auto;
    z-index: 9999;
    visibility: visible;
    background-color: #9A9A9A;
    overflow-y: visible;
    border-top: none;
    text-align: left;
    padding-right: 0px;
    padding-left: 0;
    -webkit-transform: translate3d(230px, 0, 0);
    -moz-transform: translate3d(230px, 0, 0);
    -o-transform: translate3d(230px, 0, 0);
    -ms-transform: translate3d(230px, 0, 0);
    transform: translate3d(230px, 0, 0);
    -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
  }
  /* line 236, paper/_responsive.scss */
  .sidebar .sidebar-wrapper,
  .off-canvas-sidebar .sidebar-wrapper {
    width: 230px;
    box-shadow: inset 1px 0px 0px 0px #cfcfca;
  }
  /* line 243, paper/_responsive.scss */
  .sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):before,
  .off-canvas-sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):before {
    border-left: 12px solid #cfcfca;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 8px;
  }
  /* line 255, paper/_responsive.scss */
  .sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):after,
  .off-canvas-sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):after {
    border-left: 12px solid #f4f3ef;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    left: -1px;
    top: 8px;
  }
  /* line 270, paper/_responsive.scss */
  .sidebar .sidebar-wrapper .dropdown-menu:before, .sidebar .sidebar-wrapper .dropdown-menu:after,
  .off-canvas-sidebar .sidebar-wrapper .dropdown-menu:before,
  .off-canvas-sidebar .sidebar-wrapper .dropdown-menu:after {
    display: none;
  }
  /* line 277, paper/_responsive.scss */
  .sidebar .nav,
  .off-canvas-sidebar .nav {
    margin-top: 0;
    position: relative;
    z-index: 4;
  }
  /* line 286, paper/_responsive.scss */
  .sidebar .nav > li > a:hover, .sidebar .nav > li > a.active,
  .off-canvas-sidebar .nav > li > a:hover,
  .off-canvas-sidebar .nav > li > a.active {
    color: #484541;
  }
  /* line 294, paper/_responsive.scss */
  .sidebar .logo,
  .off-canvas-sidebar .logo {
    box-shadow: inset 1px 0px 0px 0px #cfcfca;
  }
  /* line 297, paper/_responsive.scss */
  .sidebar .logo a.logo-mini,
  .off-canvas-sidebar .logo a.logo-mini {
    display: none;
  }
  /* line 301, paper/_responsive.scss */
  .sidebar .logo a.logo-normal,
  .off-canvas-sidebar .logo a.logo-normal {
    text-align: center;
  }
  /* line 306, paper/_responsive.scss */
  .sidebar .divider,
  .off-canvas-sidebar .divider {
    height: 1px;
    margin: 10px 0;
  }
  /* line 312, paper/_responsive.scss */
  .sidebar .nav-mobile-menu .notification,
  .off-canvas-sidebar .nav-mobile-menu .notification {
    float: left;
    line-height: 30px;
    margin-right: 8px;
    font-weight: 600;
  }
  /* line 319, paper/_responsive.scss */
  .sidebar .nav-mobile-menu .open .dropdown-menu,
  .off-canvas-sidebar .nav-mobile-menu .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  /* line 332, paper/_responsive.scss */
  .sidebar .nav-mobile-menu .open .dropdown-menu > li a,
  .off-canvas-sidebar .nav-mobile-menu .open .dropdown-menu > li a {
    padding-left: 70px;
    margin: 0;
  }
  /* line 336, paper/_responsive.scss */
  .sidebar .nav-mobile-menu .open .dropdown-menu > li a:hover, .sidebar .nav-mobile-menu .open .dropdown-menu > li a:active, .sidebar .nav-mobile-menu .open .dropdown-menu > li a:focus,
  .off-canvas-sidebar .nav-mobile-menu .open .dropdown-menu > li a:hover,
  .off-canvas-sidebar .nav-mobile-menu .open .dropdown-menu > li a:active,
  .off-canvas-sidebar .nav-mobile-menu .open .dropdown-menu > li a:focus {
    background-color: transparent;
    border-radius: 0;
  }
  /* line 346, paper/_responsive.scss */
  .sidebar .nav-mobile-menu .dropdown .dropdown-menu,
  .off-canvas-sidebar .nav-mobile-menu .dropdown .dropdown-menu {
    transition: none;
  }
  /* line 350, paper/_responsive.scss */
  .sidebar .nav-mobile-menu a,
  .off-canvas-sidebar .nav-mobile-menu a {
    transition: none;
  }
  /* line 357, paper/_responsive.scss */
  .off-canvas-sidebar .nav {
    margin-top: 15px;
  }
  /* line 360, paper/_responsive.scss */
  .off-canvas-sidebar .nav > li > a {
    line-height: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    left: 0;
    opacity: 1;
    white-space: nowrap;
  }
  /* line 373, paper/_responsive.scss */
  .navbar-fixed > div {
    -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
  }
  /* line 378, paper/_responsive.scss */
  .nav-open .main-panel,
  .nav-open .wrapper-full-page {
    left: 0;
    -webkit-transform: translate3d(-230px, 0, 0);
    -moz-transform: translate3d(-230px, 0, 0);
    -o-transform: translate3d(-230px, 0, 0);
    -ms-transform: translate3d(-230px, 0, 0);
    transform: translate3d(-230px, 0, 0);
  }
  /* line 384, paper/_responsive.scss */
  .nav-open .navbar-fixed > div {
    -webkit-transform: translate3d(-230px, 0, 0);
    -moz-transform: translate3d(-230px, 0, 0);
    -o-transform: translate3d(-230px, 0, 0);
    -ms-transform: translate3d(-230px, 0, 0);
    transform: translate3d(-230px, 0, 0);
  }
  /* line 388, paper/_responsive.scss */
  .nav-open .navbar-collapse {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  /* line 392, paper/_responsive.scss */
  .nav-open .navbar .container {
    -webkit-transform: translate3d(-230px, 0, 0);
    -moz-transform: translate3d(-230px, 0, 0);
    -o-transform: translate3d(-230px, 0, 0);
    -ms-transform: translate3d(-230px, 0, 0);
    transform: translate3d(-230px, 0, 0);
  }
  /* line 396, paper/_responsive.scss */
  .nav-open .sidebar,
  .nav-open .off-canvas-sidebar {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  /* line 403, paper/_responsive.scss */
  .navbar-toggle .icon-bar {
    display: block;
    position: relative;
    background: #FFFFFF;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    margin: 0 auto;
  }
  /* line 415, paper/_responsive.scss */
  .navbar-toggle-black .icon-bar {
    background: #9A9A9A;
  }
  /* line 421, paper/_responsive.scss */
  .navbar-header .navbar-toggle {
    margin: 17px 15px 17px 0;
    width: 40px;
    height: 40px;
  }
  /* line 426, paper/_responsive.scss */
  .bar1,
  .bar2,
  .bar3 {
    outline: 1px solid transparent;
  }
  /* line 431, paper/_responsive.scss */
  .bar1 {
    top: 0px;
    -webkit-animation: topbar-back 500ms linear 0s;
    -moz-animation: topbar-back 500ms linear 0s;
    -ms-animaton: topbar-back 500ms linear 0s;
    animation: topbar-back 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  /* line 435, paper/_responsive.scss */
  .bar2 {
    opacity: 1;
  }
  /* line 438, paper/_responsive.scss */
  .bar3 {
    bottom: 0px;
    -webkit-animation: bottombar-back 500ms linear 0s;
    -moz-animation: bottombar-back 500ms linear 0s;
    -ms-animaton: bottombar-back 500ms linear 0s;
    animation: bottombar-back 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  /* line 442, paper/_responsive.scss */
  .toggled .bar1 {
    top: 6px;
    -webkit-animation: topbar-x 500ms linear 0s;
    -moz-animation: topbar-x 500ms linear 0s;
    -ms-animaton: topbar-x 500ms linear 0s;
    animation: topbar-x 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  /* line 446, paper/_responsive.scss */
  .toggled .bar2 {
    opacity: 0;
  }
  /* line 449, paper/_responsive.scss */
  .toggled .bar3 {
    bottom: 6px;
    -webkit-animation: bottombar-x 500ms linear 0s;
    -moz-animation: bottombar-x 500ms linear 0s;
    -ms-animaton: bottombar-x 500ms linear 0s;
    animation: bottombar-x 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  @keyframes topbar-x {
    0% {
      top: 0px;
      transform: rotate(0deg);
    }
    45% {
      top: 6px;
      transform: rotate(145deg);
    }
    75% {
      transform: rotate(130deg);
    }
    100% {
      transform: rotate(135deg);
    }
  }
  @-webkit-keyframes topbar-x {
    0% {
      top: 0px;
      -webkit-transform: rotate(0deg);
    }
    45% {
      top: 6px;
      -webkit-transform: rotate(145deg);
    }
    75% {
      -webkit-transform: rotate(130deg);
    }
    100% {
      -webkit-transform: rotate(135deg);
    }
  }
  @-moz-keyframes topbar-x {
    0% {
      top: 0px;
      -moz-transform: rotate(0deg);
    }
    45% {
      top: 6px;
      -moz-transform: rotate(145deg);
    }
    75% {
      -moz-transform: rotate(130deg);
    }
    100% {
      -moz-transform: rotate(135deg);
    }
  }
  @keyframes topbar-back {
    0% {
      top: 6px;
      transform: rotate(135deg);
    }
    45% {
      transform: rotate(-10deg);
    }
    75% {
      transform: rotate(5deg);
    }
    100% {
      top: 0px;
      transform: rotate(0);
    }
  }
  @-webkit-keyframes topbar-back {
    0% {
      top: 6px;
      -webkit-transform: rotate(135deg);
    }
    45% {
      -webkit-transform: rotate(-10deg);
    }
    75% {
      -webkit-transform: rotate(5deg);
    }
    100% {
      top: 0px;
      -webkit-transform: rotate(0);
    }
  }
  @-moz-keyframes topbar-back {
    0% {
      top: 6px;
      -moz-transform: rotate(135deg);
    }
    45% {
      -moz-transform: rotate(-10deg);
    }
    75% {
      -moz-transform: rotate(5deg);
    }
    100% {
      top: 0px;
      -moz-transform: rotate(0);
    }
  }
  @keyframes bottombar-x {
    0% {
      bottom: 0px;
      transform: rotate(0deg);
    }
    45% {
      bottom: 6px;
      transform: rotate(-145deg);
    }
    75% {
      transform: rotate(-130deg);
    }
    100% {
      transform: rotate(-135deg);
    }
  }
  @-webkit-keyframes bottombar-x {
    0% {
      bottom: 0px;
      -webkit-transform: rotate(0deg);
    }
    45% {
      bottom: 6px;
      -webkit-transform: rotate(-145deg);
    }
    75% {
      -webkit-transform: rotate(-130deg);
    }
    100% {
      -webkit-transform: rotate(-135deg);
    }
  }
  @-moz-keyframes bottombar-x {
    0% {
      bottom: 0px;
      -moz-transform: rotate(0deg);
    }
    45% {
      bottom: 6px;
      -moz-transform: rotate(-145deg);
    }
    75% {
      -moz-transform: rotate(-130deg);
    }
    100% {
      -moz-transform: rotate(-135deg);
    }
  }
  @keyframes bottombar-back {
    0% {
      bottom: 6px;
      transform: rotate(-135deg);
    }
    45% {
      transform: rotate(10deg);
    }
    75% {
      transform: rotate(-5deg);
    }
    100% {
      bottom: 0px;
      transform: rotate(0);
    }
  }
  @-webkit-keyframes bottombar-back {
    0% {
      bottom: 6px;
      -webkit-transform: rotate(-135deg);
    }
    45% {
      -webkit-transform: rotate(10deg);
    }
    75% {
      -webkit-transform: rotate(-5deg);
    }
    100% {
      bottom: 0px;
      -webkit-transform: rotate(0);
    }
  }
  @-moz-keyframes bottombar-back {
    0% {
      bottom: 6px;
      -moz-transform: rotate(-135deg);
    }
    45% {
      -moz-transform: rotate(10deg);
    }
    75% {
      -moz-transform: rotate(-5deg);
    }
    100% {
      bottom: 0px;
      -moz-transform: rotate(0);
    }
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-moz-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* line 472, paper/_responsive.scss */
  .dropdown-menu .divider {
    background-color: rgba(229, 229, 229, 0.15);
  }
  /* line 476, paper/_responsive.scss */
  .navbar-nav {
    margin: 1px 0;
  }
  /* line 480, paper/_responsive.scss */
  .dropdown-menu {
    display: none;
  }
  /* line 484, paper/_responsive.scss */
  .navbar-fixed-top {
    -webkit-backface-visibility: hidden;
  }
  /* line 487, paper/_responsive.scss */
  .bodyClick {
    height: 100%;
    width: 100%;
    position: fixed;
    opacity: 0;
    top: 0;
    left: auto;
    right: 230px;
    content: "";
    z-index: 9999;
    overflow-x: hidden;
  }
  /* line 499, paper/_responsive.scss */
  .form-control + .form-control-feedback {
    margin-top: -8px;
  }
  /* line 502, paper/_responsive.scss */
  .navbar-toggle:hover, .navbar-toggle:focus {
    background-color: transparent !important;
  }
  /* line 505, paper/_responsive.scss */
  .btn.dropdown-toggle {
    margin-bottom: 0;
  }
  /* line 508, paper/_responsive.scss */
  .media-post .author {
    width: 20%;
    float: none !important;
    display: block;
    margin: 0 auto 10px;
  }
  /* line 514, paper/_responsive.scss */
  .media-post .media-body {
    width: 100%;
  }
  /* line 518, paper/_responsive.scss */
  .close-layer {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    top: 0;
    left: auto;
    display: block;
    content: "";
    z-index: 9999;
    overflow-x: hidden;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
  }
  /* line 533, paper/_responsive.scss */
  .close-layer.visible {
    opacity: 1;
  }
  /* line 538, paper/_responsive.scss */
  .navbar-collapse.collapse {
    height: 100% !important;
  }
  /* line 541, paper/_responsive.scss */
  .navbar-collapse.collapse.in {
    display: block;
  }
  /* line 544, paper/_responsive.scss */
  .navbar-header .collapse, .navbar-toggle {
    display: block !important;
  }
  /* line 547, paper/_responsive.scss */
  .navbar-header {
    float: none;
  }
  /* line 550, paper/_responsive.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  /* line 561, paper/_responsive.scss */
  .main-panel > .content {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 566, paper/_responsive.scss */
  .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
    background-color: transparent;
  }
  /* line 574, paper/_responsive.scss */
  .footer .copyright {
    padding: 10px 15px;
    width: 100%;
    text-align: center;
    white-space: initial;
  }
  /* line 581, paper/_responsive.scss */
  .footer nav.pull-left {
    float: none !important;
    text-align: center;
  }
  /* line 586, paper/_responsive.scss */
  .navbar-minimize {
    display: none;
  }
  /* line 592, paper/_responsive.scss */
  .column-sizing .form-control {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  /* line 602, paper/_responsive.scss */
  .table-full-width {
    margin-left: -15px;
    margin-right: -15px;
  }
  /* line 606, paper/_responsive.scss */
  .table-responsive {
    overflow: visible;
  }
}

@media (max-width: 991px) {
  /* line 614, paper/_responsive.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #cfcfca;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
  }
  /* line 626, paper/_responsive.scss */
  .timeline:before {
    left: 5%;
  }
  /* line 630, paper/_responsive.scss */
  .timeline > li > .timeline-badge {
    left: 5%;
  }
  /* line 635, paper/_responsive.scss */
  .timeline > li .timeline-panel {
    float: right;
    width: 89%;
  }
  /* line 639, paper/_responsive.scss */
  .timeline > li .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }
  /* line 646, paper/_responsive.scss */
  .timeline > li .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
  /* line 656, paper/_responsive.scss */
  .timeline h6 {
    font-size: 0.9em;
  }
  /* line 662, paper/_responsive.scss */
  .timeline > .timeline-inverted .timeline-panel {
    width: 89%;
  }
}

@media (max-width: 550px) {
  /* line 677, paper/_responsive.scss */
  .footer nav ul > li:first-child {
    padding-top: 16px;
  }
  /* line 681, paper/_responsive.scss */
  .footer nav ul li {
    display: block;
    margin: 0;
    padding: 5px 15px;
  }
}

/* line 2, custom/rundeck-icon.scss */
.rdicon {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
}

/* line 7, custom/rundeck-icon.scss */
.rdicon.app-logo {
  background-image: url("logos/rundeck-red-chevron-0a12e0a3c95dbb8c8929d7411c142db4.png");
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
  vertical-align: baseline;
}

/* line 14, custom/rundeck-icon.scss */
.sidebar .rdicon.app-logo {
  height: 24px;
  width: 24px;
  background-size: 24px;
  vertical-align: bottom;
}

/* line 47, custom/rundeck-icon.scss */
.rdicon.icon-small {
  width: 16px;
  height: 16px;
}

/* line 51, custom/rundeck-icon.scss */
.rdicon.icon-small.command, .rdicon.icon-small.shell {
  background-image: url("icon-small-shell-52eb0a62d568a096b8ead28758d6d09f.png");
}

/* line 56, custom/rundeck-icon.scss */
.rdicon.icon-small.script {
  background-image: url("icon-small-script-2281eef43b4d32128e9043439f7b2e76.png");
}

/* line 60, custom/rundeck-icon.scss */
.rdicon.icon-small.scriptfile, .rdicon.icon-small.scripturl {
  background-image: url("icon-small-scriptfile-eb962a83fea74cb7cb78a7c337cac153.png");
}

/* line 65, custom/rundeck-icon.scss */
.rdicon.icon-small.plugin {
  background-image: url("icon-small-plugin-954efaab5a06d327e4526ac1f67b623a.png");
}

/* line 69, custom/rundeck-icon.scss */
.rdicon.icon-small.node {
  height: 10px;
  background-image: url("icon-small-Node-43e8b5ff427b72012d3e6e2cf6ac89a5.png");
}

/* line 74, custom/rundeck-icon.scss */
.rdicon.icon-small.node.node-runnable {
  background-image: url("icon-small-Node-run-4d325b5f441e46b88103c99526f12ea3.png");
}

/* line 79, custom/rundeck-icon.scss */
.rdicon.icon {
  width: 32px;
  height: 32px;
}

/* line 83, custom/rundeck-icon.scss */
.rdicon.icon.command, .rdicon.icon.shell {
  background-image: url("icon-shell-8f419391991e465e3fa53b5ff9bcfed9.png");
}

/* line 88, custom/rundeck-icon.scss */
.rdicon.icon.script {
  background-image: url("icon-script-3dd3c91480086c09d3f83ea1a8b98189.png");
}

/* line 92, custom/rundeck-icon.scss */
.rdicon.icon.scriptfile {
  background-image: url("icon-scriptfile-9111d31251b58c135c478f507f522339.png");
}

/* line 97, custom/rundeck-icon.scss */
.rdicon.icon-med {
  width: 24px;
  height: 24px;
}

/* line 101, custom/rundeck-icon.scss */
.rdicon.icon-med.command, .rdicon.icon-med.shell {
  background-image: url("icon-med-shell-819518b00196409f6df1b97cfcda1f22.png");
}

/* line 106, custom/rundeck-icon.scss */
.rdicon.icon-med.script {
  background-image: url("icon-med-script-3072da82d7832132415aee03c8425ce2.png");
}

/* line 110, custom/rundeck-icon.scss */
.rdicon.icon-med.scriptfile {
  background-image: url("icon-med-scriptfile-97615098ec205bd92b87d40fcabcf1c8.png");
}

/* line 115, custom/rundeck-icon.scss */
.rdicon.app-logo.middle {
  vertical-align: middle;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 120, custom/rundeck-icon.scss */
  .rdicon.icon-small {
    background-size: 16px 16px;
  }
  /* line 123, custom/rundeck-icon.scss */
  .rdicon.icon-small.node {
    background-size: 16px 10px;
    background-image: url("icon-small-Node@2x-d4d392196765e156ccf8eea93162c3d2.png");
  }
  /* line 128, custom/rundeck-icon.scss */
  .rdicon.icon-small.node.node-runnable {
    background-image: url("icon-small-Node-run@2x-229a3ac823ed061decba6e95e96c2202.png");
  }
  /* line 132, custom/rundeck-icon.scss */
  .rdicon.icon-small.command, .rdicon.icon-small.shell {
    background-image: url("icon-small-shell@2x-8f419391991e465e3fa53b5ff9bcfed9.png");
  }
  /* line 137, custom/rundeck-icon.scss */
  .rdicon.icon-small.script {
    background-image: url("icon-small-script@2x-3dd3c91480086c09d3f83ea1a8b98189.png");
  }
  /* line 141, custom/rundeck-icon.scss */
  .rdicon.icon-small.scriptfile {
    background-image: url("icon-small-scriptfile@2x-9111d31251b58c135c478f507f522339.png");
  }
  /* line 145, custom/rundeck-icon.scss */
  .rdicon.icon-small.plugin {
    background-image: url("icon-small-plugin@2x-3faec9a6a20d5b129822b437cda3e258.png");
  }
  /* line 150, custom/rundeck-icon.scss */
  .rdicon.icon {
    background-size: 32px 32px;
  }
  /* line 153, custom/rundeck-icon.scss */
  .rdicon.icon.command, .rdicon.icon.shell {
    background-image: url("icon-shell@2x-1cef2ced049197e442c08f4544dba098.png");
  }
  /* line 158, custom/rundeck-icon.scss */
  .rdicon.icon.script {
    background-image: url("icon-script@2x-cd8c34264d92fa0837cf37a54e241809.png");
  }
  /* line 162, custom/rundeck-icon.scss */
  .rdicon.icon.scriptfile {
    background-image: url("icon-scriptfile@2x-399a9648604d7029672d69033284b167.png");
  }
  /* line 167, custom/rundeck-icon.scss */
  .rdicon.icon-med {
    background-size: 24px 24px;
  }
  /* line 170, custom/rundeck-icon.scss */
  .rdicon.icon-med.command, .rdicon.icon-med.shell {
    background-image: url("icon-med-shell@2x-b92823b9ae31aafbc3f2c7b8abbe0ee5.png");
  }
  /* line 175, custom/rundeck-icon.scss */
  .rdicon.icon-med.script {
    background-image: url("icon-med-script@2x-8ac40e6a85b2116dd223e0a1aae94319.png");
  }
  /* line 179, custom/rundeck-icon.scss */
  .rdicon.icon-med.scriptfile {
    background-image: url("icon-med-scriptfile@2x-84677ed25c187e80a71baf8c59b1cc06.png");
  }
}

/* line 186, custom/rundeck-icon.scss */
.nodedetail.server .nodedesc, .node_entry.server .nodedesc {
  width: 16px;
  height: 16px;
  vertical-align: baseline;
}

/* line 192, custom/rundeck-icon.scss */
.nodedetail.server .nodedesc, .node_entry.server .nodedesc {
  background-image: url("logos/rundeck2-icon-16-5c20ae378fc2f521f132c35c42c290de.png");
  background-repeat: no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 204, custom/rundeck-icon.scss */
  .nodedetail.server .nodedesc, .node_entry.server .nodedesc {
    background-image: url("logos/rundeck2-icon-32-abe3c5e2774caa46cd1fc4dd703db26c.png");
    background-size: 16px 16px;
  }
}

/* line 1, custom/mainbar.scss */
.mainbar {
  min-height: 59px;
  height: 59px;
}

/* line 5, custom/mainbar.scss */
.mainbar .navbar-minimize .btn,
.mainbar li#projectSelect a.dropdown-toggle.btn {
  margin: 10px 3px 0;
  height: 38px;
  width: 38px;
}

/* line 12, custom/mainbar.scss */
.mainbar .navbar-toggle {
  z-index: 1;
}

/* line 18, custom/mainbar.scss */
.mainbar .nav.navbar-nav li a {
  padding: 0;
  margin: 0;
}

/* line 22, custom/mainbar.scss */
.mainbar .nav.navbar-nav li a.dropdown-toggle {
  cursor: pointer;
}

/* line 30, custom/mainbar.scss */
.mainbar .nav.navbar-nav .dropdown-menu li a {
  padding: 10px 15px;
}

/* line 38, custom/mainbar.scss */
.mainbar i.fas.fa-ellipsis-v {
  display: block;
}

/* line 42, custom/mainbar.scss */
.mainbar i.fas.fa-ellipsis-h {
  display: none;
}

/* line 48, custom/mainbar.scss */
.sidebar-mini .mainbar i.fas.fa-ellipsis-v {
  display: none;
}

/* line 52, custom/mainbar.scss */
.sidebar-mini .mainbar i.fas.fa-ellipsis-h {
  display: block;
}

/* line 58, custom/mainbar.scss */
.mainbar .fa-cog,
.mainbar .fa-user {
  color: #65605a;
}

/* line 63, custom/mainbar.scss */
.mainbar #projectHomeLink {
  font-size: 32px;
  margin: 5px 0 0;
}

/* line 68, custom/mainbar.scss */
.mainbar #appAdmin {
  margin: 10px 0 0;
}

/* line 72, custom/mainbar.scss */
.mainbar #appUser {
  margin: 5px 0 0 20px;
  font-size: 32px;
  font-weight: lighter;
}

/* line 10, custom/sidebar.scss */
.sidebar .logo {
  background-color: #000000;
}

/* line 13, custom/sidebar.scss */
.sidebar .logo a.home {
  font-family: 'Futura';
  text-transform: uppercase;
  color: #ffffff;
  padding: 15px 15px 15px 32px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
  background-image: url("logos/rundeck-text-ab25d9e5c390d0dd817a5c24ec090ea8.png");
  background-size: 50%;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  background-position-y: 15px;
  background-position-x: 65px;
}

/* line 36, custom/sidebar.scss */
.sidebar .logo .navbar-minimize {
  position: absolute;
  right: -1em;
  top: 1.8em;
}

/* line 41, custom/sidebar.scss */
.sidebar .logo .navbar-minimize .triangle {
  cursor: pointer;
  z-index: 1;
  color: white;
  position: absolute;
  left: -2.15em;
  padding: .5em;
  top: -7px;
}

/* line 56, custom/sidebar.scss */
.sidebar .logo .navbar-minimize i.fas.fa-ellipsis-v,
.sidebar .logo .navbar-minimize i.fas.fa-sign-out-alt,
.sidebar .logo .navbar-minimize i.fas.fa-chevron-left {
  display: block;
}

/* line 62, custom/sidebar.scss */
.sidebar .logo .navbar-minimize i.fas.fa-ellipsis-h,
.sidebar .logo .navbar-minimize i.fas.fa-sign-in-alt,
.sidebar .logo .navbar-minimize i.fas.fa-chevron-right {
  display: none;
}

/* line 71, custom/sidebar.scss */
.sidebar-mini .sidebar .logo .navbar-minimize i.fas.fa-ellipsis-v,
.sidebar-mini .sidebar .logo .navbar-minimize i.fas.fa-sign-out-alt,
.sidebar-mini .sidebar .logo .navbar-minimize i.fas.fa-chevron-left {
  display: none;
}

/* line 77, custom/sidebar.scss */
.sidebar-mini .sidebar .logo .navbar-minimize i.fas.fa-ellipsis-h,
.sidebar-mini .sidebar .logo .navbar-minimize i.fas.fa-sign-in-alt,
.sidebar-mini .sidebar .logo .navbar-minimize i.fas.fa-chevron-right {
  display: block;
}

/* line 84, custom/sidebar.scss */
.sidebar .logo .navbar-minimize:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 0 17px 17px;
  border-color: transparent transparent transparent #000000;
  content: "";
  position: absolute;
  right: -2px;
  top: -10px;
}

/* line 99, custom/sidebar.scss */
.sidebar .nav {
  margin-bottom: 40px;
}

/* line 113, custom/sidebar.scss */
.sidebar #sidebar-bottom {
  padding: 0 0 10px 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: 258px;
  background: #000;
}

/* line 123, custom/sidebar.scss */
.sidebar #sidebar-bottom .sidebar-footer-line-item {
  text-align: left;
  padding-left: 28px;
  display: block;
}

/* line 130, custom/sidebar.scss */
.sidebar #sidebar-bottom .snapshot-version {
  padding-top: .5em;
}

/* line 133, custom/sidebar.scss */
.sidebar #sidebar-bottom .snapshot-version a {
  opacity: 1;
  color: #FFFFFF;
}

/* line 139, custom/sidebar.scss */
.sidebar #sidebar-bottom .snapshot-version .badge {
  color: #000;
}

/* line 146, custom/sidebar.scss */
.sidebar-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 158, custom/sidebar.scss */
body.modal-open .sidebar .sidebar-modal-backdrop {
  display: block;
  max-width: 260px;
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 166, custom/sidebar.scss */
body.modal-open.sidebar-mini .sidebar .sidebar-modal-backdrop {
  display: block;
  max-width: 80px;
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 177, custom/sidebar.scss */
.sidebar-mini:not(.nav-open) .sidebar a.home {
  background-image: none;
}

/* line 181, custom/sidebar.scss */
.sidebar-mini:not(.nav-open) .sidebar .appTitle {
  opacity: 0;
  display: none;
}

/* line 187, custom/sidebar.scss */
.sidebar-mini:not(.nav-open) .sidebar .snapshot-version {
  display: none;
}

/* line 195, custom/sidebar.scss */
.sidebar .subnav-open .caret {
  border-top: none;
  border-bottom: 4px dashed;
}

/* line 202, custom/sidebar.scss */
.sidebar-mini #sidebar-bottom {
  padding-bottom: 0;
}

/* line 1, custom/modals.scss */
.modal-dialog {
  z-index: 1040;
}

/* line 4, custom/modals.scss */
.modal-dialog .modal-footer {
  text-align: left;
}

/* line 8, custom/modals.scss */
.modal-dialog .modal-body .container {
  width: auto;
}

/* line 27, custom/modals.scss */
#execDiv #execDivContent {
  padding: 0 15px;
  margin-top: -30px;
}

/* line 30, custom/modals.scss */
#execDiv #execDivContent .panel-footer {
  margin: 0 -15px;
}

/* line 32, custom/modals.scss */
#execDiv #execDivContent .panel-footer .form-group {
  margin-right: 20px !important;
  margin-left: 0 !important;
}

/* line 35, custom/modals.scss */
#execDiv #execDivContent .panel-footer .form-group #execFormRunButton {
  margin-bottom: 0 !important;
}

/* line 15, custom/rows.scss */
.spacing {
  margin-top: 6px;
  margin-bottom: 6px;
}

/* line 20, custom/rows.scss */
.spacing-sm {
  margin-top: 4px;
  margin-bottom: 4px;
}

/* line 25, custom/rows.scss */
.spacing-lg {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 31, custom/rows.scss */
.row.row-space {
  margin-top: 6px;
  margin-bottom: 6px;
}

/* line 36, custom/rows.scss */
.row.row-space-sm {
  margin-top: 4px;
  margin-bottom: 4px;
}

/* line 41, custom/rows.scss */
.row.row-space-lg {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 45, custom/rows.scss */
.row.row-space-top {
  margin-top: 6px;
}

/* line 48, custom/rows.scss */
.row.row-space-bottom {
  margin-bottom: 6px;
}

/* line 1, custom/text.scss */
.text-truncated-to-first-character {
  display: block;
  visibility: hidden;
}

/* line 4, custom/text.scss */
.text-truncated-to-first-character:first-letter {
  visibility: visible;
}

/* line 9, custom/text.scss */
.text-header {
  text-transform: uppercase;
}

/* line 2, custom/forms.scss */
.radio .help-block {
  margin-left: 10px;
}

/* line 8, custom/forms.scss */
.text-form-label {
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 13, custom/buttons.scss */
.arrow-button {
  color: #66615b;
}

/* line 15, custom/buttons.scss */
.arrow-button:hover {
  color: #484541;
}

/* line 20, custom/buttons.scss */
.buttons .btn + .btn {
  margin-left: 1em;
}

/* line 3, custom/expand.scss */
.expandComponentHolder .expandComponentControl > .more-indicator-verbiage {
  display: inline-block;
}

/* line 6, custom/expand.scss */
.expandComponentHolder .expandComponentControl > .less-indicator-verbiage {
  display: none;
}

/* line 11, custom/expand.scss */
.expandComponentHolder.expanded > .more-indicator-verbiage {
  display: none;
}

/* line 14, custom/expand.scss */
.expandComponentHolder.expanded > .less-indicator-verbiage {
  display: inline-block;
}

/* line 22, custom/expand.scss */
details.more-info > summary > .less-indicator-verbiage {
  display: none;
}

/* line 26, custom/expand.scss */
details.more-info > summary .more-indicator-verbiage, details.more-info > summary .less-indicator-verbiage {
  cursor: pointer;
}

/* line 32, custom/expand.scss */
details.more-info[open] > summary > .more-indicator-verbiage {
  display: none;
}

/* line 36, custom/expand.scss */
details.more-info[open] > summary > .less-indicator-verbiage {
  display: inline-block;
}

/* line 41, custom/expand.scss */
details.more-info .more-info-content {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 0.5em;
}

/* line 2, custom/input-group.scss */
.multiple-control-input-group .input-group-addon-title {
  border-top: 1px solid #cfcfca;
  border-bottom: 1px solid #cfcfca;
  border-left: 1px solid #cfcfca;
  cursor: default;
  width: 100px;
}

/* line 10, custom/input-group.scss */
.multiple-control-input-group .input-group-addon + .input-group-btn > .btn {
  border-radius: 0;
}

/* line 13, custom/input-group.scss */
.multiple-control-input-group .input-group-addon + .input-group-btn + .input-group-addon {
  border-right: 0;
  border-left: 0;
}

/* line 3, custom/nodes-embed.scss */
.nodes-embed .embedded_node {
  display: inline-block;
  cursor: pointer;
}

/* line 9, custom/nodes-embed.scss */
.node_unselected {
  color: red;
  text-decoration: line-through;
}

/* line 14, custom/nodes-embed.scss */
.node_select_checkbox {
  display: inline-block;
  margin-right: 10px;
}

/* line 20, custom/nodes-embed.scss */
.node-details-simple .subattrs td {
  background: #f8f8f8;
}

/** node detail */
/* line 29, custom/nodes-embed.scss */
.nodedetail tr td.key {
  width: 200px;
  vertical-align: top;
}

/* line 33, custom/nodes-embed.scss */
.nodedetail tr td.key.namespace {
  padding-right: 20px;
}

/* line 38, custom/nodes-embed.scss */
.nodedetail .key {
  text-align: right;
  font-weight: bold;
  color: #555;
}

/* line 44, custom/nodes-embed.scss */
.nodedetail tr .value {
  vertical-align: top;
  max-width: 800px;
}

/* line 49, custom/nodes-embed.scss */
.nodedetail.detailpopup {
  max-height: 500px;
  max-width: 600px;
  overflow-y: auto;
}

/* line 56, custom/nodes-embed.scss */
.nodedetail.embed tr .value {
  max-width: 400px;
}

/* line 63, custom/nodes-embed.scss */
.node_entry .hostname,
.node_entry .nodedesc,
.node_entry .nodeident,
.node_entry .nodetags,
.node_entry .username {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

/* line 73, custom/nodes-embed.scss */
.node_entry .nodetags {
  max-width: 20em;
}

/* line 76, custom/nodes-embed.scss */
.node_entry .nodetags .label a {
  color: white;
}

/* line 83, custom/nodes-embed.scss */
.node_entry.server .nodedesc:before {
  color: #f66;
  content: " server ";
  padding-left: 18px;
}

/* line 89, custom/nodes-embed.scss */
.nodedetail.server .nodedesc:before {
  color: #f66;
  content: " server " "\2022" " ";
  padding-left: 18px;
}

/* line 3, custom/popover.scss */
.popover {
  z-index: 2000;
}

/* line 5, custom/popover.scss */
.popover.popover-wide {
  max-width: 500px;
  -webkit-box-shadow: 0px 0px 10px 1px #c2c2c2;
  -moz-box-shadow: 0px 0px 10px 1px #c2c2c2;
  box-shadow: 0px 0px 10px 1px #c2c2c2;
}

/* line 11, custom/table.scss */
.vue-tabs .nav-tabs-navigation,
.vue-tabs .tab-content {
  text-align: left;
}

/* line 17, custom/table.scss */
th.table-header {
  text-transform: uppercase;
  color: #cfcfca;
  padding: .5em;
}

/* line 2, custom/table-events.scss */
.table.events-table {
  table-layout: fixed;
}

/* line 5, custom/table-events.scss */
.table.events-table td.eventargs {
  width: auto;
  overflow: auto;
  text-overflow: ellipsis;
}

/* line 11, custom/table-events.scss */
.table.events-table td.eventicon {
  width: 24px;
}

/* line 15, custom/table-events.scss */
.table.events-table td.eventtitle {
  width: auto;
}

/* line 19, custom/table-events.scss */
.table.events-table td.eventtitle.adhoc {
  width: auto;
}

/* line 23, custom/table-events.scss */
.table.events-table td.date {
  width: 20%;
}

/* line 27, custom/table-events.scss */
.table.events-table td.user {
  width: 10%;
}

/* line 31, custom/table-events.scss */
.table.events-table td.nodecount {
  white-space: nowrap;
  text-align: right;
  width: 5%;
}

/* line 39, custom/table-events.scss */
.table.events-table.events-table-embed tr.adhoc td.eventtitle {
  width: auto;
}

/* line 43, custom/table-events.scss */
.table.events-table.events-table-embed tr.adhoc td.eventargs {
  width: 0;
}

/* line 48, custom/table-events.scss */
.table.events-table.events-table-embed td.user {
  width: 15%;
}

/* line 55, custom/table-events.scss */
.table.events-table td.eventtitle.adhoc {
  font-style: italic;
}

/*!
 * Copyright 2019 Rundeck, Inc. (http://rundeck.com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* line 19, custom/tabs.scss */
ul.nav.nav-tabs > li .tabs-sibling {
  float: left;
  position: relative;
  display: block;
  border: 1px solid transparent;
  margin-right: 5px;
  margin-left: 3px;
  padding: 10px 15px;
}

/* line 28, custom/tabs.scss */
ul.nav.nav-tabs > li .tabs-sibling label {
  margin-bottom: 0;
}

/* line 32, custom/tabs.scss */
ul.nav.nav-tabs > li .tabs-sibling.tabs-sibling-compact {
  padding: 0;
}

/* line 35, custom/tabs.scss */
ul.nav.nav-tabs > li .tabs-sibling.tabs-sibling-compact.form-inline .input-group .form-control {
  width: 400px;
}

/* line 4, custom/execution-output-table.scss */
table.execoutput {
  border-collapse: separate;
}

/* line 7, custom/execution-output-table.scss */
table.execoutput .stepnum.short:before {
  content: "•";
}

/* line 11, custom/execution-output-table.scss */
table.execoutput td.node {
  color: #898989;
  text-align: right;
  width: 6em;
  max-width: 20em;
  padding: 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 22, custom/execution-output-table.scss */
table.execoutput td.info {
  font-family: courier, mono;
}

/* line 26, custom/execution-output-table.scss */
table.execoutput tr.contextRow.expandable.closed {
  background: #eeeeee;
}

/* line 30, custom/execution-output-table.scss */
table.execoutput tr.contextRow.expandable.opened {
  background: #eeeeee;
}

/* line 35, custom/execution-output-table.scss */
table.execoutput tr.contextRow.down td {
  border-top: 1px solid #dddddd;
  border-bottom: 0;
}

/* line 42, custom/execution-output-table.scss */
table.execoutput tr.contextRow.closed .stepident {
  display: inline;
}

/* line 47, custom/execution-output-table.scss */
table.execoutput td.node.empty {
  color: #eee;
}

/* line 51, custom/execution-output-table.scss */
table.execoutput tr.node-new > td {
  border-top: 2px solid white;
}

/* line 61, custom/execution-output-table.scss */
table.execoutput tr.contextRow.expandable.closed:hover {
  background: #e3edfa;
}

/* line 65, custom/execution-output-table.scss */
table.execoutput tr.contextRow {
  color: #898989;
}

/* line 68, custom/execution-output-table.scss */
table.execoutput tr.contextRow td.icon {
  padding: 1px 3px;
}

/* line 72, custom/execution-output-table.scss */
table.execoutput tr.contextRow td {
  padding: 5px;
  vertical-align: middle;
}

/* line 77, custom/execution-output-table.scss */
table.execoutput tr.contextRow td.rowexpicon {
  width: 16px;
  margin: 0;
  padding: 4px;
  vertical-align: middle;
}

/* line 84, custom/execution-output-table.scss */
table.execoutput tr.contextRow span.contextInfo {
  color: #555;
}

/* line 88, custom/execution-output-table.scss */
table.execoutput tr.contextRow span.node {
  font-weight: bold;
}

/* line 93, custom/execution-output-table.scss */
table.execoutput td {
  border: 1px solid #eeeeee;
  vertical-align: baseline;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* line 101, custom/execution-output-table.scss */
table.execoutput td.node.empty:before {
  content: 'console';
}

/* line 105, custom/execution-output-table.scss */
table.execoutput tr.contextRow.console {
  background: #fff;
}

/* line 108, custom/execution-output-table.scss */
table.execoutput tr.contextRow.console td {
  color: #555;
}

/* line 113, custom/execution-output-table.scss */
table.execoutput .ctxcounter {
  margin-left: 10px;
  font-family: monospace;
}

/* line 121, custom/execution-output-table.scss */
table.execoutput td.data.datahtml a {
  text-decoration: underline;
  color: #898989;
}

/* line 126, custom/execution-output-table.scss */
table.execoutput td.data.datahtml code {
  font-family: "Lucida Console", courier, monospace;
}

/* line 132, custom/execution-output-table.scss */
table.execoutput tr.alternateRow td.info.time {
  color: #808080;
}

/* line 136, custom/execution-output-table.scss */
table.execoutput tr.alternateRow td.data {
  background: #f0f0f0;
}

/* line 142, custom/execution-output-table.scss */
table.execoutput tr.contextRow.up td {
  border-top: 0;
}

/* line 147, custom/execution-output-table.scss */
table.execoutput td.stepnum {
  padding: 0 0.5em;
  width: 5em;
  white-space: nowrap;
}

/* line 153, custom/execution-output-table.scss */
table.execoutput td.info.time {
  color: #898989;
  white-space: nowrap;
  width: 6em;
}

/* line 159, custom/execution-output-table.scss */
table.execoutput th {
  background: none;
  border: none;
}

/* line 164, custom/execution-output-table.scss */
table.execoutput td.datahtml {
  white-space: normal;
}

/* line 167, custom/execution-output-table.scss */
table.execoutput td.datahtml p {
  margin: 0;
}

/* line 171, custom/execution-output-table.scss */
table.execoutput td.datahtml p + p {
  margin: 1em 0 0;
}

/* line 176, custom/execution-output-table.scss */
table.execoutput td.data {
  border-left: 1px solid white;
  white-space: pre-wrap;
  font-family: "Lucida Console", courier, monospace;
  padding: 1px 3px;
  color: black;
}

/* line 185, custom/execution-output-table.scss */
table.execoutput.no-wrap td.data {
  white-space: pre;
}

/* line 190, custom/execution-output-table.scss */
table.execoutput td.time {
  padding: 0 3px;
  background-color: #eeeeee;
}

/* line 195, custom/execution-output-table.scss */
table.execoutput td.node,
table.execoutput td.stepnum {
  padding: 0 3px;
  background-color: #eeeeee;
}

/* line 201, custom/execution-output-table.scss */
table.execoutput td.data.log_debug,
table.execoutput td.data.log_verbose {
  color: #898989;
}

/* line 210, custom/execution-output-table.scss */
table.execoutput table.execoutput.collapse_node td.node {
  display: none;
}

/* line 215, custom/execution-output-table.scss */
table.execoutput td.data.log_error {
  color: #800;
}

/* line 219, custom/execution-output-table.scss */
table.execoutput td.data.log_warn {
  color: #a80;
}

/* line 224, custom/execution-output-table.scss */
table.execoutput table.execoutput.collapse_stepnum td.stepnum {
  display: none;
}

/* line 229, custom/execution-output-table.scss */
table.execoutput table.execoutput.collapse_time td.info,
table.execoutput table.execoutput.collapse_time td.time {
  display: none;
}

/* line 234, custom/execution-output-table.scss */
table.execoutput .ctxcounter.ERROR,
table.execoutput .ctxcounter.SEVERE {
  color: red;
}

/* line 239, custom/execution-output-table.scss */
table.execoutput.collapse_time td.info,
table.execoutput.collapse_time td.time {
  display: none;
}

/* line 244, custom/execution-output-table.scss */
table.execoutput.collapse_node td.node {
  display: none;
}

/* line 248, custom/execution-output-table.scss */
table.execoutput.collapse_stepnum td.stepnum {
  display: none;
}

/* line 3, custom/cards.scss */
.card.card-modified.card-grey-header .card-header {
  background-color: #e8e8e8;
  border-radius: 6px 6px 0 0;
  padding-bottom: 15px;
}

/* line 2, custom/cards-expandable.scss */
.card-expandable .card-header {
  padding-bottom: 20px;
}

/* line 7, custom/cards-expandable.scss */
.card-expandable.card-expandable-open .card-header {
  padding-bottom: 0;
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 3, custom/exec-status.scss */
.exec-status {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* line 7, custom/exec-status.scss */
.exec-status.icon {
  display: inline;
}

/* line 11, custom/exec-status.scss */
.exec-status.other, .exec-status[data-execstate=OTHER] {
  color: #F3BB45;
}

/* line 15, custom/exec-status.scss */
.exec-status.other.icon:before, .exec-status[data-execstate=OTHER].icon:before {
  content: "\f069";
}

/* line 21, custom/exec-status.scss */
.exec-status[data-execstate=OTHER][data-statusstring=incomplete] {
  color: orange;
}

/* line 24, custom/exec-status.scss */
.exec-status[data-execstate=OTHER][data-statusstring=incomplete].icon:before {
  content: "\f12a";
}

/* line 30, custom/exec-status.scss */
.exec-status.fail, .exec-status[data-execstate=FAILED] {
  color: #EB5E28;
}

/* line 34, custom/exec-status.scss */
.exec-status.fail.icon:before, .exec-status[data-execstate=FAILED].icon:before {
  content: "\f068";
}

/* line 40, custom/exec-status.scss */
.exec-status.running, .exec-status[data-execstate=RUNNING] {
  color: #68B3C8;
}

/* line 44, custom/exec-status.scss */
.exec-status.running.icon:before, .exec-status[data-execstate=RUNNING].icon:before {
  content: "\f144";
}

/* line 50, custom/exec-status.scss */
.exec-status.succeed, .exec-status[data-execstate=SUCCEEDED] {
  color: #7AC29A;
}

/* line 54, custom/exec-status.scss */
.exec-status.succeed.icon:before, .exec-status[data-execstate=SUCCEEDED].icon:before {
  content: "\f058";
}

/* line 60, custom/exec-status.scss */
.exec-status.aborted, .exec-status[data-execstate=ABORTED] {
  color: #E3E3E3;
}

/* line 64, custom/exec-status.scss */
.exec-status.aborted.icon:before, .exec-status[data-execstate=ABORTED].icon:before {
  content: "\f056";
}

/* line 70, custom/exec-status.scss */
.exec-status.timedout, .exec-status[data-execstate=TIMEDOUT] {
  color: #F3BB45;
}

/* line 74, custom/exec-status.scss */
.exec-status.timedout.icon:before, .exec-status[data-execstate=TIMEDOUT].icon:before {
  content: "\f017";
}

/* line 80, custom/exec-status.scss */
.exec-status.failedretry, .exec-status[data-execstate=FAILED-WITH-RETRY] {
  color: #F3BB45;
}

/* line 84, custom/exec-status.scss */
.exec-status.failedretry.icon:before, .exec-status[data-execstate=FAILED-WITH-RETRY].icon:before {
  content: "\f01e";
}

/* line 90, custom/exec-status.scss */
.exec-status.scheduled, .exec-status[data-execstate=SCHEDULED] {
  color: #68B3C8;
}

/* line 94, custom/exec-status.scss */
.exec-status.scheduled.icon:before, .exec-status[data-execstate=SCHEDULED].icon:before {
  content: "\f017";
}

/* line 101, custom/exec-status.scss */
.exec-status-text.custom-status {
  font-style: italic;
}

/* line 105, custom/exec-status.scss */
.exec-status-text.custom-status:before {
  content: '“';
}

/* line 109, custom/exec-status.scss */
.exec-status-text.custom-status:after {
  content: '”';
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("glyphicons-halflings-regular-f4769f9bdb7466be65088239c12046d1.eot");
  src: url("glyphicons-halflings-regular-f4769f9bdb7466be65088239c12046d1.eot?#iefix") format("embedded-opentype"), url("glyphicons-halflings-regular-448c34a56d699c29117adc64c43affeb.woff2") format("woff2"), url("glyphicons-halflings-regular-fa2772327f55d8198301fdb8bcfc8158.woff") format("woff"), url("glyphicons-halflings-regular-e18bbf611f2a2e43afc071aa2f4e1512.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

/* line 20, custom/_glyphicons.scss */
.glyphicon, .execstate.step[data-execstate=SUCCEEDED], .execstate.step[data-execstate=RUNNING], .execstate.step[data-execstate=RUNNING_HANDLER], .execstate.step[data-execstate=WAITING], .execstate.step[data-execstate=FAILED], .execstate.step[data-execstate='FAILED-WITH-RETRY'], .auto-caret-open, .accordion-toggle.collapsed .auto-caret,
.auto-caret, .accordion-toggle .auto-caret,
.accordion-toggle .auto-caret-left,
.auto-caret-container .auto-caret,
.auto-caret-container .auto-caret-left, .active > .auto-caret-left,
.active > .auto-caret, .active > * > .auto-caret-left,
.active > * > .auto-caret, .auto-caret-left {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 33, custom/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\002a";
}

/* line 34, custom/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\002b";
}

/* line 36, custom/_glyphicons.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 37, custom/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 38, custom/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 39, custom/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 40, custom/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 41, custom/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 42, custom/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 43, custom/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 44, custom/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 45, custom/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 46, custom/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 47, custom/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 48, custom/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 49, custom/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 50, custom/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 51, custom/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 52, custom/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 53, custom/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 54, custom/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 55, custom/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 56, custom/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 57, custom/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 58, custom/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 59, custom/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 60, custom/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 61, custom/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 62, custom/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 63, custom/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 64, custom/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 65, custom/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 66, custom/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 67, custom/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 68, custom/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 69, custom/_glyphicons.scss */
.glyphicon-repeat:before, .execstate.step[data-execstate='FAILED-WITH-RETRY']:before {
  content: "\e030";
}

/* line 70, custom/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 71, custom/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 72, custom/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 73, custom/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 74, custom/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 75, custom/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 76, custom/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 77, custom/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 78, custom/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 79, custom/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 80, custom/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 81, custom/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 82, custom/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 83, custom/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 84, custom/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 85, custom/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 86, custom/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 87, custom/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 88, custom/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 89, custom/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 90, custom/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 91, custom/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 92, custom/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 93, custom/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 94, custom/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 95, custom/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 96, custom/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 97, custom/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 98, custom/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 99, custom/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 100, custom/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 101, custom/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 102, custom/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 103, custom/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 104, custom/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 105, custom/_glyphicons.scss */
.glyphicon-check:before, .execstate.step[data-execstate=SUCCEEDED]:before {
  content: "\e067";
}

/* line 106, custom/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 107, custom/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 108, custom/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 109, custom/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 110, custom/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 111, custom/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 112, custom/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 113, custom/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 114, custom/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 115, custom/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 116, custom/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 117, custom/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 118, custom/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 119, custom/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 120, custom/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 121, custom/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 122, custom/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 123, custom/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 124, custom/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 125, custom/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 126, custom/_glyphicons.scss */
.glyphicon-remove-circle:before, .execstate.step[data-execstate=FAILED]:before {
  content: "\e088";
}

/* line 127, custom/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 128, custom/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 129, custom/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 130, custom/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 131, custom/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 132, custom/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 133, custom/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 134, custom/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 135, custom/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 136, custom/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 137, custom/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 138, custom/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 139, custom/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 140, custom/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 141, custom/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 142, custom/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 143, custom/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 144, custom/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 145, custom/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 146, custom/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 147, custom/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 148, custom/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 149, custom/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 150, custom/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 151, custom/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 152, custom/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 153, custom/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 154, custom/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 155, custom/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 156, custom/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 157, custom/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 158, custom/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 159, custom/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 160, custom/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 161, custom/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 162, custom/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 163, custom/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 164, custom/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 165, custom/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 166, custom/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 167, custom/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 168, custom/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 169, custom/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 170, custom/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 171, custom/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 172, custom/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 173, custom/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 174, custom/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 175, custom/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 176, custom/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 177, custom/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 178, custom/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 179, custom/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 180, custom/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 181, custom/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 182, custom/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 183, custom/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 184, custom/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 185, custom/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 186, custom/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 187, custom/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 188, custom/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 189, custom/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 190, custom/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 191, custom/_glyphicons.scss */
.glyphicon-unchecked:before, .execstate.step[data-execstate=RUNNING]:before, .execstate.step[data-execstate=RUNNING_HANDLER]:before, .execstate.step[data-execstate=WAITING]:before {
  content: "\e157";
}

/* line 192, custom/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 193, custom/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 194, custom/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 195, custom/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 196, custom/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 197, custom/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 198, custom/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 199, custom/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 200, custom/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 201, custom/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 202, custom/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 203, custom/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 204, custom/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 205, custom/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 206, custom/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 207, custom/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 208, custom/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 209, custom/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 210, custom/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 211, custom/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 212, custom/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 213, custom/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 214, custom/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 215, custom/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 216, custom/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 217, custom/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 218, custom/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 219, custom/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 220, custom/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 221, custom/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 222, custom/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 223, custom/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 224, custom/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 225, custom/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 226, custom/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 227, custom/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 228, custom/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 229, custom/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 230, custom/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 231, custom/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 232, custom/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 233, custom/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 234, custom/_glyphicons.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 235, custom/_glyphicons.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 236, custom/_glyphicons.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 237, custom/_glyphicons.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 238, custom/_glyphicons.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 239, custom/_glyphicons.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 248, custom/_glyphicons.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 249, custom/_glyphicons.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 250, custom/_glyphicons.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 251, custom/_glyphicons.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 252, custom/_glyphicons.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 253, custom/_glyphicons.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 254, custom/_glyphicons.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 255, custom/_glyphicons.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 256, custom/_glyphicons.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 257, custom/_glyphicons.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 258, custom/_glyphicons.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 259, custom/_glyphicons.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 260, custom/_glyphicons.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 261, custom/_glyphicons.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 262, custom/_glyphicons.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 263, custom/_glyphicons.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 264, custom/_glyphicons.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 265, custom/_glyphicons.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 266, custom/_glyphicons.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 267, custom/_glyphicons.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 268, custom/_glyphicons.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 269, custom/_glyphicons.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 270, custom/_glyphicons.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 271, custom/_glyphicons.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 272, custom/_glyphicons.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 273, custom/_glyphicons.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 274, custom/_glyphicons.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 275, custom/_glyphicons.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 276, custom/_glyphicons.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 277, custom/_glyphicons.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 278, custom/_glyphicons.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 279, custom/_glyphicons.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 280, custom/_glyphicons.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 281, custom/_glyphicons.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 282, custom/_glyphicons.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 283, custom/_glyphicons.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 284, custom/_glyphicons.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 285, custom/_glyphicons.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 286, custom/_glyphicons.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 287, custom/_glyphicons.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 288, custom/_glyphicons.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 289, custom/_glyphicons.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 290, custom/_glyphicons.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 291, custom/_glyphicons.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 292, custom/_glyphicons.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 293, custom/_glyphicons.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 294, custom/_glyphicons.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 295, custom/_glyphicons.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 296, custom/_glyphicons.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 297, custom/_glyphicons.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 298, custom/_glyphicons.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 299, custom/_glyphicons.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 300, custom/_glyphicons.scss */
.glyphicon-menu-left:before, .auto-caret-left:before {
  content: "\e257";
}

/* line 301, custom/_glyphicons.scss */
.glyphicon-menu-right:before, .accordion-toggle.collapsed .auto-caret:before,
.auto-caret:before {
  content: "\e258";
}

/* line 302, custom/_glyphicons.scss */
.glyphicon-menu-down:before, .auto-caret-open:before, .accordion-toggle .auto-caret:before,
.accordion-toggle .auto-caret-left:before,
.auto-caret-container .auto-caret:before,
.auto-caret-container .auto-caret-left:before, .active > .auto-caret-left:before,
.active > .auto-caret:before, .active > * > .auto-caret-left:before,
.active > * > .auto-caret:before {
  content: "\e259";
}

/* line 303, custom/_glyphicons.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 5, custom/exec-state.scss */
.execstate[data-execstate=RETRY] {
  color: #68B3C8;
}

/* line 9, custom/exec-state.scss */
.execstate[data-execstate=FAILED-WITH-RETRY], .execstate[data-execstate=NODE_MIXED], .execstate[data-execstate=TIMEDOUT] {
  color: orange;
}

/* line 15, custom/exec-state.scss */
.execstate[data-execstate=ABORTED] {
  color: #cfcfca;
}

/* line 19, custom/exec-state.scss */
.execstate[data-execstate=SUCCEEDED] {
  color: #9A9A9A;
}

/* line 23, custom/exec-state.scss */
.execstate[data-execstate=NODE_PARTIAL_SUCCEEDED] {
  color: #9A9A9A;
}

/* line 27, custom/exec-state.scss */
.execstate[data-execstate=RUNNING],
.execstate .execstate[data-execstate=RUNNING_HANDLER] {
  color: #68B3C8;
}

/* line 33, custom/exec-state.scss */
.execstate[data-execstate=SCHEDULED] {
  color: #68B3C8;
}

/* line 38, custom/exec-state.scss */
.execstate[data-execstate=RUNNING_HANDLER] {
  border-bottom: 2px dotted orange;
}

/* line 42, custom/exec-state.scss */
.execstate[data-execstate=FAILED] {
  color: red;
}

/* line 46, custom/exec-state.scss */
.execstate[data-execstate=NOT_STARTED], .execstate[data-execstate=WAITING] {
  color: #9A9A9A;
}

/* line 51, custom/exec-state.scss */
.execstate[data-execstate=PASS] {
  color: #cfcfca;
}

/* line 55, custom/exec-state.scss */
.execstate.isnode[data-execstate] {
  color: inherit;
}

/* line 85, custom/exec-state.scss */
.execstate.execstatedisplay:after {
  font-weight: 900;
}

/* line 88, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=RUNNING]:after, .execstate.execstatedisplay[data-execstate=RUNNING_HANDLER]:after {
  content: 'Running';
}

/* line 93, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=NODE_MIXED]:after {
  content: 'Mixed';
}

/* line 97, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=SUCCEEDED]:after {
  content: 'OK';
}

/* line 101, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=OTHER][data-statusstring=incomplete]:after {
  content: 'Incomplete';
  color: orange;
}

/* line 106, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=NODE_PARTIAL_SUCCEEDED]:after {
  content: 'Partial';
}

/* line 110, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=FAILED]:after {
  content: 'Failed';
}

/* line 114, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=FAILED-WITH-RETRY]:after {
  content: 'Failed';
}

/* line 118, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=ABORTED]:after {
  content: 'Killed';
}

/* line 122, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=TIMEDOUT]:after {
  content: 'Timed Out';
}

/* line 126, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=WAITING]:after {
  content: 'Waiting';
}

/* line 130, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=WAITING][data-next=true]:after {
  content: 'Next Up';
}

/* line 134, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=NOT_STARTED]:after {
  content: 'Not Started';
}

/* line 139, custom/exec-state.scss */
.execstate.execstatedisplay.overall[data-execstate=SUCCEEDED]:after {
  content: 'Succeeded';
  color: #7AC29A;
}

/* line 145, custom/exec-state.scss */
.execstate.execstatedisplay[data-execstate=SCHEDULED]:after {
  content: 'Scheduled';
}

/** Process Flow view styles **/
/* line 5, custom/process-flow.scss */
div.pflowlist ol {
  padding-left: 0;
}

/* line 7, custom/process-flow.scss */
div.pflowlist ol li.draggableitem.droppableitem {
  border: 1px solid #cfcfca;
  padding: 10px !important;
  margin-bottom: 10px;
  border-radius: 5px;
}

/* line 16, custom/process-flow.scss */
div.pflowlist.edit ol.flowlist li .wfitem {
  border: 1px solid transparent;
}

/* line 18, custom/process-flow.scss */
div.pflowlist.edit ol.flowlist li .wfitem.autohilite.autoedit:hover {
  border: 1px dotted #68B3C8;
}

/* line 32, custom/process-flow.scss */
div.pflow.inactive {
  color: gray;
}

/* line 34, custom/process-flow.scss */
div.pflow.inactive a {
  color: gray;
}

/* line 39, custom/process-flow.scss */
div.pflow.warn, div.pflow.error {
  color: red;
  cursor: pointer;
}

/* line 43, custom/process-flow.scss */
div.pflow.missing, div.pflow.missingfail {
  color: gray;
  font-style: italic;
}

/* line 47, custom/process-flow.scss */
div.pflow div.error_msg {
  color: black;
  background: #eee;
}

/* line 52, custom/process-flow.scss */
div.pflow span.nodename {
  color: gray;
}

/* line 55, custom/process-flow.scss */
div.pflow span.item span.cmdname a {
  /*color:blue;*/
  font-weight: normal;
}

/* line 58, custom/process-flow.scss */
div.pflow span.item span.cmdname a:hover {
  text-decoration: underline;
}

/* line 63, custom/process-flow.scss */
div.pflow.inactive span.item span.cmdname a, div.pflow.missing span.item span.cmdname a, div.pflow.missingfail span.item span.cmdname a {
  color: gray;
}

/* line 66, custom/process-flow.scss */
div.pflow pre {
  margin: 0;
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 3, custom/workflow-editor.scss */
btn.autohilite:hover,
span.autohilite:hover {
  background: #68B3C8;
  background: #E3E3E3;
}

/* line 9, custom/workflow-editor.scss */
span.autoedit {
  padding: 3px;
  cursor: pointer;
}

/* line 14, custom/workflow-editor.scss */
span.autoedit:hover {
  padding: 2px;
  border: 1px dotted #68B3C8;
}

/**
   * single step or option edit box
   */
/* line 21, custom/workflow-editor.scss */
.optEditForm,
.wfitemEditForm {
  border: 2px solid #e5e5e5;
  border-bottom-radius: 5px;
  border-top-radius: 5px;
  padding: 10px;
}

/* line 28, custom/workflow-editor.scss */
.optEditForm.container,
.wfitemEditForm.container {
  background: white;
}

/* line 33, custom/workflow-editor.scss */
.optvalue {
  color: #7A9E9F;
}

/* line 36, custom/workflow-editor.scss */
.optvalue.optextra {
  border-bottom: 1px dashed #7A9E9F;
}

/* line 41, custom/workflow-editor.scss */
.optkey {
  color: #7A9E9F;
}

/* line 1, custom/workflow-step.scss */
.wfnodestate {
  border: 1px solid #dddddd;
  border-radius: 3px;
  padding: 5px 3px;
  margin-bottom: 5px;
  cursor: pointer;
}

/* line 9, custom/workflow-step.scss */
.wfnodestep {
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin: 4px 0 0 20px;
  padding: 5px 3px;
}

/* line 14, custom/workflow-step.scss */
.wfnodestep .closed {
  display: none;
}

/* line 23, custom/workflow-step.scss */
.wfnodestep.open .closed {
  display: block;
}

/* line 1, custom/autocomplete.scss */
.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
}

/* line 7, custom/autocomplete.scss */
.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
}

/* line 13, custom/autocomplete.scss */
.autocomplete-selected {
  background: #F0F0F0;
}

/* line 17, custom/autocomplete.scss */
.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}

/* line 22, custom/autocomplete.scss */
.autocomplete-group {
  padding: 2px 5px;
}

/* line 26, custom/autocomplete.scss */
.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}

/**
  Modified less conversion of some of markdeep's generated css.
*/
/*
  Copyright 2015-2016, Morgan McGuire
  All rights reserved.

  Redistribution and use in source and binary forms, with or without modification,
  are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this
  list of conditions and the following disclaimer in the documentation and/or other
  materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  THE POSSIBILITY OF SUCH DAMAGE.
*/
/* line 30, custom/markdeep.scss */
.md code, pre {
  font-family: Menlo, 'Lucida Console', monospace;
  font-size: 13.100000007873037px;
  line-height: 140%;
}

/* line 36, custom/markdeep.scss */
.md div.title {
  font-size: 26px;
  font-weight: 800;
  padding-bottom: 5px;
  line-height: 120%;
  text-align: center;
}

/* line 44, custom/markdeep.scss */
.md div.afterTitles {
  height: 10px;
}

/* line 48, custom/markdeep.scss */
.md div.subtitle {
  text-align: center;
}

/* line 52, custom/markdeep.scss */
.md .image {
  display: inline-block;
}

/* line 56, custom/markdeep.scss */
.md div.imagecaption, .md div.tablecaption, .md div.listingcaption {
  margin: 0.2em 0 10px 0;
  font-style: italic;
}

/* line 61, custom/markdeep.scss */
.md div.imagecaption {
  margin-bottom: 0px;
}

/* line 65, custom/markdeep.scss */
.md img {
  max-width: 100%;
}

/* line 69, custom/markdeep.scss */
.md div.tilde {
  margin: 20px 0 -10px 0;
  text-align: center;
}

/* line 74, custom/markdeep.scss */
.md blockquote.fancyquote {
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: left;
  line-height: 160%;
}

/* line 81, custom/markdeep.scss */
.md blockquote.fancyquote::before {
  content: "“";
  color: #DDD;
  font-family: Times New Roman;
  font-size: 45px;
  line-height: 0;
  margin-right: 6px;
  vertical-align: -0.3em;
}

/* line 91, custom/markdeep.scss */
.md span.fancyquote {
  font-size: 118%;
  color: #777;
  font-style: italic;
}

/* line 97, custom/markdeep.scss */
.md span.fancyquote::after {
  content: "”";
  font-style: normal;
  color: #DDD;
  font-family: Times New Roman;
  font-size: 45px;
  line-height: 0;
  margin-left: 6px;
  vertical-align: -0.3em;
}

/* line 108, custom/markdeep.scss */
.md blockquote.fancyquote .author {
  width: 100%;
  margin-top: 10px;
  display: inline-block;
  text-align: right;
}

/* line 115, custom/markdeep.scss */
.md small {
  font-size: 60%;
}

/* line 119, custom/markdeep.scss */
.md svg.diagram {
  display: block;
  font-family: Menlo, 'Lucida Console', monospace;
  font-size: 13.100000007873037px;
  text-align: center;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: #000;
  fill: #000;
}

/* line 130, custom/markdeep.scss */
.md svg.diagram .opendot {
  fill: #FFF;
}

/* line 134, custom/markdeep.scss */
.md svg.diagram text {
  stroke: none;
}

/* line 142, custom/markdeep.scss */
.md .tocHeader {
  padding-bottom: 3px;
  padding-top: 15px;
  border-bottom: 3px solid;
  border-top: none;
  font-size: 20px;
  font-weight: bold;
  clear: both;
}

/* line 152, custom/markdeep.scss */
.md table {
  border-collapse: collapse;
  line-height: 140%;
}

/* line 157, custom/markdeep.scss */
.md table.table {
  margin: auto;
}

/* line 162, custom/markdeep.scss */
.md table.table th {
  text-transform: capitalize;
  background: #f9f9f9;
  font-weight: bold;
}

/* line 169, custom/markdeep.scss */
.md table.calendar {
  width: 100%;
  margin: auto;
  font-size: 11px;
}

/* line 176, custom/markdeep.scss */
.md table.calendar th {
  font-size: 16px;
}

/* line 180, custom/markdeep.scss */
.md .today {
  background: #ECF8FA;
}

/* line 184, custom/markdeep.scss */
.md div.tablecaption {
  text-align: center;
}

/* line 189, custom/markdeep.scss */
.md table.table th {
  padding: 8px 15px 8px 15px;
}

/* line 195, custom/markdeep.scss */
.md pre.tilde {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 5px 0 5px 20px;
  margin-bottom: 30px;
  background: #FCFCFC;
}

/* line 203, custom/markdeep.scss */
.md a:link, .md a:visited {
  color: #38A;
  text-decoration: none;
}

/* line 208, custom/markdeep.scss */
.md a:hover {
  text-decoration: underline;
}

/* line 212, custom/markdeep.scss */
.md dt {
  font-weight: 700;
}

/* line 216, custom/markdeep.scss */
.md dd {
  padding-bottom: 18px;
}

/* line 220, custom/markdeep.scss */
.md code {
  white-space: pre;
}

/* line 224, custom/markdeep.scss */
.md .endnote {
  font-size: 13px;
  line-height: 15px;
  padding-left: 10px;
  text-indent: -10px;
}

/* line 231, custom/markdeep.scss */
.md .bib {
  padding-left: 80px;
  text-indent: -80px;
  text-align: left;
}

/* line 237, custom/markdeep.scss */
.md .markdeepFooter {
  font-size: 9px;
  text-align: right;
  padding-top: 80px;
  color: #999;
}

/* line 244, custom/markdeep.scss */
.md .mediumTOC {
  float: right;
  font-size: 12px;
  line-height: 15px;
  border-left: 1px solid #CCC;
  padding-left: 15px;
  margin: 15px 0px 15px 25px;
}

/* line 253, custom/markdeep.scss */
.md .mediumTOC .level1 {
  font-weight: 600;
}

/* line 257, custom/markdeep.scss */
.md .longTOC .level1 {
  font-weight: 600;
  display: block;
  padding-top: 12px;
  margin-bottom: -20px;
}

/* line 264, custom/markdeep.scss */
.md .shortTOC {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
  font-size: 14px;
}

/* line 273, custom/markdeep.scss */
.md .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: none;
}

/* line 282, custom/markdeep.scss */
.md .hljs-comment {
  color: #006a00;
}

/* line 286, custom/markdeep.scss */
.md .hljs-keyword {
  color: #02E;
}

/* line 290, custom/markdeep.scss */
.md .hljs-literal, .md .nginx .hljs-title {
  color: #aa0d91;
}

/* line 294, custom/markdeep.scss */
.md .method, .md .hljs-list .hljs-title, .md .hljs-tag .hljs-title, .md .setting .hljs-value, .md .hljs-winutils, .md .tex .hljs-command, .md .http .hljs-title, .md .hljs-request, .md .hljs-status, .md .hljs-name {
  color: #008;
}

/* line 298, custom/markdeep.scss */
.md .hljs-envvar, .md .tex .hljs-special {
  color: #660;
}

/* line 302, custom/markdeep.scss */
.md .hljs-string {
  color: #c41a16;
}

/* line 306, custom/markdeep.scss */
.md .hljs-tag .hljs-value, .md .hljs-cdata, .md .hljs-filter .hljs-argument, .md .hljs-attr_selector, .md .apache .hljs-cbracket, .md .hljs-date, .md .hljs-regexp {
  color: #080;
}

/* line 310, custom/markdeep.scss */
.md .hljs-sub .hljs-identifier, .md .hljs-pi, .md .hljs-tag, .md .hljs-tag .hljs-keyword, .md .hljs-decorator, .md .ini .hljs-title, .md .hljs-shebang, .md .hljs-prompt, .md .hljs-hexcolor, .md .hljs-rule .hljs-value, .md .hljs-symbol, .md .hljs-symbol .hljs-string, .md .hljs-number, .md .css .hljs-function, .md .hljs-function .hljs-title, .md .coffeescript .hljs-attribute {
  color: #A0C;
}

/* line 314, custom/markdeep.scss */
.md .hljs-function .hljs-title {
  font-weight: bold;
  color: #000;
}

/* line 319, custom/markdeep.scss */
.md .hljs-class .hljs-title, .md .smalltalk .hljs-class, .md .hljs-type, .md .hljs-typename, .md .hljs-tag .hljs-attribute, .md .hljs-doctype, .md .hljs-class .hljs-id, .md .hljs-built_in, .md .setting, .md .hljs-params, .md .clojure .hljs-attribute {
  color: #5c2699;
}

/* line 323, custom/markdeep.scss */
.md .hljs-variable {
  color: #3f6e74;
}

/* line 327, custom/markdeep.scss */
.md .css .hljs-tag, .md .hljs-rule .hljs-property, .md .hljs-pseudo, .md .hljs-subst {
  color: #000;
}

/* line 331, custom/markdeep.scss */
.md .css .hljs-class, .md .css .hljs-id {
  color: #9b703f;
}

/* line 335, custom/markdeep.scss */
.md .hljs-value .hljs-important {
  color: #ff7700;
  font-weight: bold;
}

/* line 340, custom/markdeep.scss */
.md .hljs-rule .hljs-keyword {
  color: #c5af75;
}

/* line 344, custom/markdeep.scss */
.md .hljs-annotation, .md .apache .hljs-sqbracket, .md .nginx .hljs-built_in {
  color: #9b859d;
}

/* line 348, custom/markdeep.scss */
.md .hljs-preprocessor, .md .hljs-preprocessor *, .md .hljs-pragma {
  color: #643820;
}

/* line 352, custom/markdeep.scss */
.md .tex .hljs-formula {
  background-color: #eee;
  font-style: italic;
}

/* line 357, custom/markdeep.scss */
.md .diff .hljs-header, .md .hljs-chunk {
  color: #808080;
  font-weight: bold;
}

/* line 362, custom/markdeep.scss */
.md .diff .hljs-change {
  background-color: #bccff9;
}

/* line 366, custom/markdeep.scss */
.md .hljs-addition {
  background-color: #baeeba;
}

/* line 370, custom/markdeep.scss */
.md .hljs-deletion {
  background-color: #ffc8bd;
}

/* line 374, custom/markdeep.scss */
.md .hljs-comment .hljs-doctag {
  font-weight: bold;
}

/* line 378, custom/markdeep.scss */
.md .method .hljs-id {
  color: #000;
}

/* line 1, custom/nav-tabs.scss */
.vue-tabs .nav-tabs-navigation {
  text-align: left;
  margin-bottom: 0px;
  border-color: #b7b7b7;
}

/* line 5, custom/nav-tabs.scss */
.vue-tabs .nav-tabs-navigation li.active a:before {
  border-bottom-color: #b7b7b7;
}

/* line 9, custom/nav-tabs.scss */
.vue-tabs .tab-content {
  text-align: left;
  padding: 1em 0;
}

/*      light colors - used for select dropdown         */
/*           Social buttons            */
/* line 5, custom/labels.scss */
.label.label-default a {
  color: #FFFFFF;
}

/* line 9, custom/labels.scss */
.label.label-white {
  background-color: white;
  color: black;
}

/* line 1, custom/progress-bars.scss */
.progress {
  height: 28px;
}

/* line 1, custom/popovers.scss */
.popover {
  max-width: 100%;
}

/* line 4, custom/popovers.scss */
.popover .popover-content {
  border: 1px solid #5dccff;
  border-radius: 6px;
}

/* line 1, custom/anchors.scss */
.autoclickable {
  cursor: pointer;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("glyphicons-halflings-regular-f4769f9bdb7466be65088239c12046d1.eot");
  src: url("glyphicons-halflings-regular-f4769f9bdb7466be65088239c12046d1.eot?#iefix") format("embedded-opentype"), url("glyphicons-halflings-regular-448c34a56d699c29117adc64c43affeb.woff2") format("woff2"), url("glyphicons-halflings-regular-fa2772327f55d8198301fdb8bcfc8158.woff") format("woff"), url("glyphicons-halflings-regular-e18bbf611f2a2e43afc071aa2f4e1512.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

/* line 20, custom/_glyphicons.scss */
.glyphicon, .execstate.step[data-execstate=SUCCEEDED], .execstate.step[data-execstate=RUNNING], .execstate.step[data-execstate=RUNNING_HANDLER], .execstate.step[data-execstate=WAITING], .execstate.step[data-execstate=FAILED], .execstate.step[data-execstate='FAILED-WITH-RETRY'], .auto-caret-open, .accordion-toggle.collapsed .auto-caret,
.auto-caret, .accordion-toggle .auto-caret,
.accordion-toggle .auto-caret-left,
.auto-caret-container .auto-caret,
.auto-caret-container .auto-caret-left, .active > .auto-caret-left,
.active > .auto-caret, .active > * > .auto-caret-left,
.active > * > .auto-caret, .auto-caret-left {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 33, custom/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\002a";
}

/* line 34, custom/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\002b";
}

/* line 36, custom/_glyphicons.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 37, custom/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 38, custom/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 39, custom/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 40, custom/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 41, custom/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 42, custom/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 43, custom/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 44, custom/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 45, custom/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 46, custom/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 47, custom/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 48, custom/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 49, custom/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 50, custom/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 51, custom/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 52, custom/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 53, custom/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 54, custom/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 55, custom/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 56, custom/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 57, custom/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 58, custom/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 59, custom/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 60, custom/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 61, custom/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 62, custom/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 63, custom/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 64, custom/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 65, custom/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 66, custom/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 67, custom/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 68, custom/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 69, custom/_glyphicons.scss */
.glyphicon-repeat:before, .execstate.step[data-execstate='FAILED-WITH-RETRY']:before {
  content: "\e030";
}

/* line 70, custom/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 71, custom/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 72, custom/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 73, custom/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 74, custom/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 75, custom/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 76, custom/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 77, custom/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 78, custom/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 79, custom/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 80, custom/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 81, custom/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 82, custom/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 83, custom/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 84, custom/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 85, custom/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 86, custom/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 87, custom/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 88, custom/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 89, custom/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 90, custom/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 91, custom/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 92, custom/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 93, custom/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 94, custom/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 95, custom/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 96, custom/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 97, custom/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 98, custom/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 99, custom/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 100, custom/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 101, custom/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 102, custom/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 103, custom/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 104, custom/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 105, custom/_glyphicons.scss */
.glyphicon-check:before, .execstate.step[data-execstate=SUCCEEDED]:before {
  content: "\e067";
}

/* line 106, custom/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 107, custom/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 108, custom/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 109, custom/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 110, custom/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 111, custom/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 112, custom/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 113, custom/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 114, custom/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 115, custom/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 116, custom/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 117, custom/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 118, custom/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 119, custom/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 120, custom/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 121, custom/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 122, custom/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 123, custom/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 124, custom/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 125, custom/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 126, custom/_glyphicons.scss */
.glyphicon-remove-circle:before, .execstate.step[data-execstate=FAILED]:before {
  content: "\e088";
}

/* line 127, custom/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 128, custom/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 129, custom/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 130, custom/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 131, custom/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 132, custom/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 133, custom/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 134, custom/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 135, custom/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 136, custom/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 137, custom/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 138, custom/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 139, custom/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 140, custom/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 141, custom/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 142, custom/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 143, custom/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 144, custom/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 145, custom/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 146, custom/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 147, custom/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 148, custom/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 149, custom/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 150, custom/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 151, custom/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 152, custom/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 153, custom/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 154, custom/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 155, custom/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 156, custom/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 157, custom/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 158, custom/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 159, custom/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 160, custom/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 161, custom/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 162, custom/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 163, custom/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 164, custom/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 165, custom/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 166, custom/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 167, custom/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 168, custom/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 169, custom/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 170, custom/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 171, custom/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 172, custom/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 173, custom/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 174, custom/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 175, custom/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 176, custom/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 177, custom/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 178, custom/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 179, custom/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 180, custom/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 181, custom/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 182, custom/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 183, custom/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 184, custom/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 185, custom/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 186, custom/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 187, custom/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 188, custom/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 189, custom/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 190, custom/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 191, custom/_glyphicons.scss */
.glyphicon-unchecked:before, .execstate.step[data-execstate=RUNNING]:before, .execstate.step[data-execstate=RUNNING_HANDLER]:before, .execstate.step[data-execstate=WAITING]:before {
  content: "\e157";
}

/* line 192, custom/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 193, custom/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 194, custom/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 195, custom/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 196, custom/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 197, custom/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 198, custom/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 199, custom/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 200, custom/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 201, custom/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 202, custom/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 203, custom/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 204, custom/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 205, custom/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 206, custom/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 207, custom/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 208, custom/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 209, custom/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 210, custom/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 211, custom/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 212, custom/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 213, custom/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 214, custom/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 215, custom/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 216, custom/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 217, custom/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 218, custom/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 219, custom/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 220, custom/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 221, custom/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 222, custom/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 223, custom/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 224, custom/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 225, custom/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 226, custom/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 227, custom/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 228, custom/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 229, custom/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 230, custom/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 231, custom/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 232, custom/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 233, custom/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 234, custom/_glyphicons.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 235, custom/_glyphicons.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 236, custom/_glyphicons.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 237, custom/_glyphicons.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 238, custom/_glyphicons.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 239, custom/_glyphicons.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 248, custom/_glyphicons.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 249, custom/_glyphicons.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 250, custom/_glyphicons.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 251, custom/_glyphicons.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 252, custom/_glyphicons.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 253, custom/_glyphicons.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 254, custom/_glyphicons.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 255, custom/_glyphicons.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 256, custom/_glyphicons.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 257, custom/_glyphicons.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 258, custom/_glyphicons.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 259, custom/_glyphicons.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 260, custom/_glyphicons.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 261, custom/_glyphicons.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 262, custom/_glyphicons.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 263, custom/_glyphicons.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 264, custom/_glyphicons.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 265, custom/_glyphicons.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 266, custom/_glyphicons.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 267, custom/_glyphicons.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 268, custom/_glyphicons.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 269, custom/_glyphicons.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 270, custom/_glyphicons.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 271, custom/_glyphicons.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 272, custom/_glyphicons.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 273, custom/_glyphicons.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 274, custom/_glyphicons.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 275, custom/_glyphicons.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 276, custom/_glyphicons.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 277, custom/_glyphicons.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 278, custom/_glyphicons.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 279, custom/_glyphicons.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 280, custom/_glyphicons.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 281, custom/_glyphicons.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 282, custom/_glyphicons.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 283, custom/_glyphicons.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 284, custom/_glyphicons.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 285, custom/_glyphicons.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 286, custom/_glyphicons.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 287, custom/_glyphicons.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 288, custom/_glyphicons.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 289, custom/_glyphicons.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 290, custom/_glyphicons.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 291, custom/_glyphicons.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 292, custom/_glyphicons.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 293, custom/_glyphicons.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 294, custom/_glyphicons.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 295, custom/_glyphicons.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 296, custom/_glyphicons.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 297, custom/_glyphicons.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 298, custom/_glyphicons.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 299, custom/_glyphicons.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 300, custom/_glyphicons.scss */
.glyphicon-menu-left:before, .auto-caret-left:before {
  content: "\e257";
}

/* line 301, custom/_glyphicons.scss */
.glyphicon-menu-right:before, .accordion-toggle.collapsed .auto-caret:before,
.auto-caret:before {
  content: "\e258";
}

/* line 302, custom/_glyphicons.scss */
.glyphicon-menu-down:before, .auto-caret-open:before, .accordion-toggle .auto-caret:before,
.accordion-toggle .auto-caret-left:before,
.auto-caret-container .auto-caret:before,
.auto-caret-container .auto-caret-left:before, .active > .auto-caret-left:before,
.active > .auto-caret:before, .active > * > .auto-caret-left:before,
.active > * > .auto-caret:before {
  content: "\e259";
}

/* line 303, custom/_glyphicons.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 1, custom/loading-spinner.scss */
img.loading-spinner {
  height: 24px !important;
  width: 24px !important;
}

/* line 1, custom/script-content.scss */
.scriptContent {
  font-family: courier, monospace;
}

/* line 7, custom/script-content.scss */
.scriptContent.expanded {
  max-width: none;
  max-height: none;
  overflow: auto;
  white-space: pre;
}

/** plugin configuration styles */
/* line 6, custom/plugin-config.scss */
.configpair {
  display: block;
  word-wrap: break-word;
}

/* line 2, custom/ace-editor.scss */
.ace_text.ace_editor .ace_gutter {
  z-index: 0;
}

/* line 5, pages/login.scss */
#fourohfour .logo,
#loginpage .logo {
  text-align: center;
}

/* line 8, pages/login.scss */
#fourohfour .logo a,
#loginpage .logo a {
  font-family: 'Futura';
  text-transform: uppercase;
  color: #000000;
  padding: 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}

/* line 20, pages/login.scss */
#fourohfour .alert.alert-danger,
#loginpage .alert.alert-danger {
  background-color: #ca4d3a;
  color: #ffffff;
}

/* line 25, pages/login.scss */
#fourohfour .footer,
#fourohfour .footer .copyright,
#loginpage .footer,
#loginpage .footer .copyright {
  color: #d5d5d5 !important;
}

/* line 29, pages/login.scss */
#fourohfour .footer a:not(.btn),
#fourohfour .footer .copyright a:not(.btn),
#loginpage .footer a:not(.btn),
#loginpage .footer .copyright a:not(.btn) {
  text-decoration: underline;
}

/* line 2, pages/page_storage.scss */
#page_storage .btn.disabled, #page_storage .btn.disabled:hover, #page_storage .btn.disabled:focus {
  color: #66615B;
}

/* line 3, pages/nodes.scss */
#nodesContent #schedJobNodeFilter {
  border-top: 1px solid #cfcfca;
  border-bottom: 1px solid #cfcfca;
}

/* line 8, pages/nodes.scss */
#nodesContent .column-title {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 12, pages/nodes.scss */
#nodesContent #nodes_tags {
  margin-bottom: 1em;
}

/* line 15, pages/jobs.scss */
.job-display-tree .sub_group {
  padding-left: 15px;
}

/* line 19, pages/jobs.scss */
.job-display-tree .sub_group > .list-group > .jobslist > .list-group-item {
  padding-left: 35px;
}

/* line 23, pages/jobs.scss */
.job-display-tree .sub_group .expandComponentHolder {
  margin-top: 0;
}

/* line 27, pages/jobs.scss */
.job-display-tree .sub_group .panel {
  background-color: white;
  border-radius: 0;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

/* line 34, pages/jobs.scss */
.job-display-tree .sub_group .panel.panel-default, .job-display-tree .sub_group .panel .panel-heading {
  border: none;
}

/* line 37, pages/jobs.scss */
.job-display-tree .sub_group .panel .panel-heading {
  background-color: white;
  border-left: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-bottom-left-radius: 3px;
}

/* line 46, pages/jobs.scss */
#page_job_edit {
  /** drag and drop for workflow editor */
  /*** ***/
  /** option controls and view layout **/
  /*** options edit form **/
  /*** END Options */
  /** add step styles */
  /**
  job edit form table
   */
  /**
  Ace editor
  */
}

/* line 47, pages/jobs.scss */
#page_job_edit i {
  top: 2px;
}

/* line 50, pages/jobs.scss */
#page_job_edit textarea.code {
  font-family: Courier,monospace;
  font-size: 100%;
}

/* line 55, pages/jobs.scss */
#page_job_edit .dragdropfinal.ready {
  padding: 2px;
  margin-top: 3px;
  display: block;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* line 63, pages/jobs.scss */
#page_job_edit .draggableitem {
  padding: 0;
}

/* line 67, pages/jobs.scss */
#page_job_edit .droppableitem.hoverActiveAll {
  border: 3px solid rgba(0, 0, 255, 0.53);
}

/* line 71, pages/jobs.scss */
#page_job_edit .droppableitem.hoverActiveUp {
  border-top: 3px solid rgba(0, 0, 255, 0.53);
}

/* line 75, pages/jobs.scss */
#page_job_edit .droppableitem.hoverActiveDown {
  border-bottom: 3px solid rgba(0, 0, 255, 0.53);
}

/* line 79, pages/jobs.scss */
#page_job_edit .dragdropfinal {
  height: 25px;
  background: #ddd;
}

/* line 86, pages/jobs.scss */
#page_job_edit div.wfctrlholder {
  position: relative;
  padding-right: 170px;
}

/* line 90, pages/jobs.scss */
#page_job_edit .wfitem {
  display: block;
  padding: 5px;
}

/* line 94, pages/jobs.scss */
#page_job_edit .wfitemcontrols {
  margin-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
  text-align: right;
}

/* line 102, pages/jobs.scss */
#page_job_edit .wfhandleritem {
  list-style: none;
  padding: 10px 0 0;
}

/* line 106, pages/jobs.scss */
#page_job_edit .controls.autohide {
  visibility: hidden;
}

/* line 109, pages/jobs.scss */
#page_job_edit li:hover .controls.autohide {
  visibility: visible;
}

/* line 114, pages/jobs.scss */
#page_job_edit div.optctrlholder {
  position: relative;
  padding-right: 40px;
}

/* line 129, pages/jobs.scss */
#page_job_edit .optdetail {
  /*float:left;*/
  width: 540px;
  overflow: hidden;
  white-space: nowrap;
  height: 16px;
  line-height: 16px;
}

/* line 137, pages/jobs.scss */
#page_job_edit .enforceSet {
  /*position:absolute;*/
  /*right: 45px;*/
  display: inline-block;
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  height: 16px;
  line-height: 16px;
}

/* line 147, pages/jobs.scss */
#page_job_edit .enforceSet span.any, #page_job_edit .opt.item .enforceSet span.enforced, #page_job_edit .opt.item .enforceSet span.regex {
  text-align: right;
}

/* line 150, pages/jobs.scss */
#page_job_edit .valuesSet {
  /*position:absolute;*/
  /*right: 150px;*/
  display: inline-block;
  width: 60px;
  overflow: hidden;
  white-space: nowrap;
  height: 16px;
  line-height: 16px;
}

/* line 160, pages/jobs.scss */
#page_job_edit span.truncatedtext {
  border-bottom: 1px dotted #aaa;
}

/* line 165, pages/jobs.scss */
#page_job_edit ul.options {
  margin: 0;
  padding: 0;
}

/* line 169, pages/jobs.scss */
#page_job_edit ul.options li {
  list-style: none;
  padding: 10px 4px;
}

/* line 173, pages/jobs.scss */
#page_job_edit div.inputset > div {
  clear: both;
}

/* line 176, pages/jobs.scss */
#page_job_edit label.left, #page_job_edit span.left {
  float: left;
  width: 10em;
  display: block;
}

/* line 181, pages/jobs.scss */
#page_job_edit div.inputset > div > .right {
  margin-left: 0.5em;
}

/* line 184, pages/jobs.scss */
#page_job_edit label.left.half, #page_job_edit span.left.half {
  width: 50%;
}

/* line 190, pages/jobs.scss */
#page_job_edit .nodefilterfield {
  margin-bottom: 5px;
}

/* line 193, pages/jobs.scss */
#page_job_edit .nodefilterfield label span.text {
  text-align: right;
  width: 10em;
  display: inline-block;
}

/* line 198, pages/jobs.scss */
#page_job_edit .filterkeyset {
  padding: 3px 0;
}

/* line 202, pages/jobs.scss */
#page_job_edit #matchednodes .allnodes {
  width: 600px;
}

/* line 207, pages/jobs.scss */
#page_job_edit .add_step_buttons ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
}

/* line 212, pages/jobs.scss */
#page_job_edit .add_step_buttons li.action {
  padding: 5px;
  margin: 0;
}

/* line 222, pages/jobs.scss */
#page_job_edit table.jobeditform > tbody > tr > td:first-child {
  width: 120px;
}

/* line 228, pages/jobs.scss */
#page_job_edit div.ace_text {
  border: 1px solid #aaa;
}

/* line 231, pages/jobs.scss */
#page_job_edit .pflowlist {
  margin-right: 10px;
}

/* line 1, custom/community-news-sidebar.scss */
#community-news-notification {
  position: relative;
  padding: .5em 0;
  border-bottom: 1px solid #3c3c3c;
}

/* line 6, custom/community-news-sidebar.scss */
#community-news-notification a {
  color: white;
}

