/*!
 * FullCalendar v3.9.0
 * Docs & License: https://fullcalendar.io/
 * (c) 2018 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left; }

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

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3; }

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3; }

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7; }

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer; }

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0; }

.fc-state-default {
  /* non-theme */
  border: 1px solid; }

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

/* icons in buttons */
.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/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6; }

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  transition: background-position 0.1s linear; }

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none; }

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.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...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px; }

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); }

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px; }

.fc-popover .fc-header .fc-title {
  margin: 0 2px; }

.fc-popover .fc-header .fc-close {
  cursor: pointer; }

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left; }

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right; }

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px; }

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

.fc-clear {
  clear: both; }

.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; }

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */ }

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */ }

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */ }

.fc th {
  text-align: center; }

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top; }

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */ }

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer; }

a[data-goto]:hover {
  text-decoration: underline; }

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.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; }

.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; }

.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)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative; }

.fc-row .fc-bg {
  z-index: 1; }

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

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent; }

.fc-row .fc-bgevent-skeleton {
  z-index: 2; }

.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).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */ }

.fc-row .fc-helper-skeleton {
  z-index: 5; }

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent; }

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0; }

.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
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch; }

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.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: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */ }

.fc-event,
.fc-event-dot {
  background-color: #3a87ad;
  /* default BACKGROUND color */ }

.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */ }

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

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed; }

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: .25; }

.fc-event .fc-content {
  position: relative;
  z-index: 2; }

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4; }

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none; }

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block; }

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px; }

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3); }

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0; }

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.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; }

.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 (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */ }

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */ }

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */ }

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px; }

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */ }

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */ }

/* 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.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px; }

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */ }

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: .25; }

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

.fc-day-grid-event .fc-time {
  font-weight: bold; }

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */ }

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */ }

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

a.fc-more:hover {
  text-decoration: underline; }

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none; }

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

.fc-more-popover {
  z-index: 2;
  width: 220px; }

.fc-more-popover .fc-event-container {
  padding: 10px; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red; }

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent; }

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd; }

.fc-unthemed .fc-popover {
  background-color: #fff; }

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666; }

.fc-unthemed td.fc-today {
  background: #fcf8e3; }

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: .3; }

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  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;
  -moz-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
*/
.fc-icon:after {
  position: relative; }

.fc-icon-left-single-arrow:after {
  content: "\2039";
  font-weight: bold;
  font-size: 200%;
  top: -7%; }

.fc-icon-right-single-arrow:after {
  content: "\203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%; }

.fc-icon-left-double-arrow:after {
  content: "\AB";
  font-size: 160%;
  top: -7%; }

.fc-icon-right-double-arrow:after {
  content: "\BB";
  font-size: 160%;
  top: -7%; }

.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%; }

.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%; }

.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%; }

.fc-icon-x:after {
  content: "\D7";
  font-size: 200%;
  top: 6%; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px; }

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
  background-image: none; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
  /* overpower jqui's styles on <a> tags. TODO: more DRY */
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
  /* undo ui-widget-header bold */
  font-weight: normal; }

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome bold */ }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
  background: none;
  /* see through to fc-bg */ }

.fc.fc-bootstrap3 a {
  text-decoration: none; }

.fc.fc-bootstrap3 a[data-goto]:hover {
  text-decoration: underline; }

.fc-bootstrap3 hr.fc-divider {
  border-color: inherit; }

.fc-bootstrap3 .fc-today.alert {
  border-radius: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none; }

.fc.fc-bootstrap4 a {
  text-decoration: none; }

.fc.fc-bootstrap4 a[data-goto]:hover {
  text-decoration: underline; }

.fc-bootstrap4 hr.fc-divider {
  border-color: inherit; }

.fc-bootstrap4 .fc-today.alert {
  border-radius: 0; }

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
  color: #fff; }

.fc-bootstrap4 .fc-popover.card {
  position: absolute; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-popover .card-body {
  padding: 0; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none; }

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center; }

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em; }

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em; }

.fc-toolbar .fc-left {
  float: left; }

.fc-toolbar .fc-right {
  float: right; }

.fc-toolbar .fc-center {
  display: inline-block; }

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

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

/* title text */
.fc-toolbar h2 {
  margin: 0; }

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative; }

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2; }

.fc-toolbar .fc-state-down {
  z-index: 3; }

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4; }

.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 */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  box-sizing: content-box; }

.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 */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */ }

.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 */
.fc-row.fc-rigid {
  overflow: hidden; }

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3; }

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px; }

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */ }

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right; }

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left; }

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0; }

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px; }

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080; }

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
  text-align: center; }

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em; }

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

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */ }

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  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)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap; }

.fc-ltr .fc-axis {
  text-align: right; }

.fc-rtl .fc-axis {
  text-align: left; }

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

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

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent; }

.fc-time-grid > .fc-bg {
  z-index: 1; }

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

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */ }

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0; }

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1; }

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2; }

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3; }

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4; }

.fc-time-grid .fc-now-indicator-line {
  z-index: 5; }

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6; }

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

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted; }

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.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 */ }

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */ }

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px; }

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

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */ }

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0; }

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.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; }

.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.
*/
.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */ }

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible; }

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */ }

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */ }

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px; }

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap; }

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

.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; }

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */ }

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

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

.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 (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .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; }

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "="; }

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0; }

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */ }

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent; }

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent; }

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px; }

/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl;
  /* unlike core views, leverage browser RTL */ }

.fc-list-view {
  border-width: 1px;
  border-style: solid; }

/* table resets */
.fc .fc-list-table {
  table-layout: auto;
  /* for shrinkwrapping cell content */ }

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px; }

.fc-list-table tr:first-child td {
  border-top-width: 0; }

/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px; }

.fc-list-heading td {
  font-weight: bold; }

.fc-ltr .fc-list-heading-main {
  float: left; }

.fc-ltr .fc-list-heading-alt {
  float: right; }

.fc-rtl .fc-list-heading-main {
  float: right; }

.fc-rtl .fc-list-heading-alt {
  float: left; }

/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer;
  /* whole row will be clickable */ }

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px; }

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0; }

.fc-rtl .fc-list-item-marker {
  padding-left: 0; }

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit; }

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline; }

/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table; }

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee; }
@import url(/assets/loading_screen-default-8deec039cc14b29cad5e0a04d20248e1df2a590d6009fa71b127b5a3999308ca.css);
@import url(/assets/loading_screen-double-bounce-0f220e2224c910335e175845cd0c4dec3de4e52fb3b35fbdc602bda3fca4330e.css);
@import url(/assets/loading_screen-rectangle-bounce-faf5424b26562043b8fe50fe00bdf76e2aad80a18c977a5ce781a6a0ddf18821.css);
@import url(/assets/loading_screen-wandering-cubes-a23afa96588e898983f1346b8770283601e06d1aad8df75342f253a5be690377.css);
@import url(/assets/loading_screen-grid-cube-3c3f89dada6a92ace1971d2293f580d3155bb32a7e5f0c5096b950ce014745b6.css);
@import url(/assets/loading_screen-dot-spinner-4a0cfdba14b7e1f09a34f63b9cf28bb783f59c0bcaa96438e4e803f1546fa3f6.css);

.loading_screen-spinner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(249,249,249);
}

.loading_screen-spinner > div {
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.animate-task-in {
  animation: fade-in 0.75s ease-out,
             slide-in 0.75s ease-out;
}

.animate-task-out {
  animation: fade-out 0.75s ease-out,
             slide-out 0.75s ease-out;
}

.animate-in-2 {
  animation: fade-in 0.75s ease-out,
}

.animate-out-2 {
  animation: fade-out 0.75s ease-out,
}

.animate-task-item-in {
  overflow: hidden;
  animation: slide-down 0.5s ease-out;
}

.animate-task-item-out {
  overflow: hidden;
  animation: slide-up 0.5s ease-out;
}

.animate-flash-increase {
  animation: flash-green 0.5s ease-in-out;
}

.animate-flash-decrease {
  animation: flash-red 0.5s ease-in-out;
}

@keyframes flash-green {
  from { background-color: #A7F3D0; }
  to { background-color: transparent; }
}

@keyframes flash-red {
  from { background-color: #FECACA; }
  to { background-color: transparent; }
}

/* "max-height: auto" unfortunately does not work here, so we set
   to a fixed height that is greater than the expected height. */
@keyframes slide-down {
  from { max-height: 0; }
  to { max-height: 3rem; }
}

@keyframes slide-up {
  from { max-height: 3rem; }
  to { max-height: 0; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slide-in {
  from { transform: translateX(4rem); }
  to { transform: translateX(0); }
}

@keyframes slide-out {
  from { transform: translateX(0); }
  to { transform: translateX(4rem); }
}
@charset "UTF-8";
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*

* require simple_discussion



*--- Hotwire


* require select2-bootstrap
* require select2-bootstrap-v3
*/
/* Select & Input */
/**
 * selectize.css (v0.12.6)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
@import url(//fonts.googleapis.com/css?family=Kanit:400,300&subset=thai,latin);
@import url(/assets/font-awesome/css/all.min-e25c7faaaac37ebcc991248d2ac2094c32bcd3d07381e32e02485debf684f421.css);
@import url(/assets/bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min-652b8cfe30eff6036e9c9060590d05b13d22cda0ba0570a17098cfcbb235c4b5.css);
/* line 17, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

/* line 25, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}

/* line 29, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* line 33, app/assets/stylesheets/selectize.scss */
.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

/* line 42, app/assets/stylesheets/selectize.scss */
.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

/* line 52, app/assets/stylesheets/selectize.scss */
.selectize-dropdown-header-close:hover {
  color: #000000;
}

/* line 55, app/assets/stylesheets/selectize.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  box-sizing: border-box;
}

/* line 63, app/assets/stylesheets/selectize.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

/* line 66, app/assets/stylesheets/selectize.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

/* line 69, app/assets/stylesheets/selectize.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

/* line 72, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

/* line 76, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}

/* line 100, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* line 103, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-remove_button .active[data-value] .remove {
  border-left-color: #cacaca;
}

/* line 106, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

/* line 109, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}

/* line 112, app/assets/stylesheets/selectize.scss */
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

/* line 118, app/assets/stylesheets/selectize.scss */
.selectize-control {
  position: relative;
}

/* line 121, app/assets/stylesheets/selectize.scss */
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

/* line 130, app/assets/stylesheets/selectize.scss */
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

/* line 136, app/assets/stylesheets/selectize.scss */
.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

/* line 153, app/assets/stylesheets/selectize.scss */
.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}

/* line 156, app/assets/stylesheets/selectize.scss */
.selectize-input.full {
  background-color: #fff;
}

/* line 159, app/assets/stylesheets/selectize.scss */
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

/* line 163, app/assets/stylesheets/selectize.scss */
.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* line 167, app/assets/stylesheets/selectize.scss */
.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

/* line 172, app/assets/stylesheets/selectize.scss */
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 179, app/assets/stylesheets/selectize.scss */
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}

/* line 187, app/assets/stylesheets/selectize.scss */
.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

/* line 192, app/assets/stylesheets/selectize.scss */
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}

/* line 198, app/assets/stylesheets/selectize.scss */
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  box-shadow: none !important;
}

/* line 213, app/assets/stylesheets/selectize.scss */
.selectize-input > input::-ms-clear {
  display: none;
}

/* line 216, app/assets/stylesheets/selectize.scss */
.selectize-input > input:focus {
  outline: none !important;
}

/* line 219, app/assets/stylesheets/selectize.scss */
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}

/* line 224, app/assets/stylesheets/selectize.scss */
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

/* line 234, app/assets/stylesheets/selectize.scss */
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

/* line 250, app/assets/stylesheets/selectize.scss */
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

/* line 254, app/assets/stylesheets/selectize.scss */
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

/* line 260, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

/* line 264, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] .option[data-selectable] {
  cursor: inherit;
  opacity: 0.5;
}

/* line 270, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .option[data-selectable] {
  opacity: 1;
}

/* line 273, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

/* line 276, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}

/* line 281, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

/* line 285, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .active.create {
  color: #495c68;
}

/* line 288, app/assets/stylesheets/selectize.scss */
.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

/* line 291, app/assets/stylesheets/selectize.scss */
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}

/* line 297, app/assets/stylesheets/selectize.scss */
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

/* line 301, app/assets/stylesheets/selectize.scss */
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

/* line 305, app/assets/stylesheets/selectize.scss */
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

/* line 318, app/assets/stylesheets/selectize.scss */
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

/* line 323, app/assets/stylesheets/selectize.scss */
.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

/* line 327, app/assets/stylesheets/selectize.scss */
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

/* line 330, app/assets/stylesheets/selectize.scss */
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

/**
 * selectize.bootstrap3.css (v0.12.6) - Bootstrap 3 Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
/* line 16, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

/* line 24, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}

/* line 28, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* line 32, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown-header {
  position: relative;
  padding: 3px 12px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 4px 4px 0 0;
}

/* line 41, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown-header-close {
  position: absolute;
  right: 12px;
  top: 50%;
  color: #333333;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

/* line 51, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown-header-close:hover {
  color: #000000;
}

/* line 54, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  box-sizing: border-box;
}

/* line 62, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

/* line 65, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

/* line 68, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

/* line 71, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

/* line 75, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 1px 0 0 0;
  border-left: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}

/* line 99, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* line 102, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-remove_button .active[data-value] .remove {
  border-left-color: rgba(0, 0, 0, 0);
}

/* line 105, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

/* line 108, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: rgba(77, 77, 77, 0);
}

/* line 111, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

/* line 117, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control {
  position: relative;
}

/* line 120, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #333333;
  font-family: inherit;
  font-size: inherit;
  line-height: 20px;
  -webkit-font-smoothing: inherit;
}

/* line 129, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

/* line 135, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input {
  border: 1px solid #a7cbd6;
  padding: 6px 12px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 4px;
}

/* line 152, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.multi .selectize-input.has-items {
  padding: 5px 12px 2px;
}

/* line 155, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.full {
  background-color: #fff;
}

/* line 158, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

/* line 162, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* line 166, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.dropdown-active {
  border-radius: 4px 4px 0 0;
}

/* line 171, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 178, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 1px 3px;
  background: #efefef;
  color: #333333;
  border: 0 solid rgba(0, 0, 0, 0);
}

/* line 186, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.multi .selectize-input > div.active {
  background: #428bca;
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
}

/* line 191, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #808080;
  background: #ffffff;
  border: 0 solid rgba(77, 77, 77, 0);
}

/* line 197, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  box-shadow: none !important;
}

/* line 212, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input > input::-ms-clear {
  display: none;
}

/* line 215, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input > input:focus {
  outline: none !important;
}

/* line 218, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}

/* line 223, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #ffffff;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

/* line 233, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
}

/* line 249, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

/* line 253, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(255, 237, 40, 0.4);
  border-radius: 1px;
}

/* line 259, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 3px 12px;
}

/* line 263, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] .option[data-selectable] {
  cursor: inherit;
  opacity: 0.5;
}

/* line 269, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .option[data-selectable] {
  opacity: 1;
}

/* line 272, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

/* line 275, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .optgroup-header {
  color: #777777;
  background: #fff;
  cursor: default;
}

/* line 280, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .active {
  background-color: #f5f5f5;
  color: #262626;
}

/* line 284, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .active.create {
  color: #262626;
}

/* line 287, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .create {
  color: rgba(51, 51, 51, 0.5);
}

/* line 290, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}

/* line 296, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

/* line 300, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

/* line 304, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #333333 transparent transparent transparent;
}

/* line 317, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #333333 transparent;
}

/* line 322, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.rtl.single .selectize-input:after {
  left: 17px;
  right: auto;
}

/* line 326, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

/* line 329, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fff;
}

/* line 333, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown,
.selectize-dropdown.form-control,
body .selectize-dropdown.bootstrap-tagsinput {
  height: auto;
  padding: 0;
  margin: 2px 0 0 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #a7cbd6;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

/* line 348, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .optgroup-header {
  font-size: 12px;
  line-height: 1.42857143;
}

/* line 352, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .optgroup:first-child:before {
  display: none;
}

/* line 355, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown .optgroup:before {
  content: ' ';
  display: block;
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  margin-left: -12px;
  margin-right: -12px;
}

/* line 365, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown-content {
  padding: 5px 0;
}

/* line 368, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-dropdown-header {
  padding: 6px 12px;
}

/* line 371, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input {
  min-height: 34px;
}

/* line 374, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.dropdown-active {
  border-radius: 4px;
}

/* line 379, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.dropdown-active::before {
  display: none;
}

/* line 382, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-input.focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 388, app/assets/stylesheets/selectize.bootstrap3.scss */
.has-error .selectize-input {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 393, app/assets/stylesheets/selectize.bootstrap3.scss */
.has-error .selectize-input:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

/* line 398, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.multi .selectize-input.has-items {
  padding-left: 9px;
  padding-right: 9px;
}

/* line 402, app/assets/stylesheets/selectize.bootstrap3.scss */
.selectize-control.multi .selectize-input > div {
  border-radius: 3px;
}

/* line 407, app/assets/stylesheets/selectize.bootstrap3.scss */
.form-control.selectize-control, body .selectize-control.bootstrap-tagsinput {
  padding: 0;
  height: auto;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* Override bootstrap variables */
/* Bootstrap */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 110, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 118, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 127, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 145, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 154, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 162, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 170, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 174, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 185, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 193, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 204, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 212, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0;
}

/* line 221, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 229, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 252, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 266, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 277, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 302, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 311, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 322, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 334, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 346, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 356, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/* line 367, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 376, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 387, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 396, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 405, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 416, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 421, app/assets/stylesheets/bootstrap/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 9, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  *,
*:before,
*:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /* line 18, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  a,
a:visited {
    text-decoration: underline;
  }
  /* line 23, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 27, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 33, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }
  /* line 38, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 44, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }
  /* line 48, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 53, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  img {
    max-width: 100% !important;
  }
  /* line 57, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 64, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
  /* line 72, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  .navbar {
    display: none;
  }
  /* line 77, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  .btn > .caret, div.ColVis .ColVis_Button > .caret,
.dropup > .btn > .caret,
div.ColVis .dropup > .ColVis_Button > .caret {
    border-top-color: #000 !important;
  }
  /* line 81, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  .label {
    border: 1px solid #000;
  }
  /* line 85, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 88, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 94, app/assets/stylesheets/bootstrap/bootstrap/_print.scss */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/../fonts/glyphicons-halflings-regular.eot);
  src: url(/../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(/../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(/../fonts/glyphicons-halflings-regular.woff) format("woff"), url(/../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(/../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon {
  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 37, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-asterisk:before {
  content: "\002a";
}

/* line 38, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-plus:before {
  content: "\002b";
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

/* line 41, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-minus:before {
  content: "\2212";
}

/* line 42, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-cloud:before {
  content: "\2601";
}

/* line 43, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-envelope:before {
  content: "\2709";
}

/* line 44, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-pencil:before {
  content: "\270f";
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-glass:before {
  content: "\e001";
}

/* line 46, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-music:before {
  content: "\e002";
}

/* line 47, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-search:before {
  content: "\e003";
}

/* line 48, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-heart:before {
  content: "\e005";
}

/* line 49, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-star:before {
  content: "\e006";
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-star-empty:before {
  content: "\e007";
}

/* line 51, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-user:before {
  content: "\e008";
}

/* line 52, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-film:before {
  content: "\e009";
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-th-large:before {
  content: "\e010";
}

/* line 54, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-th:before {
  content: "\e011";
}

/* line 55, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-th-list:before {
  content: "\e012";
}

/* line 56, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-ok:before {
  content: "\e013";
}

/* line 57, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-remove:before {
  content: "\e014";
}

/* line 58, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 59, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-off:before {
  content: "\e017";
}

/* line 61, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-signal:before {
  content: "\e018";
}

/* line 62, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-cog:before {
  content: "\e019";
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-trash:before {
  content: "\e020";
}

/* line 64, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-home:before {
  content: "\e021";
}

/* line 65, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-file:before {
  content: "\e022";
}

/* line 66, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-time:before {
  content: "\e023";
}

/* line 67, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-road:before {
  content: "\e024";
}

/* line 68, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-download-alt:before {
  content: "\e025";
}

/* line 69, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-download:before {
  content: "\e026";
}

/* line 70, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-upload:before {
  content: "\e027";
}

/* line 71, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-inbox:before {
  content: "\e028";
}

/* line 72, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-play-circle:before {
  content: "\e029";
}

/* line 73, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-repeat:before {
  content: "\e030";
}

/* line 74, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-refresh:before {
  content: "\e031";
}

/* line 75, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-list-alt:before {
  content: "\e032";
}

/* line 76, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-lock:before {
  content: "\e033";
}

/* line 77, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-flag:before {
  content: "\e034";
}

/* line 78, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-headphones:before {
  content: "\e035";
}

/* line 79, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-volume-off:before {
  content: "\e036";
}

/* line 80, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-volume-down:before {
  content: "\e037";
}

/* line 81, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-volume-up:before {
  content: "\e038";
}

/* line 82, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-qrcode:before {
  content: "\e039";
}

/* line 83, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-barcode:before {
  content: "\e040";
}

/* line 84, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tag:before {
  content: "\e041";
}

/* line 85, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tags:before {
  content: "\e042";
}

/* line 86, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-book:before {
  content: "\e043";
}

/* line 87, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-bookmark:before {
  content: "\e044";
}

/* line 88, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-print:before {
  content: "\e045";
}

/* line 89, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-camera:before {
  content: "\e046";
}

/* line 90, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-font:before {
  content: "\e047";
}

/* line 91, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-bold:before {
  content: "\e048";
}

/* line 92, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-italic:before {
  content: "\e049";
}

/* line 93, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-text-height:before {
  content: "\e050";
}

/* line 94, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-text-width:before {
  content: "\e051";
}

/* line 95, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-align-left:before {
  content: "\e052";
}

/* line 96, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-align-center:before {
  content: "\e053";
}

/* line 97, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-align-right:before {
  content: "\e054";
}

/* line 98, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-align-justify:before {
  content: "\e055";
}

/* line 99, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-list:before {
  content: "\e056";
}

/* line 100, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-indent-left:before {
  content: "\e057";
}

/* line 101, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-indent-right:before {
  content: "\e058";
}

/* line 102, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 103, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-picture:before {
  content: "\e060";
}

/* line 104, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-map-marker:before {
  content: "\e062";
}

/* line 105, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-adjust:before {
  content: "\e063";
}

/* line 106, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tint:before {
  content: "\e064";
}

/* line 107, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-edit:before {
  content: "\e065";
}

/* line 108, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-share:before {
  content: "\e066";
}

/* line 109, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-check:before {
  content: "\e067";
}

/* line 110, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-move:before {
  content: "\e068";
}

/* line 111, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-step-backward:before {
  content: "\e069";
}

/* line 112, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 113, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-backward:before {
  content: "\e071";
}

/* line 114, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-play:before {
  content: "\e072";
}

/* line 115, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-pause:before {
  content: "\e073";
}

/* line 116, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-stop:before {
  content: "\e074";
}

/* line 117, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-forward:before {
  content: "\e075";
}

/* line 118, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 119, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-step-forward:before {
  content: "\e077";
}

/* line 120, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-eject:before {
  content: "\e078";
}

/* line 121, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 122, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 123, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 124, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 125, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 126, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 127, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-question-sign:before {
  content: "\e085";
}

/* line 128, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-info-sign:before {
  content: "\e086";
}

/* line 129, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-screenshot:before {
  content: "\e087";
}

/* line 130, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 131, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 132, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 133, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 134, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 135, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 136, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 137, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-share-alt:before {
  content: "\e095";
}

/* line 138, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-resize-full:before {
  content: "\e096";
}

/* line 139, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-resize-small:before {
  content: "\e097";
}

/* line 140, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 141, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-gift:before {
  content: "\e102";
}

/* line 142, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-leaf:before {
  content: "\e103";
}

/* line 143, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-fire:before {
  content: "\e104";
}

/* line 144, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-eye-open:before {
  content: "\e105";
}

/* line 145, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-eye-close:before {
  content: "\e106";
}

/* line 146, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 147, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-plane:before {
  content: "\e108";
}

/* line 148, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-calendar:before {
  content: "\e109";
}

/* line 149, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-random:before {
  content: "\e110";
}

/* line 150, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-comment:before {
  content: "\e111";
}

/* line 151, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-magnet:before {
  content: "\e112";
}

/* line 152, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 153, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 154, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-retweet:before {
  content: "\e115";
}

/* line 155, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 156, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-folder-close:before {
  content: "\e117";
}

/* line 157, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-folder-open:before {
  content: "\e118";
}

/* line 158, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 159, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 160, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-hdd:before {
  content: "\e121";
}

/* line 161, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 162, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-bell:before {
  content: "\e123";
}

/* line 163, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-certificate:before {
  content: "\e124";
}

/* line 164, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 165, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 166, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-hand-right:before {
  content: "\e127";
}

/* line 167, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-hand-left:before {
  content: "\e128";
}

/* line 168, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-hand-up:before {
  content: "\e129";
}

/* line 169, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-hand-down:before {
  content: "\e130";
}

/* line 170, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 171, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 172, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 173, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 174, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-globe:before {
  content: "\e135";
}

/* line 175, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-wrench:before {
  content: "\e136";
}

/* line 176, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tasks:before {
  content: "\e137";
}

/* line 177, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-filter:before {
  content: "\e138";
}

/* line 178, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-briefcase:before {
  content: "\e139";
}

/* line 179, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 180, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-dashboard:before {
  content: "\e141";
}

/* line 181, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-paperclip:before {
  content: "\e142";
}

/* line 182, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 183, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-link:before {
  content: "\e144";
}

/* line 184, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-phone:before {
  content: "\e145";
}

/* line 185, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-pushpin:before {
  content: "\e146";
}

/* line 186, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-usd:before {
  content: "\e148";
}

/* line 187, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-gbp:before {
  content: "\e149";
}

/* line 188, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sort:before {
  content: "\e150";
}

/* line 189, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 190, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 191, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 192, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 193, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 194, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 195, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-unchecked:before {
  content: "\e157";
}

/* line 196, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-expand:before {
  content: "\e158";
}

/* line 197, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 198, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 199, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-log-in:before {
  content: "\e161";
}

/* line 200, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-flash:before {
  content: "\e162";
}

/* line 201, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-log-out:before {
  content: "\e163";
}

/* line 202, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-new-window:before {
  content: "\e164";
}

/* line 203, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-record:before {
  content: "\e165";
}

/* line 204, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-save:before {
  content: "\e166";
}

/* line 205, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-open:before {
  content: "\e167";
}

/* line 206, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-saved:before {
  content: "\e168";
}

/* line 207, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-import:before {
  content: "\e169";
}

/* line 208, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-export:before {
  content: "\e170";
}

/* line 209, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-send:before {
  content: "\e171";
}

/* line 210, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 211, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 212, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 213, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 214, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 215, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-credit-card:before {
  content: "\e177";
}

/* line 216, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-transfer:before {
  content: "\e178";
}

/* line 217, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-cutlery:before {
  content: "\e179";
}

/* line 218, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-header:before {
  content: "\e180";
}

/* line 219, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-compressed:before {
  content: "\e181";
}

/* line 220, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-earphone:before {
  content: "\e182";
}

/* line 221, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 222, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tower:before {
  content: "\e184";
}

/* line 223, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-stats:before {
  content: "\e185";
}

/* line 224, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sd-video:before {
  content: "\e186";
}

/* line 225, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-hd-video:before {
  content: "\e187";
}

/* line 226, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-subtitles:before {
  content: "\e188";
}

/* line 227, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 228, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 229, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 230, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 231, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 232, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 233, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 234, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 235, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 236, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 237, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 238, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-cd:before {
  content: "\e201";
}

/* line 239, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-save-file:before {
  content: "\e202";
}

/* line 240, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-open-file:before {
  content: "\e203";
}

/* line 241, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-level-up:before {
  content: "\e204";
}

/* line 242, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-copy:before {
  content: "\e205";
}

/* line 243, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-paste:before {
  content: "\e206";
}

/* line 252, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-alert:before {
  content: "\e209";
}

/* line 253, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-equalizer:before {
  content: "\e210";
}

/* line 254, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-king:before {
  content: "\e211";
}

/* line 255, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-queen:before {
  content: "\e212";
}

/* line 256, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-pawn:before {
  content: "\e213";
}

/* line 257, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-bishop:before {
  content: "\e214";
}

/* line 258, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-knight:before {
  content: "\e215";
}

/* line 259, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 260, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-tent:before {
  content: "\26fa";
}

/* line 261, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-blackboard:before {
  content: "\e218";
}

/* line 262, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-bed:before {
  content: "\e219";
}

/* line 263, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-apple:before {
  content: "\f8ff";
}

/* line 264, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-erase:before {
  content: "\e221";
}

/* line 265, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-hourglass:before {
  content: "\231b";
}

/* line 266, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-lamp:before {
  content: "\e223";
}

/* line 267, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-duplicate:before {
  content: "\e224";
}

/* line 268, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 269, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-scissors:before {
  content: "\e226";
}

/* line 270, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 271, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-btc:before {
  content: "\e227";
}

/* line 272, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-xbt:before {
  content: "\e227";
}

/* line 273, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-yen:before {
  content: "\00a5";
}

/* line 274, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-jpy:before {
  content: "\00a5";
}

/* line 275, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-ruble:before {
  content: "\20bd";
}

/* line 276, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-rub:before {
  content: "\20bd";
}

/* line 277, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-scale:before {
  content: "\e230";
}

/* line 278, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 279, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 280, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-education:before {
  content: "\e233";
}

/* line 281, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 282, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 283, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 284, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-modal-window:before {
  content: "\e237";
}

/* line 285, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-oil:before {
  content: "\e238";
}

/* line 286, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-grain:before {
  content: "\e239";
}

/* line 287, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 288, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-text-size:before {
  content: "\e241";
}

/* line 289, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-text-color:before {
  content: "\e242";
}

/* line 290, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-text-background:before {
  content: "\e243";
}

/* line 291, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 292, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 293, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 294, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 295, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 296, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 297, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 298, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 299, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 300, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 301, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-console:before {
  content: "\e254";
}

/* line 302, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-superscript:before {
  content: "\e255";
}

/* line 303, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-subscript:before {
  content: "\e256";
}

/* line 304, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-menu-left:before {
  content: "\e257";
}

/* line 305, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-menu-right:before {
  content: "\e258";
}

/* line 306, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-menu-down:before {
  content: "\e259";
}

/* line 307, app/assets/stylesheets/bootstrap/bootstrap/_glyphicons.scss */
.glyphicon-menu-up:before {
  content: "\e260";
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
* {
  box-sizing: border-box;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
*:before,
*:after {
  box-sizing: border-box;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 27, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.528571429;
  color: #515253;
  background-color: #f5f7fa;
}

/* line 36, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
a {
  color: #3d45c0;
  text-decoration: none;
}

/* line 52, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #2b3086;
  text-decoration: underline;
}

/* line 58, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 86, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 2px;
  line-height: 1.528571429;
  background-color: #e1e2e3;
  border: 1px solid #e1e2e3;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 106, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #e9f4f7;
}

/* line 125, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, app/assets/stylesheets/bootstrap/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 16, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #3a3f51;
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 22px;
  margin-bottom: 11px;
}

/* line 30, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 11px;
  margin-bottom: 11px;
}

/* line 41, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h1, .h1 {
  font-size: 39px;
}

/* line 48, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h2, .h2 {
  font-size: 32px;
}

/* line 49, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h3, .h3 {
  font-size: 26px;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h4, .h4 {
  font-size: 19px;
}

/* line 51, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h5, .h5 {
  font-size: 15px;
}

/* line 52, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
h6, .h6 {
  font-size: 13px;
}

/* line 58, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
p {
  margin: 0 0 11px;
}

/* line 62, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.lead {
  margin-bottom: 22px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  /* line 62, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
  .lead {
    font-size: 22.5px;
  }
}

/* line 78, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
small,
.small {
  font-size: 86%;
}

/* line 83, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 90, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.text-muted {
  color: #909FA7;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #3d45c0;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #313799;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #27c24c;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #1e983b;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #3d45c0;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #313799;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #ff902b;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #f77600;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #f05050;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #ec2121;
}

/* line 119, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #3d45c0 !important;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #313799;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8 !important;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7 !important;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3 !important;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f05050 !important;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #ec2121;
}

/* line 138, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.page-header {
  padding-bottom: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #e9f4f7;
}

/* line 149, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 11px;
}

/* line 153, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

/* line 177, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 22px;
}

/* line 189, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.528571429;
}

/* line 193, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 211, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 229, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #3a3f51;
}

/* line 235, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 18.75px;
  border-left: 5px solid #e9f4f7;
}

/* line 250, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 257, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.528571429;
  color: #3a3f51;
}

/* line 265, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #e9f4f7;
  border-left: 0;
  text-align: right;
}

/* line 286, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}

/* line 287, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 294, app/assets/stylesheets/bootstrap/bootstrap/_type.scss */
address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.528571429;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_code.scss */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 15, app/assets/stylesheets/bootstrap/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/_code.scss */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 32, app/assets/stylesheets/bootstrap/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

/* line 41, app/assets/stylesheets/bootstrap/bootstrap/_code.scss */
pre {
  display: block;
  padding: 10.5px;
  margin: 0 0 11px;
  font-size: 14px;
  line-height: 1.528571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #3a3f51;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 55, app/assets/stylesheets/bootstrap/bootstrap/_code.scss */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 66, app/assets/stylesheets/bootstrap/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 10, app/assets/stylesheets/bootstrap/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, app/assets/stylesheets/bootstrap/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, app/assets/stylesheets/bootstrap/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 27, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }
  /* line 55, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }
  /* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  /* line 27, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }
  /* line 55, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }
  /* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  /* line 27, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }
  /* line 35, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }
  /* line 55, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }
  /* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  /* line 40, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  /* line 60, app/assets/stylesheets/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
table {
  background-color: transparent;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #909FA7;
  text-align: left;
}

/* line 15, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
th {
  text-align: left;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/_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 {
  padding: 8px;
  line-height: 1.528571429;
  vertical-align: top;
  border-top: 1px solid #eee;
}

/* line 41, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #eee;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 57, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table > tbody + tbody {
  border-top: 2px solid #eee;
}

/* line 62, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table .table {
  background-color: #f5f7fa;
}

/* line 75, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 88, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #eee;
}

/* line 94, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #eee;
}

/* line 101, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 114, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #fafbfc;
}

/* line 125, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover {
  background-color: #fafbfc;
}

/* line 135, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

/* line 143, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #fafbfc;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #eaeef2;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f05050;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_table-row.scss */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ee3939;
}

/* line 171, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  /* line 171, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #eee;
  }
  /* line 183, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 191, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
  .table-responsive > .table > thead > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 200, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 208, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 212, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 225, app/assets/stylesheets/bootstrap/bootstrap/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 10, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 22.5px;
  line-height: inherit;
  color: #3a3f51;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 32, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 47, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
input[type="search"] {
  box-sizing: border-box;
}

/* line 52, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 59, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
input[type="file"] {
  display: block;
}

/* line 64, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 70, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 76, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 83, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 15px;
  line-height: 1.528571429;
  color: #3a3f51;
}

/* line 114, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-control, body .bootstrap-tagsinput {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 16px;
  font-size: 15px;
  line-height: 1.528571429;
  color: #3a3f51;
  background-color: #fff;
  background-image: none;
  border: 1px solid #b7dde8;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 57, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.form-control:focus, body .bootstrap-tagsinput:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 103, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-moz-placeholder, body .bootstrap-tagsinput::-moz-placeholder {
  color: #b7bac9;
  opacity: 1;
}

/* line 107, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
.form-control:-ms-input-placeholder, body .bootstrap-tagsinput:-ms-input-placeholder {
  color: #b7bac9;
}

/* line 108, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
.form-control::-webkit-input-placeholder, body .bootstrap-tagsinput::-webkit-input-placeholder {
  color: #b7bac9;
}

/* line 136, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-control::-ms-expand, body .bootstrap-tagsinput::-ms-expand {
  border: 0;
  background-color: transparent;
}

/* line 146, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-control[disabled], body .bootstrap-tagsinput[disabled], .form-control[readonly], body .bootstrap-tagsinput[readonly], fieldset[disabled] .form-control, fieldset[disabled] body .bootstrap-tagsinput, body fieldset[disabled] .bootstrap-tagsinput {
  background-color: #e9f4f7;
  opacity: 1;
}

/* line 153, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-control[disabled], body .bootstrap-tagsinput[disabled], fieldset[disabled] .form-control, fieldset[disabled] body .bootstrap-tagsinput, body fieldset[disabled] .bootstrap-tagsinput {
  cursor: not-allowed;
}

/* line 162, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
textarea.form-control, body textarea.bootstrap-tagsinput {
  height: auto;
}

/* line 174, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 193, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  input.form-control[type="date"], body .bootstrap-tagsinput[type="date"],
input.form-control[type="time"],
body .bootstrap-tagsinput[type="time"],
input.form-control[type="datetime-local"],
body .bootstrap-tagsinput[type="datetime-local"],
input.form-control[type="month"],
body .bootstrap-tagsinput[type="month"] {
    line-height: 36px;
  }
  /* line 197, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  input.input-sm[type="date"], .input-group-sm > .form-control[type="date"], body .input-group-sm > .bootstrap-tagsinput[type="date"],
.input-group-sm > .input-group-addon[type="date"],
.input-group-sm > .input-group-btn > .btn[type="date"],
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button[type="date"], .input-group-sm input[type="date"],
input.input-sm[type="time"],
.input-group-sm > .form-control[type="time"],
body .input-group-sm > .bootstrap-tagsinput[type="time"],
.input-group-sm > .input-group-addon[type="time"],
.input-group-sm > .input-group-btn > .btn[type="time"],
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button[type="time"], .input-group-sm input[type="time"],
input.input-sm[type="datetime-local"],
.input-group-sm > .form-control[type="datetime-local"],
body .input-group-sm > .bootstrap-tagsinput[type="datetime-local"],
.input-group-sm > .input-group-addon[type="datetime-local"],
.input-group-sm > .input-group-btn > .btn[type="datetime-local"],
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button[type="datetime-local"], .input-group-sm input[type="datetime-local"],
input.input-sm[type="month"],
.input-group-sm > .form-control[type="month"],
body .input-group-sm > .bootstrap-tagsinput[type="month"],
.input-group-sm > .input-group-addon[type="month"],
.input-group-sm > .input-group-btn > .btn[type="month"],
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button[type="month"], .input-group-sm input[type="month"] {
    line-height: 31px;
  }
  /* line 202, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  input.input-lg[type="date"], .input-group-lg > .form-control[type="date"], body .input-group-lg > .bootstrap-tagsinput[type="date"],
.input-group-lg > .input-group-addon[type="date"],
.input-group-lg > .input-group-btn > .btn[type="date"],
div.ColVis .input-group-lg > .input-group-btn > .ColVis_Button[type="date"], .input-group-lg input[type="date"],
input.input-lg[type="time"],
.input-group-lg > .form-control[type="time"],
body .input-group-lg > .bootstrap-tagsinput[type="time"],
.input-group-lg > .input-group-addon[type="time"],
.input-group-lg > .input-group-btn > .btn[type="time"],
div.ColVis .input-group-lg > .input-group-btn > .ColVis_Button[type="time"], .input-group-lg input[type="time"],
input.input-lg[type="datetime-local"],
.input-group-lg > .form-control[type="datetime-local"],
body .input-group-lg > .bootstrap-tagsinput[type="datetime-local"],
.input-group-lg > .input-group-addon[type="datetime-local"],
.input-group-lg > .input-group-btn > .btn[type="datetime-local"],
div.ColVis .input-group-lg > .input-group-btn > .ColVis_Button[type="datetime-local"], .input-group-lg input[type="datetime-local"],
input.input-lg[type="month"],
.input-group-lg > .form-control[type="month"],
body .input-group-lg > .bootstrap-tagsinput[type="month"],
.input-group-lg > .input-group-addon[type="month"],
.input-group-lg > .input-group-btn > .btn[type="month"],
div.ColVis .input-group-lg > .input-group-btn > .ColVis_Button[type="month"], .input-group-lg input[type="month"] {
    line-height: 48px;
  }
}

/* line 215, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 224, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 231, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio label,
.checkbox label {
  min-height: 22px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 239, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

/* line 248, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 254, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

/* line 264, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 276, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
input[type="radio"][disabled], input.disabled[type="radio"], fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input.disabled[type="checkbox"], fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 285, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 295, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 307, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 37px;
}

/* line 315, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, body .input-group-lg > .form-control-static.bootstrap-tagsinput,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn,
div.ColVis .input-group-lg > .input-group-btn > .form-control-static.ColVis_Button, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, body .input-group-sm > .form-control-static.bootstrap-tagsinput,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn,
div.ColVis .input-group-sm > .input-group-btn > .form-control-static.ColVis_Button {
  padding-left: 0;
  padding-right: 0;
}

/* line 71, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.input-sm, .input-group-sm > .form-control, body .input-group-sm > .bootstrap-tagsinput,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 79, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
select.input-sm, .input-group-sm > select.form-control, body .input-group-sm > select.bootstrap-tagsinput,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn,
div.ColVis .input-group-sm > .input-group-btn > select.ColVis_Button {
  height: 31px;
  line-height: 31px;
}

/* line 84, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
textarea.input-sm, .input-group-sm > textarea.form-control, body .input-group-sm > textarea.bootstrap-tagsinput,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
div.ColVis .input-group-sm > .input-group-btn > textarea.ColVis_Button,
select.input-sm[multiple],
.input-group-sm > .form-control[multiple],
body .input-group-sm > .bootstrap-tagsinput[multiple],
.input-group-sm > .input-group-addon[multiple],
.input-group-sm > .input-group-btn > .btn[multiple],
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button[multiple] {
  height: auto;
}

/* line 333, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-sm .form-control, .form-group-sm body .bootstrap-tagsinput, body .form-group-sm .bootstrap-tagsinput {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 340, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-sm select.form-control, .form-group-sm body select.bootstrap-tagsinput, body .form-group-sm select.bootstrap-tagsinput {
  height: 31px;
  line-height: 31px;
}

/* line 344, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-sm textarea.form-control, .form-group-sm body textarea.bootstrap-tagsinput, body .form-group-sm textarea.bootstrap-tagsinput,
.form-group-sm select.form-control[multiple],
.form-group-sm body .bootstrap-tagsinput[multiple],
body .form-group-sm .bootstrap-tagsinput[multiple] {
  height: auto;
}

/* line 348, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-sm .form-control-static {
  height: 31px;
  min-height: 35px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.5;
}

/* line 71, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.input-lg, .input-group-lg > .form-control, body .input-group-lg > .bootstrap-tagsinput,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
div.ColVis .input-group-lg > .input-group-btn > .ColVis_Button {
  height: 48px;
  padding: 10px 20px;
  font-size: 19px;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 79, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
select.input-lg, .input-group-lg > select.form-control, body .input-group-lg > select.bootstrap-tagsinput,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn,
div.ColVis .input-group-lg > .input-group-btn > select.ColVis_Button {
  height: 48px;
  line-height: 48px;
}

/* line 84, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
textarea.input-lg, .input-group-lg > textarea.form-control, body .input-group-lg > textarea.bootstrap-tagsinput,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
div.ColVis .input-group-lg > .input-group-btn > textarea.ColVis_Button,
select.input-lg[multiple],
.input-group-lg > .form-control[multiple],
body .input-group-lg > .bootstrap-tagsinput[multiple],
.input-group-lg > .input-group-addon[multiple],
.input-group-lg > .input-group-btn > .btn[multiple],
div.ColVis .input-group-lg > .input-group-btn > .ColVis_Button[multiple] {
  height: auto;
}

/* line 359, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-lg .form-control, .form-group-lg body .bootstrap-tagsinput, body .form-group-lg .bootstrap-tagsinput {
  height: 48px;
  padding: 10px 20px;
  font-size: 19px;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 366, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-lg select.form-control, .form-group-lg body select.bootstrap-tagsinput, body .form-group-lg select.bootstrap-tagsinput {
  height: 48px;
  line-height: 48px;
}

/* line 370, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-lg textarea.form-control, .form-group-lg body textarea.bootstrap-tagsinput, body .form-group-lg textarea.bootstrap-tagsinput,
.form-group-lg select.form-control[multiple],
.form-group-lg body .bootstrap-tagsinput[multiple],
body .form-group-lg .bootstrap-tagsinput[multiple] {
  height: auto;
}

/* line 374, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-group-lg .form-control-static {
  height: 48px;
  min-height: 41px;
  padding: 11px 20px;
  font-size: 19px;
  line-height: 1.33;
}

/* line 388, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.has-feedback {
  position: relative;
}

/* line 393, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.has-feedback .form-control, .has-feedback body .bootstrap-tagsinput, body .has-feedback .bootstrap-tagsinput {
  padding-right: 45px;
}

/* line 398, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  pointer-events: none;
}

/* line 410, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, body .input-group-lg > .bootstrap-tagsinput + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
div.ColVis .input-group-lg > .input-group-btn > .ColVis_Button + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback,
.form-group-lg body .bootstrap-tagsinput + .form-control-feedback,
body .form-group-lg .bootstrap-tagsinput + .form-control-feedback {
  width: 48px;
  height: 48px;
  line-height: 48px;
}

/* line 417, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, body .input-group-sm > .bootstrap-tagsinput + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback,
.form-group-sm body .bootstrap-tagsinput + .form-control-feedback,
body .form-group-sm .bootstrap-tagsinput + .form-control-feedback {
  width: 31px;
  height: 31px;
  line-height: 31px;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #27c24c;
}

/* line 21, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-success .form-control, .has-success body .bootstrap-tagsinput, body .has-success .bootstrap-tagsinput {
  border-color: #27c24c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-success .form-control:focus, .has-success body .bootstrap-tagsinput:focus, body .has-success .bootstrap-tagsinput:focus {
  border-color: #1e983b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #6de289;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-success .input-group-addon {
  color: #27c24c;
  border-color: #27c24c;
  background-color: #dff0d8;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-success .form-control-feedback {
  color: #27c24c;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #ff902b;
}

/* line 21, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-warning .form-control, .has-warning body .bootstrap-tagsinput, body .has-warning .bootstrap-tagsinput {
  border-color: #ff902b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-warning .form-control:focus, .has-warning body .bootstrap-tagsinput:focus, body .has-warning .bootstrap-tagsinput:focus {
  border-color: #f77600;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc591;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-warning .input-group-addon {
  color: #ff902b;
  border-color: #ff902b;
  background-color: #fcf8e3;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-warning .form-control-feedback {
  color: #ff902b;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #f05050;
}

/* line 21, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-error .form-control, .has-error body .bootstrap-tagsinput, body .has-error .bootstrap-tagsinput {
  border-color: #f05050;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-error .form-control:focus, .has-error body .bootstrap-tagsinput:focus, body .has-error .bootstrap-tagsinput:focus {
  border-color: #ec2121;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8aeae;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-error .input-group-addon {
  color: #f05050;
  border-color: #f05050;
  background-color: #f05050;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
.has-error .form-control-feedback {
  color: #f05050;
}

/* line 439, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.has-feedback label ~ .form-control-feedback {
  top: 27px;
}

/* line 442, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 453, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #909293;
}

@media (min-width: 768px) {
  /* line 478, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .form-control, .form-inline body .bootstrap-tagsinput, body .form-inline .bootstrap-tagsinput {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 496, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control,
.form-inline .input-group body .bootstrap-tagsinput,
body .form-inline .input-group .bootstrap-tagsinput {
    width: auto;
  }
  /* line 508, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .input-group > .form-control, .form-inline body .input-group > .bootstrap-tagsinput, body .form-inline .input-group > .bootstrap-tagsinput {
    width: 100%;
  }
  /* line 512, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .radio,
.form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .radio label,
.form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 530, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 559, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}

/* line 569, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29px;
}

/* line 575, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 582, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}

/* line 593, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  /* line 603, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 19px;
  }
}

@media (min-width: 768px) {
  /* line 611, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 13px;
  }
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn, div.ColVis .ColVis_Button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 16px;
  font-size: 15px;
  line-height: 1.528571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 26, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn:focus, div.ColVis .ColVis_Button:focus, .btn.focus, div.ColVis .focus.ColVis_Button, .btn:active:focus, .btn.focus:active, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 32, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn:hover, div.ColVis .ColVis_Button:hover, .btn:focus, div.ColVis .ColVis_Button:focus, .btn.focus, div.ColVis .focus.ColVis_Button {
  color: #333;
  text-decoration: none;
}

/* line 39, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn:active, div.ColVis .ColVis_Button:active, .btn.active, div.ColVis .active.ColVis_Button {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 46, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn.disabled, div.ColVis .disabled.ColVis_Button, .btn[disabled], div.ColVis .ColVis_Button[disabled], fieldset[disabled] .btn, fieldset[disabled] div.ColVis .ColVis_Button, div.ColVis fieldset[disabled] .ColVis_Button {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

/* line 58, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
a.btn.disabled, div.ColVis a.disabled.ColVis_Button, fieldset[disabled] a.btn, fieldset[disabled] div.ColVis a.ColVis_Button, div.ColVis fieldset[disabled] a.ColVis_Button {
  pointer-events: none;
}

/* line 68, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-default, div.ColVis .ColVis_Button {
  color: #333;
  background-color: #fff;
  border-color: #eaeaea;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-default:focus, div.ColVis .ColVis_Button:focus, .btn-default.focus, div.ColVis .focus.ColVis_Button {
  color: #333;
  background-color: whitesmoke;
  border-color: #d6d6d6;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-default:hover, div.ColVis .ColVis_Button:hover {
  color: #333;
  background-color: whitesmoke;
  border-color: #d6d6d6;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-default:active, div.ColVis .ColVis_Button:active, .btn-default.active, div.ColVis .active.ColVis_Button, .open > .btn-default.dropdown-toggle, div.ColVis .open > .dropdown-toggle.ColVis_Button {
  color: #333;
  background-color: whitesmoke;
  border-color: #d6d6d6;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-default:active:hover, div.ColVis .ColVis_Button:active:hover, .btn-default:active:focus, div.ColVis .ColVis_Button:active:focus, .btn-default.focus:active, div.ColVis .ColVis_Button.focus:active, .btn-default.active:hover, div.ColVis .active.ColVis_Button:hover, .btn-default.active:focus, div.ColVis .active.ColVis_Button:focus, .btn-default.active.focus, div.ColVis .active.focus.ColVis_Button, .open > .btn-default.dropdown-toggle:hover, div.ColVis .open > .dropdown-toggle.ColVis_Button:hover, .open > .btn-default.dropdown-toggle:focus, div.ColVis .open > .dropdown-toggle.ColVis_Button:focus, .open > .btn-default.dropdown-toggle.focus, div.ColVis .open > .dropdown-toggle.focus.ColVis_Button {
  color: #333;
  background-color: whitesmoke;
  border-color: #d6d6d6;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-default:active, div.ColVis .ColVis_Button:active, .btn-default.active, div.ColVis .active.ColVis_Button, .open > .btn-default.dropdown-toggle, div.ColVis .open > .dropdown-toggle.ColVis_Button {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-default.disabled:hover, div.ColVis .disabled.ColVis_Button:hover, .btn-default.disabled:focus, div.ColVis .disabled.ColVis_Button:focus, .btn-default.disabled.focus, div.ColVis .disabled.focus.ColVis_Button, .btn-default[disabled]:hover, div.ColVis .ColVis_Button[disabled]:hover, .btn-default[disabled]:focus, div.ColVis .ColVis_Button[disabled]:focus, .btn-default.focus[disabled], div.ColVis .focus.ColVis_Button[disabled], fieldset[disabled] .btn-default:hover, fieldset[disabled] div.ColVis .ColVis_Button:hover, div.ColVis fieldset[disabled] .ColVis_Button:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] div.ColVis .ColVis_Button:focus, div.ColVis fieldset[disabled] .ColVis_Button:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] div.ColVis .focus.ColVis_Button, div.ColVis fieldset[disabled] .focus.ColVis_Button {
  background-color: #fff;
  border-color: #eaeaea;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-default .badge, div.ColVis .ColVis_Button .badge {
  color: #fff;
  background-color: #333;
}

/* line 71, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #3d45c0;
  border-color: #3c44bc;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:active, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary.focus[disabled], fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #3d45c0;
  border-color: #3c44bc;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-primary .badge {
  color: #3d45c0;
  background-color: #fff;
}

/* line 75, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #27c24c;
  border-color: #26be4a;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #24b145;
  border-color: #1f9c3d;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #fff;
  background-color: #24b145;
  border-color: #1f9c3d;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #24b145;
  border-color: #1f9c3d;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:active, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #24b145;
  border-color: #1f9c3d;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success.focus[disabled], fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #27c24c;
  border-color: #26be4a;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-success .badge {
  color: #27c24c;
  background-color: #fff;
}

/* line 79, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #3d45c0;
  border-color: #3c44bc;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #383fb1;
  border-color: #32389d;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info.focus[disabled], fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #3d45c0;
  border-color: #3c44bc;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-info .badge {
  color: #3d45c0;
  background-color: #fff;
}

/* line 83, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  background-color: #ff902b;
  border-color: #ff8d26;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ff8517;
  border-color: #fc7800;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #fff;
  background-color: #ff8517;
  border-color: #fc7800;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ff8517;
  border-color: #fc7800;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:active, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #ff8517;
  border-color: #fc7800;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning.focus[disabled], fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #ff902b;
  border-color: #ff8d26;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-warning .badge {
  color: #ff902b;
  background-color: #fff;
}

/* line 87, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #f05050;
  border-color: #f04b4b;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #ee3d3d;
  border-color: #ec2626;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #ee3d3d;
  border-color: #ec2626;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #ee3d3d;
  border-color: #ec2626;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:active, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ee3d3d;
  border-color: #ec2626;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger.focus[disabled], fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #f05050;
  border-color: #f04b4b;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-danger .badge {
  color: #f05050;
  background-color: #fff;
}

/* line 96, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-link {
  color: #3d45c0;
  font-weight: normal;
  border-radius: 0;
}

/* line 101, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

/* line 109, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

/* line 115, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #2b3086;
  text-decoration: underline;
  background-color: transparent;
}

/* line 123, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #e4eaec;
  text-decoration: none;
}

/* line 135, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn, div.ColVis .btn-group-lg > .ColVis_Button {
  padding: 10px 20px;
  font-size: 19px;
  line-height: 1.33;
  border-radius: 6px;
}

/* line 139, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn, div.ColVis .btn-group-sm > .ColVis_Button {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 143, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-xs, .btn-group-xs > .btn, div.ColVis .btn-group-xs > .ColVis_Button {
  padding: 1px 5px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 151, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 157, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 165, app/assets/stylesheets/bootstrap/bootstrap/_buttons.scss */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 10, app/assets/stylesheets/bootstrap/bootstrap/_component-animations.scss */
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

/* line 13, app/assets/stylesheets/bootstrap/bootstrap/_component-animations.scss */
.fade.in {
  opacity: 1;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/_component-animations.scss */
.collapse {
  display: none;
}

/* line 21, app/assets/stylesheets/bootstrap/bootstrap/_component-animations.scss */
.collapse.in {
  display: block;
}

/* line 26, app/assets/stylesheets/bootstrap/bootstrap/_component-animations.scss */
tr.collapse.in {
  display: table-row;
}

/* line 28, app/assets/stylesheets/bootstrap/bootstrap/_component-animations.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 30, app/assets/stylesheets/bootstrap/bootstrap/_component-animations.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropup,
.dropdown {
  position: relative;
}

/* line 26, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-toggle:focus {
  outline: 0;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 15px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

/* line 54, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 65, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.528571429;
  color: #5f5f5f;
  white-space: nowrap;
}

/* line 78, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #2f3342;
  background-color: #fafbfc;
}

/* line 88, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #3d45c0;
}

/* line 103, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #e4eaec;
}

/* line 110, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

/* line 123, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.open > .dropdown-menu {
  display: block;
}

/* line 128, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.open > a {
  outline: 0;
}

/* line 137, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

/* line 147, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-menu-left {
  left: 0;
  right: auto;
}

/* line 153, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 13px;
  line-height: 1.528571429;
  color: #e4eaec;
  white-space: nowrap;
}

/* line 163, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

/* line 173, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 186, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}

/* line 193, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 207, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 212, app/assets/stylesheets/bootstrap/bootstrap/_dropdowns.scss */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn, div.ColVis .btn-group > .ColVis_Button,
.btn-group-vertical > .btn,
div.ColVis .btn-group-vertical > .ColVis_Button {
  position: relative;
  float: left;
}

/* line 15, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn:hover, div.ColVis .btn-group > .ColVis_Button:hover, .btn-group > .btn:focus, div.ColVis .btn-group > .ColVis_Button:focus, .btn-group > .btn:active, div.ColVis .btn-group > .ColVis_Button:active, .btn-group > .btn.active, div.ColVis .btn-group > .active.ColVis_Button,
.btn-group-vertical > .btn:hover,
div.ColVis .btn-group-vertical > .ColVis_Button:hover,
.btn-group-vertical > .btn:focus,
div.ColVis .btn-group-vertical > .ColVis_Button:focus,
.btn-group-vertical > .btn:active,
div.ColVis .btn-group-vertical > .ColVis_Button:active,
.btn-group-vertical > .btn.active,
div.ColVis .btn-group-vertical > .active.ColVis_Button {
  z-index: 2;
}

/* line 26, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group .btn + .btn, .btn-group div.ColVis .ColVis_Button + .btn, div.ColVis .btn-group .ColVis_Button + .btn, .btn-group div.ColVis .btn + .ColVis_Button, div.ColVis .btn-group .btn + .ColVis_Button, .btn-group div.ColVis .ColVis_Button + .ColVis_Button, div.ColVis .btn-group .ColVis_Button + .ColVis_Button,
.btn-group .btn + .btn-group,
.btn-group div.ColVis .ColVis_Button + .btn-group,
div.ColVis .btn-group .ColVis_Button + .btn-group,
.btn-group .btn-group + .btn,
.btn-group div.ColVis .btn-group + .ColVis_Button,
div.ColVis .btn-group .btn-group + .ColVis_Button,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-toolbar {
  margin-left: -5px;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.btn-toolbar:after {
  clear: both;
}

/* line 39, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-toolbar .btn, .btn-toolbar div.ColVis .ColVis_Button, div.ColVis .btn-toolbar .ColVis_Button,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

/* line 44, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-toolbar > .btn, div.ColVis .btn-toolbar > .ColVis_Button,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 51, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle), div.ColVis .btn-group > .ColVis_Button:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 56, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child, div.ColVis .btn-group > .ColVis_Button:first-child {
  margin-left: 0;
}

/* line 58, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle), div.ColVis .btn-group > .ColVis_Button:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child:not(:first-child), div.ColVis .btn-group > .ColVis_Button:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 69, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn-group {
  float: left;
}

/* line 72, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, div.ColVis .btn-group > .btn-group:not(:first-child):not(:last-child) > .ColVis_Button {
  border-radius: 0;
}

/* line 76, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, div.ColVis .btn-group > .btn-group:first-child:not(:last-child) > .ColVis_Button:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 81, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child, div.ColVis .btn-group > .btn-group:last-child:not(:first-child) > .ColVis_Button:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 86, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 105, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle, div.ColVis .btn-group > .ColVis_Button + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

/* line 109, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle, div.ColVis .btn-group-lg.btn-group > .ColVis_Button + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

/* line 116, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 120, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}

/* line 127, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn .caret, div.ColVis .ColVis_Button .caret {
  margin-left: 0;
}

/* line 131, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-lg .caret, .btn-group-lg > .btn .caret, div.ColVis .btn-group-lg > .ColVis_Button .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 136, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret, .dropup div.ColVis .btn-group-lg > .ColVis_Button .caret, div.ColVis .dropup .btn-group-lg > .ColVis_Button .caret {
  border-width: 0 5px 5px;
}

/* line 145, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn, div.ColVis .btn-group-vertical > .ColVis_Button,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn,
div.ColVis .btn-group-vertical > .btn-group > .ColVis_Button {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.btn-group-vertical > .btn-group:after {
  clear: both;
}

/* line 157, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group > .btn, div.ColVis .btn-group-vertical > .btn-group > .ColVis_Button {
  float: none;
}

/* line 162, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn, div.ColVis .btn-group-vertical > .ColVis_Button + .btn, div.ColVis .btn-group-vertical > .btn + .ColVis_Button, div.ColVis .btn-group-vertical > .ColVis_Button + .ColVis_Button,
.btn-group-vertical > .btn + .btn-group,
div.ColVis .btn-group-vertical > .ColVis_Button + .btn-group,
.btn-group-vertical > .btn-group + .btn,
div.ColVis .btn-group-vertical > .btn-group + .ColVis_Button,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 172, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child), div.ColVis .btn-group-vertical > .ColVis_Button:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 175, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child:not(:last-child), div.ColVis .btn-group-vertical > .ColVis_Button:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 179, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child:not(:first-child), div.ColVis .btn-group-vertical > .ColVis_Button:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 184, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, div.ColVis .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .ColVis_Button {
  border-radius: 0;
}

/* line 188, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, div.ColVis .btn-group-vertical > .btn-group:first-child:not(:last-child) > .ColVis_Button:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 193, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child, div.ColVis .btn-group-vertical > .btn-group:last-child:not(:first-child) > .ColVis_Button:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 201, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 206, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-justified > .btn, div.ColVis .btn-group-justified > .ColVis_Button,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}

/* line 212, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .btn, .btn-group-justified > .btn-group div.ColVis .ColVis_Button, div.ColVis .btn-group-justified > .btn-group .ColVis_Button {
  width: 100%;
}

/* line 216, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 237, app/assets/stylesheets/bootstrap/bootstrap/_button-groups.scss */
[data-toggle="buttons"] > .btn input[type="radio"], div.ColVis [data-toggle="buttons"] > .ColVis_Button input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
div.ColVis [data-toggle="buttons"] > .ColVis_Button input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 13, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group .form-control, .input-group body .bootstrap-tagsinput, body .input-group .bootstrap-tagsinput {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group .form-control:focus, .input-group body .bootstrap-tagsinput:focus, body .input-group .bootstrap-tagsinput:focus {
  z-index: 3;
}

/* line 58, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control,
.input-group body .bootstrap-tagsinput,
body .input-group .bootstrap-tagsinput {
  display: table-cell;
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child),
.input-group body .bootstrap-tagsinput:not(:first-child):not(:last-child),
body .input-group .bootstrap-tagsinput:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 68, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 77, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon {
  padding: 6px 16px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  color: #3a3f51;
  text-align: center;
  background-color: #e9f4f7;
  border: 1px solid #b7dde8;
  border-radius: 4px;
}

/* line 89, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn,
div.ColVis .input-group-sm > .input-group-btn > .input-group-addon.ColVis_Button {
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 3px;
}

/* line 94, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn,
div.ColVis .input-group-lg > .input-group-btn > .input-group-addon.ColVis_Button {
  padding: 10px 20px;
  font-size: 19px;
  border-radius: 6px;
}

/* line 101, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 108, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group .form-control:first-child, .input-group body .bootstrap-tagsinput:first-child, body .input-group .bootstrap-tagsinput:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
div.ColVis .input-group-btn:first-child > .ColVis_Button,
.input-group-btn:first-child > .btn-group > .btn,
div.ColVis .input-group-btn:first-child > .btn-group > .ColVis_Button,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
div.ColVis .input-group-btn:last-child > .ColVis_Button:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn,
div.ColVis .input-group-btn:last-child > .btn-group:not(:last-child) > .ColVis_Button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 117, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 120, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group .form-control:last-child, .input-group body .bootstrap-tagsinput:last-child, body .input-group .bootstrap-tagsinput:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
div.ColVis .input-group-btn:last-child > .ColVis_Button,
.input-group-btn:last-child > .btn-group > .btn,
div.ColVis .input-group-btn:last-child > .btn-group > .ColVis_Button,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
div.ColVis .input-group-btn:first-child > .ColVis_Button:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
div.ColVis .input-group-btn:first-child > .btn-group:not(:first-child) > .ColVis_Button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 129, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 135, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 144, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-btn > .btn, div.ColVis .input-group-btn > .ColVis_Button {
  position: relative;
}

/* line 146, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-btn > .btn + .btn, div.ColVis .input-group-btn > .ColVis_Button + .btn, div.ColVis .input-group-btn > .btn + .ColVis_Button, div.ColVis .input-group-btn > .ColVis_Button + .ColVis_Button {
  margin-left: -1px;
}

/* line 150, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-btn > .btn:hover, div.ColVis .input-group-btn > .ColVis_Button:hover, .input-group-btn > .btn:focus, div.ColVis .input-group-btn > .ColVis_Button:focus, .input-group-btn > .btn:active, div.ColVis .input-group-btn > .ColVis_Button:active {
  z-index: 2;
}

/* line 159, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-btn:first-child > .btn, div.ColVis .input-group-btn:first-child > .ColVis_Button,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 165, app/assets/stylesheets/bootstrap/bootstrap/_input-groups.scss */
.input-group-btn:last-child > .btn, div.ColVis .input-group-btn:last-child > .ColVis_Button,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.nav:before, .nav:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.nav:after {
  clear: both;
}

/* line 15, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav > li {
  position: relative;
  display: block;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 23, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav > li.disabled > a {
  color: #e4eaec;
}

/* line 34, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #e4eaec;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

/* line 46, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: transparent;
  border-color: #3d45c0;
}

/* line 59, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 66, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 76, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 78, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 84, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.528571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 89, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs > li > a:hover {
  border-color: #ddd #ddd #ddd;
}

/* line 96, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #b7dde8;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 118, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-pills > li {
  float: left;
}

/* line 122, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-pills > li > a {
  border-radius: 4px;
}

/* line 125, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-pills > li + li {
  margin-left: 2px;
}

/* line 131, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #3d45c0;
}

/* line 144, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 146, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 160, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

/* line 163, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

/* line 165, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

/* line 171, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 177, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 180, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 190, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

/* line 193, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 199, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 206, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 210, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border-bottom-color: #f5f7fa;
  }
}

/* line 224, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 227, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.tab-content > .active {
  display: block;
}

/* line 237, app/assets/stylesheets/bootstrap/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  min-height: 55px;
  margin-bottom: 22px;
  border: 1px solid transparent;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 11, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar {
    border-radius: 4px;
  }
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  /* line 31, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-header {
    float: left;
  }
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.navbar-collapse:after {
  clear: both;
}

/* line 59, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 50, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  /* line 68, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 75, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 81, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 92, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 92, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 108, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 108, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 128, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 128, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-static-top {
    border-radius: 0;
  }
}

/* line 138, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  /* line 138, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 150, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 154, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 163, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-brand {
  float: left;
  padding: 16.5px 15px;
  font-size: 19px;
  line-height: 22px;
  height: 55px;
}

/* line 170, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 175, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 180, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 193, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 10.5px;
  margin-bottom: 10.5px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 206, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-toggle:focus {
  outline: 0;
}

/* line 211, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 217, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 193, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-toggle {
    display: none;
  }
}

/* line 232, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-nav {
  margin: 8.25px -15px;
}

/* line 235, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 22px;
}

@media (max-width: 767px) {
  /* line 243, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  /* line 251, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 255, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 22px;
  }
  /* line 257, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 232, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 270, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-nav > li {
    float: left;
  }
  /* line 272, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-nav > li > a {
    padding-top: 16.5px;
    padding-bottom: 16.5px;
  }
}

/* line 286, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 9.5px;
  margin-bottom: 9.5px;
}

@media (min-width: 768px) {
  /* line 478, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 485, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .form-control, .navbar-form body .bootstrap-tagsinput, body .navbar-form .bootstrap-tagsinput {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 492, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 496, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 500, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control,
.navbar-form .input-group body .bootstrap-tagsinput,
body .navbar-form .input-group .bootstrap-tagsinput {
    width: auto;
  }
  /* line 508, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .input-group > .form-control, .navbar-form body .input-group > .bootstrap-tagsinput, body .navbar-form .input-group > .bootstrap-tagsinput {
    width: 100%;
  }
  /* line 512, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 519, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .radio,
.navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 526, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .radio label,
.navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 530, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 537, app/assets/stylesheets/bootstrap/bootstrap/_forms.scss */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 298, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 302, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 286, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
}

/* line 327, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 332, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 343, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-btn {
  margin-top: 9.5px;
  margin-bottom: 9.5px;
}

/* line 346, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn, div.ColVis .btn-group-sm > .navbar-btn.ColVis_Button {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* line 349, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn, div.ColVis .btn-group-xs > .navbar-btn.ColVis_Button {
  margin-top: 16.5px;
  margin-bottom: 16.5px;
}

/* line 359, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-text {
  margin-top: 16.5px;
  margin-bottom: 16.5px;
}

@media (min-width: 768px) {
  /* line 359, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  /* line 379, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-left {
    float: left !important;
  }
  /* line 382, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 386, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 397, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 401, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-brand {
  color: #fff;
}

/* line 403, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #e6e6e6;
  background-color: transparent;
}

/* line 410, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-text {
  color: #777;
}

/* line 415, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a {
  color: #fff;
}

/* line 418, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #ddd;
  background-color: transparent;
}

/* line 425, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #ddd;
  background-color: #e7e7e7;
}

/* line 433, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 442, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 444, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 448, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 453, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 462, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #ddd;
}

@media (max-width: 767px) {
  /* line 473, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  /* line 475, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ddd;
    background-color: transparent;
  }
  /* line 482, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ddd;
    background-color: #e7e7e7;
  }
  /* line 490, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 506, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-link {
  color: #fff;
}

/* line 508, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .navbar-link:hover {
  color: #ddd;
}

/* line 513, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .btn-link {
  color: #fff;
}

/* line 515, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #ddd;
}

/* line 521, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 531, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

/* line 535, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand {
  color: #e4eaec;
}

/* line 537, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 544, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #e4eaec;
}

/* line 549, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a {
  color: #e4eaec;
}

/* line 552, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 559, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

/* line 567, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

/* line 577, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 579, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 583, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 588, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 596, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}

@media (max-width: 767px) {
  /* line 607, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  /* line 610, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  /* line 613, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #e4eaec;
  }
  /* line 615, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 622, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  /* line 630, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

/* line 641, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #e4eaec;
}

/* line 643, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 648, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .btn-link {
  color: #e4eaec;
}

/* line 650, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 656, app/assets/stylesheets/bootstrap/bootstrap/_navbar.scss */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 12px 15px;
  margin-bottom: 22px;
  list-style: none;
  background-color: #fafafa;
  border-radius: 4px;
}

/* line 13, app/assets/stylesheets/bootstrap/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 16, app/assets/stylesheets/bootstrap/bootstrap/_breadcrumbs.scss */
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #c1c2c3;
}

/* line 25, app/assets/stylesheets/bootstrap/bootstrap/_breadcrumbs.scss */
.breadcrumb > .active {
  color: #515253;
}

/* line 4, app/assets/stylesheets/bootstrap/bootstrap/_pagination.scss */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 4px;
}

/* line 10, app/assets/stylesheets/bootstrap/bootstrap/_pagination.scss */
.pagination > li {
  display: inline;
}

/* line 12, app/assets/stylesheets/bootstrap/bootstrap/_pagination.scss */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 16px;
  line-height: 1.528571429;
  text-decoration: none;
  color: #515253;
  background-color: #fff;
  border: 1px solid #eee;
  margin-left: -1px;
}

/* line 25, app/assets/stylesheets/bootstrap/bootstrap/_pagination.scss */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 32, app/assets/stylesheets/bootstrap/bootstrap/_pagination.scss */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 41, app/assets/stylesheets/bootstrap/bootstrap/_pagination.scss */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #2b3086;
  background-color: #fafafa;
  border-color: #eee;
}

/* line 52, app/assets/stylesheets/bootstrap/bootstrap/_pagination.scss */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #3d45c0;
  border-color: #3d45c0;
  cursor: default;
}

/* line 64, app/assets/stylesheets/bootstrap/bootstrap/_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: #e4eaec;
  background-color: #fff;
  border-color: #eee;
  cursor: not-allowed;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_pagination.scss */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 20px;
  font-size: 19px;
  line-height: 1.33;
}

/* line 12, app/assets/stylesheets/bootstrap/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/mixins/_pagination.scss */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/mixins/_pagination.scss */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
}

/* line 12, app/assets/stylesheets/bootstrap/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/mixins/_pagination.scss */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/_pager.scss */
.pager {
  padding-left: 0;
  margin: 22px 0;
  list-style: none;
  text-align: center;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.pager:before, .pager:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.pager:after {
  clear: both;
}

/* line 12, app/assets/stylesheets/bootstrap/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/_pager.scss */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
}

/* line 23, app/assets/stylesheets/bootstrap/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #fafafa;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 38, app/assets/stylesheets/bootstrap/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #e4eaec;
  background-color: #fff;
  cursor: not-allowed;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label:empty {
  display: none;
}

/* line 25, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.btn .label, div.ColVis .ColVis_Button .label {
  position: relative;
  top: -1px;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 44, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label-default {
  background-color: #e4eaec;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #c6d3d7;
}

/* line 48, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label-primary {
  background-color: #3d45c0;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #313799;
}

/* line 52, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label-success {
  background-color: #27c24c;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #1e983b;
}

/* line 56, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label-info {
  background-color: #3d45c0;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #313799;
}

/* line 60, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label-warning {
  background-color: #ff902b;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #f77600;
}

/* line 64, app/assets/stylesheets/bootstrap/bootstrap/_labels.scss */
.label-danger {
  background-color: #f05050;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #ec2121;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #e4eaec;
  border-radius: 10px;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.badge:empty {
  display: none;
}

/* line 27, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.btn .badge, div.ColVis .ColVis_Button .badge {
  position: relative;
  top: -1px;
}

/* line 32, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.btn-xs .badge, .btn-group-xs > .btn .badge, div.ColVis .btn-group-xs > .ColVis_Button .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 41, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #3d45c0;
  background-color: #fff;
}

/* line 47, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.list-group-item > .badge {
  float: right;
}

/* line 51, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 55, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 62, app/assets/stylesheets/bootstrap/bootstrap/_badges.scss */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #fcfcfc;
}

/* line 13, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 200;
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
.jumbotron > hr {
  border-top-color: #e3e3e3;
}

/* line 28, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 35, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 6, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 43, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  /* line 49, app/assets/stylesheets/bootstrap/bootstrap/_jumbotron.scss */
  .jumbotron h1,
.jumbotron .h1 {
    font-size: 68px;
  }
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 2px;
  margin-bottom: 22px;
  line-height: 1.528571429;
  background-color: #e1e2e3;
  border: 1px solid #e1e2e3;
  border-radius: 3px;
  transition: border 0.2s ease-in-out;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/_thumbnails.scss */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* line 27, app/assets/stylesheets/bootstrap/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #515253;
}

/* line 34, app/assets/stylesheets/bootstrap/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #3d45c0;
}

/* line 9, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert {
  padding: 8px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 3px;
}

/* line 16, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 23, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}

/* line 28, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 42, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 28px;
}

/* line 47, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 59, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert-success {
  background-color: #27c24c;
  border-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: rgba(0, 0, 0, 0.1);
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #e6e6e6;
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert-info {
  background-color: #3d45c0;
  border-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: rgba(0, 0, 0, 0.1);
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #e6e6e6;
}

/* line 67, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #ff902b;
  border-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: rgba(0, 0, 0, 0.1);
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #e6e6e6;
}

/* line 71, app/assets/stylesheets/bootstrap/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f05050;
  border-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: rgba(0, 0, 0, 0.1);
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #e6e6e6;
}

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

/* line 26, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress {
  overflow: hidden;
  height: 22px;
  margin-bottom: 22px;
  background-color: #f1f1f1;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 36, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 13px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #3d45c0;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}

/* line 54, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

/* line 64, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress.active .progress-bar,
.progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 73, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress-bar-success {
  background-color: #27c24c;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 77, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress-bar-info {
  background-color: #3d45c0;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 81, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress-bar-warning {
  background-color: #ff902b;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 85, app/assets/stylesheets/bootstrap/bootstrap/_progress-bars.scss */
.progress-bar-danger {
  background-color: #f05050;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 1, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media {
  margin-top: 15px;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 10, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

/* line 16, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-body {
  width: 10000px;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 24, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-object.img-thumbnail {
  max-width: none;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-right,
.media > .pull-right {
  padding-left: 10px;
}

/* line 34, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-left,
.media > .pull-left {
  padding-right: 10px;
}

/* line 39, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 46, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-middle {
  vertical-align: middle;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-bottom {
  vertical-align: bottom;
}

/* line 55, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_media.scss */
.media-list {
  padding-left: 0;
  list-style: none;
}

/* line 10, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 21, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #e4eaec;
}

/* line 31, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 34, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 46, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
a.list-group-item,
button.list-group-item {
  color: #555;
}

/* line 50, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 55, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #fafbfc;
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 70, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #e9f4f7;
  color: #e4eaec;
  cursor: not-allowed;
}

/* line 78, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

/* line 81, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #e4eaec;
}

/* line 87, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #3d45c0;
  border-color: #3d45c0;
}

/* line 96, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 101, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #d7d8f2;
}

/* line 4, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #27c24c;
  background-color: #dff0d8;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-success,
button.list-group-item-success {
  color: #27c24c;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #27c24c;
  background-color: #d0e9c6;
}

/* line 23, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #27c24c;
  border-color: #27c24c;
}

/* line 4, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #3d45c0;
  background-color: #d9edf7;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-info,
button.list-group-item-info {
  color: #3d45c0;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #3d45c0;
  background-color: #c4e3f3;
}

/* line 23, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #3d45c0;
  border-color: #3d45c0;
}

/* line 4, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #ff902b;
  background-color: #fcf8e3;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #ff902b;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #ff902b;
  background-color: #faf2cc;
}

/* line 23, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #ff902b;
  border-color: #ff902b;
}

/* line 4, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #f05050;
  background-color: #f05050;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #f05050;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #f05050;
  background-color: #ee3939;
}

/* line 23, app/assets/stylesheets/bootstrap/bootstrap/mixins/_list-group.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #f05050;
  border-color: #f05050;
}

/* line 123, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 127, app/assets/stylesheets/bootstrap/bootstrap/_list-group.scss */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel {
  margin-bottom: 22px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 16, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-body {
  padding: 15px;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.panel-body:after {
  clear: both;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 27, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  color: inherit;
}

/* line 39, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

/* line 49, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-footer {
  padding: 10px 15px;
  background-color: #fafafa;
  border-top: 1px solid #eee;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 67, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 74, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 82, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 89, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 96, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 100, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.list-group + .panel-footer {
  border-top-width: 0;
}

/* line 110, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 115, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}

/* line 121, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

/* line 127, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 131, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 135, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 143, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 149, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 153, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 157, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 164, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #eee;
}

/* line 170, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 174, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 181, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 185, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 194, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 203, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 210, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

/* line 222, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-group {
  margin-bottom: 22px;
}

/* line 226, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 230, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 235, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-group .panel-heading {
  border-bottom: 0;
}

/* line 238, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #eee;
}

/* line 244, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-group .panel-footer {
  border-top: 0;
}

/* line 246, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #eee;
}

/* line 254, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-default {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading {
  color: #444;
  background-color: #fff;
  border-color: #cfdbe2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-default > .panel-heading .badge {
  color: #fff;
  background-color: #444;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 257, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-primary {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #3d45c0;
  border-color: #cfdbe2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-heading .badge {
  color: #3d45c0;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 260, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-success {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading {
  color: #fff;
  background-color: #27c24c;
  border-color: #cfdbe2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-success > .panel-heading .badge {
  color: #27c24c;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 263, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-info {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading {
  color: #fff;
  background-color: #3d45c0;
  border-color: #cfdbe2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-info > .panel-heading .badge {
  color: #3d45c0;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 266, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-warning {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading {
  color: #fff;
  background-color: #ff902b;
  border-color: #cfdbe2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-heading .badge {
  color: #ff902b;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 269, app/assets/stylesheets/bootstrap/bootstrap/_panels.scss */
.panel-danger {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading {
  color: #fff;
  background-color: #f05050;
  border-color: #cfdbe2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-heading .badge {
  color: #f05050;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 5, app/assets/stylesheets/bootstrap/bootstrap/_responsive-embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 12, app/assets/stylesheets/bootstrap/bootstrap/_responsive-embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* line 28, app/assets/stylesheets/bootstrap/bootstrap/_responsive-embed.scss */
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_responsive-embed.scss */
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_wells.scss */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 15, app/assets/stylesheets/bootstrap/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/_wells.scss */
.well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, app/assets/stylesheets/bootstrap/bootstrap/_wells.scss */
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 22.5px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

/* line 15, app/assets/stylesheets/bootstrap/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 30, app/assets/stylesheets/bootstrap/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 16, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 32, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

/* line 36, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  transform: translate(0, 0);
}

/* line 38, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 44, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 51, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

/* line 64, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 73, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 74, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 79, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 85, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 90, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.528571429;
}

/* line 97, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 103, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}

/* line 110, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-footer .btn + .btn, .modal-footer div.ColVis .ColVis_Button + .btn, div.ColVis .modal-footer .ColVis_Button + .btn, .modal-footer div.ColVis .btn + .ColVis_Button, div.ColVis .modal-footer .btn + .ColVis_Button, .modal-footer div.ColVis .ColVis_Button + .ColVis_Button, div.ColVis .modal-footer .ColVis_Button + .ColVis_Button {
  margin-left: 5px;
  margin-bottom: 0;
}

/* line 115, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn, .modal-footer .btn-group div.ColVis .ColVis_Button + .btn, div.ColVis .modal-footer .btn-group .ColVis_Button + .btn, .modal-footer .btn-group div.ColVis .btn + .ColVis_Button, div.ColVis .modal-footer .btn-group .btn + .ColVis_Button, .modal-footer .btn-group div.ColVis .ColVis_Button + .ColVis_Button, div.ColVis .modal-footer .btn-group .ColVis_Button + .ColVis_Button {
  margin-left: -1px;
}

/* line 119, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 125, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 136, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 140, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 145, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 149, app/assets/stylesheets/bootstrap/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.528571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13px;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

/* line 21, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 26, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #222;
  border-radius: 4px;
}

/* line 36, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #222;
}

/* line 52, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #222;
}

/* line 59, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #222;
}

/* line 66, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #222;
}

/* line 73, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #222;
}

/* line 80, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #222;
}

/* line 87, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #222;
}

/* line 94, app/assets/stylesheets/bootstrap/bootstrap/_tooltip.scss */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #222;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.528571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 15px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* line 27, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}

/* line 28, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 30, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 15px;
  background-color: #fafafa;
  border-bottom: 1px solid #ededed;
  border-radius: 5px 5px 0 0;
}

/* line 42, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 51, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 61, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover > .arrow {
  border-width: 11px;
}

/* line 64, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 70, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: #e1e1e1;
  bottom: -11px;
}

/* line 77, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fafafa;
}

/* line 85, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: #e1e1e1;
}

/* line 92, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fafafa;
}

/* line 100, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: #e1e1e1;
  top: -11px;
}

/* line 107, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fafafa;
}

/* line 116, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: #e1e1e1;
}

/* line 123, app/assets/stylesheets/bootstrap/bootstrap/_popovers.scss */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fafafa;
  bottom: -10px;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* line 16, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  transition: 0.6s ease-in-out left;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 16, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-inner > .item {
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
    perspective: 1000px;
  }
  /* line 34, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  /* line 39, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  /* line 44, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 59, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 63, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 70, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 73, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 76, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 81, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 84, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 93, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}

/* line 109, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

/* line 112, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

/* line 119, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 128, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}

/* line 138, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 143, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 148, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

/* line 158, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control .icon-prev:before {
  content: '\2039';
}

/* line 163, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-control .icon-next:before {
  content: '\203a';
}

/* line 174, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

/* line 185, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}

/* line 207, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

/* line 218, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 229, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
.carousel-caption .btn, .carousel-caption div.ColVis .ColVis_Button, div.ColVis .carousel-caption .ColVis_Button {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 240, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 249, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 253, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 260, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  /* line 267, app/assets/stylesheets/bootstrap/bootstrap/_carousel.scss */
  .carousel-indicators {
    bottom: 20px;
  }
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 36, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }
  /* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }
  /* line 12, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 54, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 59, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 64, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }
  /* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }
  /* line 12, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 73, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 78, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 83, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }
  /* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }
  /* line 12, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 92, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 97, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 102, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }
  /* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }
  /* line 12, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 111, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 116, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 121, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }
  /* line 10, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }
  /* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }
  /* line 12, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }
}

/* line 155, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 155, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 162, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 162, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 169, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 169, app/assets/stylesheets/bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

/* Global definition of media queries */
/* Utilities  */
/* Bootstrap reset */
/* line 14, app/assets/stylesheets/app/bootstrap-reset.scss */
*:focus {
  outline: 0 !important;
}

/* line 18, app/assets/stylesheets/app/bootstrap-reset.scss */
a {
  outline: none !important;
}

/* line 21, app/assets/stylesheets/app/bootstrap-reset.scss */
a.text-muted:hover, a.text-muted:focus {
  color: #748690;
}

/* line 27, app/assets/stylesheets/app/bootstrap-reset.scss */
hr {
  border-top: 1px solid #e4eaec;
}

/* line 32, app/assets/stylesheets/app/bootstrap-reset.scss */
[data-now] {
  display: inline-block;
}

/* line 37, app/assets/stylesheets/app/bootstrap-reset.scss */
.list-group {
  line-height: 1.3;
}

/* line 39, app/assets/stylesheets/app/bootstrap-reset.scss */
.list-group .list-group-item {
  padding: 10px;
}

/* line 41, app/assets/stylesheets/app/bootstrap-reset.scss */
.panel > .list-group .list-group-item {
  border-top: 0;
}

/* line 49, app/assets/stylesheets/app/bootstrap-reset.scss */
.navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 54, app/assets/stylesheets/app/bootstrap-reset.scss */
.page-header {
  border-bottom-color: #e4eaec;
}

/* line 59, app/assets/stylesheets/app/bootstrap-reset.scss */
.panel .panel-heading {
  border-bottom: 0;
  font-size: 14px;
}

/* line 62, app/assets/stylesheets/app/bootstrap-reset.scss */
.panel .panel-heading a {
  text-decoration: none !important;
}

/* line 66, app/assets/stylesheets/app/bootstrap-reset.scss */
.panel.panel-default {
  border-top-width: 3px;
}

/* line 71, app/assets/stylesheets/app/bootstrap-reset.scss */
.well {
  border: 1px solid #b7dde8;
}

/* line 75, app/assets/stylesheets/app/bootstrap-reset.scss */
.jumbotron {
  border: 1px solid #b7dde8;
}

@media only screen and (min-width: 768px) {
  /* line 75, app/assets/stylesheets/app/bootstrap-reset.scss */
  .jumbotron {
    padding: 30px 15px;
  }
}

/* line 82, app/assets/stylesheets/app/bootstrap-reset.scss */
.nav-tabs > li > a {
  font-weight: bold;
  color: #515253;
  background-color: #e9f4f7;
  margin: 0;
  border: 1px solid #b7dde8;
  border-radius: 0;
  padding: 10px 20px;
}

/* line 93, app/assets/stylesheets/app/bootstrap-reset.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: inherit;
  border-bottom-color: #fff;
}

/* line 98, app/assets/stylesheets/app/bootstrap-reset.scss */
.tab-content {
  padding: 10px 20px;
  border-style: solid;
  border-width: 0 1px 1px 1px;
  border-color: #b7dde8;
}

/* line 103, app/assets/stylesheets/app/bootstrap-reset.scss */
.nav-pills + .tab-content {
  border: 0;
  padding: 0;
}

/* line 110, app/assets/stylesheets/app/bootstrap-reset.scss */
.btn, div.ColVis .ColVis_Button {
  border-radius: 3px;
  font-size: 13px;
  border-color: transparent;
  -webkit-appearance: none;
  outline: none !important;
  transition: all 0.1s;
}

/* line 117, app/assets/stylesheets/app/bootstrap-reset.scss */
.btn.btn-link, div.ColVis .btn-link.ColVis_Button {
  box-shadow: none;
  border: 0;
}

/* line 121, app/assets/stylesheets/app/bootstrap-reset.scss */
.btn.btn-default, div.ColVis .ColVis_Button {
  border-color: #eaeaea;
}

/* line 124, app/assets/stylesheets/app/bootstrap-reset.scss */
.input-group .btn, .input-group div.ColVis .ColVis_Button, div.ColVis .input-group .ColVis_Button {
  font-size: 14px;
  border-color: #b7dde8;
}

/* line 128, app/assets/stylesheets/app/bootstrap-reset.scss */
.input-group .input-sm + .input-group-btn .btn, .input-group .input-sm + .input-group-btn div.ColVis .ColVis_Button, div.ColVis .input-group .input-sm + .input-group-btn .ColVis_Button, .input-group .input-group-sm > .form-control + .input-group-btn .btn, .input-group .input-group-sm > .form-control + .input-group-btn div.ColVis .ColVis_Button, div.ColVis .input-group .input-group-sm > .form-control + .input-group-btn .ColVis_Button, .input-group body .input-group-sm > .bootstrap-tagsinput + .input-group-btn .btn, .input-group body .input-group-sm > .bootstrap-tagsinput + .input-group-btn div.ColVis .ColVis_Button, div.ColVis .input-group body .input-group-sm > .bootstrap-tagsinput + .input-group-btn .ColVis_Button, body .input-group .input-group-sm > .bootstrap-tagsinput + .input-group-btn .btn, body .input-group .input-group-sm > .bootstrap-tagsinput + .input-group-btn div.ColVis .ColVis_Button, div.ColVis body .input-group .input-group-sm > .bootstrap-tagsinput + .input-group-btn .ColVis_Button,
.input-group .input-group-sm > .input-group-addon + .input-group-btn .btn,
.input-group .input-group-sm > .input-group-addon + .input-group-btn div.ColVis .ColVis_Button,
div.ColVis .input-group .input-group-sm > .input-group-addon + .input-group-btn .ColVis_Button,
.input-group .input-group-sm > .input-group-btn > .btn + .input-group-btn .btn,
.input-group div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button + .input-group-btn .btn,
div.ColVis .input-group .input-group-sm > .input-group-btn > .ColVis_Button + .input-group-btn .btn,
.input-group .input-group-sm > .input-group-btn > .btn + .input-group-btn div.ColVis .ColVis_Button,
div.ColVis .input-group .input-group-sm > .input-group-btn > .btn + .input-group-btn .ColVis_Button,
.input-group div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button + .input-group-btn .ColVis_Button,
div.ColVis .input-group .input-group-sm > .input-group-btn > .ColVis_Button + .input-group-btn .ColVis_Button {
  font-size: 13px;
}

/* line 135, app/assets/stylesheets/app/bootstrap-reset.scss */
.form-control, body .bootstrap-tagsinput {
  box-shadow: 0 0 0 #000 !important;
}

/* line 139, app/assets/stylesheets/app/bootstrap-reset.scss */
.input-sm, .input-group-sm > .form-control, body .input-group-sm > .bootstrap-tagsinput,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button,
select.input-sm {
  height: 31px;
}

/* line 144, app/assets/stylesheets/app/bootstrap-reset.scss */
fieldset {
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
  margin-bottom: 20px;
}

/* line 148, app/assets/stylesheets/app/bootstrap-reset.scss */
fieldset.last-child, fieldset:last-child {
  border-bottom: 0;
}

/* line 152, app/assets/stylesheets/app/bootstrap-reset.scss */
fieldset .form-group {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  /* line 159, app/assets/stylesheets/app/bootstrap-reset.scss */
  input[type="text"], input[type="email"], input[type="search"], input[type="password"] {
    -webkit-appearance: none;
  }
}

/* line 169, app/assets/stylesheets/app/bootstrap-reset.scss */
.table > thead > tr > th {
  border-bottom-width: 1px;
}

/* line 174, app/assets/stylesheets/app/bootstrap-reset.scss */
.table > tbody + tbody {
  border-bottom-width: 1px;
}

/* line 182, app/assets/stylesheets/app/bootstrap-reset.scss */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 1px;
}

/* line 190, app/assets/stylesheets/app/bootstrap-reset.scss */
.progress {
  box-shadow: 0 0 0 #000;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  background-color: #fff;
}

/* line 195, app/assets/stylesheets/app/bootstrap-reset.scss */
.progress .progress-bar {
  box-shadow: 0 0 0 #000;
}

/* line 203, app/assets/stylesheets/app/bootstrap-reset.scss */
.popover {
  box-shadow: 0 0 0 #000;
  border-color: #eee;
  border-bottom: 2px solid #e4eaec;
  border-radius: 3px;
}

/* line 208, app/assets/stylesheets/app/bootstrap-reset.scss */
.popover .popover-title {
  border: 0;
}

/* line 217, app/assets/stylesheets/app/bootstrap-reset.scss */
.nav.nav-pills .active > a {
  background-color: #3d45c0;
}

/* line 224, app/assets/stylesheets/app/bootstrap-reset.scss */
.dropdown-menu {
  border-radius: 3px;
}

/* line 228, app/assets/stylesheets/app/bootstrap-reset.scss */
.dropdown-header {
  color: #a1a2a3;
}

/* line 232, app/assets/stylesheets/app/bootstrap-reset.scss */
.navbar-top .navbar-nav > .active > a {
  color: #999;
}

/* line 234, app/assets/stylesheets/app/bootstrap-reset.scss */
.navbar-top .navbar-nav > .active > a:hover, .navbar-top .navbar-nav > .active > a:focus {
  color: #d1d2d3;
}

/* line 240, app/assets/stylesheets/app/bootstrap-reset.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
  color: #666;
}

/* line 242, app/assets/stylesheets/app/bootstrap-reset.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  color: #222;
}

/* line 250, app/assets/stylesheets/app/bootstrap-reset.scss */
.carousel .carousel-indicators {
  bottom: 0;
}

/* line 254, app/assets/stylesheets/app/bootstrap-reset.scss */
.carousel .carousel-control.left, .carousel .carousel-control.right {
  background-image: none;
}

/* line 259, app/assets/stylesheets/app/bootstrap-reset.scss */
.carousel .carousel-control em {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
}

/* line 275, app/assets/stylesheets/app/bootstrap-reset.scss */
.modal-backdrop {
  position: fixed;
  bottom: 0;
}

/* line 281, app/assets/stylesheets/app/bootstrap-reset.scss */
.topnavbar,
.navbar,
.navbar .dropdown-menu {
  filter: none !important;
}

/* line 293, app/assets/stylesheets/app/bootstrap-reset.scss */
.glyphicon {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 300, app/assets/stylesheets/app/bootstrap-reset.scss */
.glyphicon.glyphicon-chevron-right:before {
  content: "";
}

/* line 303, app/assets/stylesheets/app/bootstrap-reset.scss */
.glyphicon.glyphicon-chevron-left:before {
  content: "";
}

/* line 306, app/assets/stylesheets/app/bootstrap-reset.scss */
.glyphicon.glyphicon-chevron-up:before {
  content: "";
}

/* line 309, app/assets/stylesheets/app/bootstrap-reset.scss */
.glyphicon.glyphicon-chevron-down:before {
  content: "";
}

/* line 312, app/assets/stylesheets/app/bootstrap-reset.scss */
.glyphicon.glyphicon-folder-open:before {
  content: "";
}

/* Typography */
/* line 8, app/assets/stylesheets/app/typo.scss */
body {
  color: #495057;
  font-weight: 300;
}

/* line 14, app/assets/stylesheets/app/typo.scss */
h1, h2, h3, h4, .sidebar, .navbar-nav, .panel-footer, .panel-title, .font-modern {
  font-family: 'Kanit', sans-serif;
}

/* line 17, app/assets/stylesheets/app/typo.scss */
h1, h2, h3, h4, .sidebar, .navbar-nav, .panel-footer, .panel-title {
  font-weight: 400;
}

/* Layout */
/* ========================================================================
     Component: layout
 ========================================================================== */
/* line 34, app/assets/stylesheets/app/layout.scss */
html {
  /* $replace rtl */
  direction: ltr;
  height: 100%;
  touch-action: manipulation;
}

/* line 42, app/assets/stylesheets/app/layout.scss */
html, body {
  height: 100%;
}

/* line 49, app/assets/stylesheets/app/layout.scss */
.wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
}

/* line 55, app/assets/stylesheets/app/layout.scss */
.wrapper.ng-leave {
  display: none;
}

/* line 60, app/assets/stylesheets/app/layout.scss */
.wrapper > .aside {
  position: absolute;
  width: 250px;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 116;
  backface-visibility: hidden;
  background-color: #fff;
}

/* line 72, app/assets/stylesheets/app/layout.scss */
.wrapper > .aside .aside-inner {
  padding-top: 0px;
  height: 100%;
  width: 250px;
  overflow: hidden;
}

/* line 80, app/assets/stylesheets/app/layout.scss */
.wrapper > .aside > .nav-floating {
  left: inherit;
  margin-left: 250px;
  z-index: 1110;
  min-width: 190px;
  overflow: auto;
}

/* line 93, app/assets/stylesheets/app/layout.scss */
.wrapper .dropdown-backdrop {
  z-index: 109;
}

/* line 98, app/assets/stylesheets/app/layout.scss */
.wrapper > section {
  position: relative;
  height: auto;
  min-height: 700px;
  margin-left: 0;
  z-index: 111;
  background-color: #f5f7fa;
  margin-bottom: 60px !important;
}

/* line 110, app/assets/stylesheets/app/layout.scss */
.wrapper > footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  border-top: 1px solid #e4eaec;
  padding: 20px;
  z-index: 9;
}

/* line 120, app/assets/stylesheets/app/layout.scss */
.wrapper > footer > p {
  margin: 0;
}

/* line 125, app/assets/stylesheets/app/layout.scss */
.modal-open .wrapper {
  z-index: 0;
}

/* line 131, app/assets/stylesheets/app/layout.scss */
.content-wrapper {
  padding: 15px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: -1px;
}

/* line 138, app/assets/stylesheets/app/layout.scss */
.content-wrapper > .unwrap {
  margin: -15px;
}

@media only screen and (min-width: 768px) {
  /* line 138, app/assets/stylesheets/app/layout.scss */
  .content-wrapper > .unwrap {
    margin: -20px;
  }
}

/* line 145, app/assets/stylesheets/app/layout.scss */
.content-wrapper > h3,
.content-wrapper .content-heading {
  font-size: 26px;
  line-height: 1.1;
  color: #3e516b;
  margin: -15px;
  margin-bottom: 20px;
  padding: 15px;
  font-weight: normal;
  background-color: #fafbff;
  font-family: 'Kanit';
  font-weight: 600;
}

/* line 158, app/assets/stylesheets/app/layout.scss */
.content-wrapper > h3 > small,
.content-wrapper .content-heading > small {
  display: block;
  font-size: 12px;
  color: #909FA7;
}

/* line 164, app/assets/stylesheets/app/layout.scss */
.content-wrapper > button, .content-wrapper > .btn, div.ColVis .content-wrapper > .ColVis_Button {
  margin: 10px 10px 0 0;
}

/* line 168, app/assets/stylesheets/app/layout.scss */
.content-wrapper .container,
.content-wrapper .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (min-width: 768px) {
  /* line 131, app/assets/stylesheets/app/layout.scss */
  .content-wrapper {
    padding: 20px;
  }
  /* line 177, app/assets/stylesheets/app/layout.scss */
  .content-wrapper > h3,
.content-wrapper > .content-heading {
    margin: -20px;
    margin-bottom: 20px;
    padding: 20px;
  }
  /* line 183, app/assets/stylesheets/app/layout.scss */
  .content-wrapper > button, .content-wrapper > .btn, div.ColVis .content-wrapper > .ColVis_Button {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) {
  /* line 194, app/assets/stylesheets/app/layout.scss */
  body {
    min-height: 100%;
  }
  /* line 201, app/assets/stylesheets/app/layout.scss */
  .wrapper > .aside .aside-inner {
    padding-top: 55px;
  }
  /* line 206, app/assets/stylesheets/app/layout.scss */
  .wrapper > section,
.wrapper > footer {
    margin-left: 250px;
  }
  /* line 214, app/assets/stylesheets/app/layout.scss */
  .wrapper > section.has-sidebar-right {
    margin-right: 270px;
  }
  /* line 216, app/assets/stylesheets/app/layout.scss */
  .wrapper > section.has-sidebar-right + .offsidebar {
    z-index: 1;
  }
}

@media only screen and (max-width: 991px) {
  /* line 232, app/assets/stylesheets/app/layout.scss */
  .wrapper > .aside {
    margin-left: -250px;
  }
  /* line 238, app/assets/stylesheets/app/layout.scss */
  .aside-toggled .wrapper > section,
.aside-toggled .wrapper > footer {
    margin-left: 250px;
  }
  /* line 243, app/assets/stylesheets/app/layout.scss */
  .aside-toggled .wrapper > .aside {
    margin-left: 0;
  }
  /* line 251, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .wrapper {
    backface-visibility: hidden;
  }
  /* line 253, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .wrapper > section,
.csstransforms3d .wrapper > footer {
    margin-left: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease;
  }
  /* line 259, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .wrapper > .aside {
    margin-left: 0;
    transform: translate3d(-250px, 0, 0);
    transition: transform 0.3s ease;
  }
  /* line 269, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-toggled .wrapper > section,
.csstransforms3d .aside-toggled .wrapper > footer {
    transform: translate3d(250px, 0, 0);
  }
  /* line 273, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-toggled .wrapper > .aside {
    transform: translate3d(0, 0, 0);
  }
}

@media only screen and (max-width: 991px) {
  /* line 288, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed .wrapper > .aside {
    margin-left: -70px;
  }
  /* line 295, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed.aside-toggled .wrapper > section,
.aside-collapsed.aside-toggled .wrapper > footer {
    margin-left: 70px;
  }
  /* line 300, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed.aside-toggled .wrapper > .aside {
    margin-left: 0;
  }
  /* line 309, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed .wrapper {
    backface-visibility: hidden;
  }
  /* line 311, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed .wrapper > section,
.csstransforms3d .aside-collapsed .wrapper > footer {
    margin-left: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease;
  }
  /* line 317, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed .wrapper > .aside {
    margin-left: 0;
    transform: translate3d(-70px, 0, 0);
    transition: transform 0.3s ease;
  }
  /* line 327, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed.aside-toggled .wrapper > section,
.csstransforms3d .aside-collapsed.aside-toggled .wrapper > footer {
    transform: translate3d(70px, 0, 0);
  }
  /* line 331, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed.aside-toggled .wrapper > .aside {
    transform: translate3d(0, 0, 0);
  }
}

/* line 345, app/assets/stylesheets/app/layout.scss */
.aside-collapsed {
  overflow-y: auto;
}

/* line 349, app/assets/stylesheets/app/layout.scss */
.aside-collapsed .wrapper > .aside, .aside-collapsed .wrapper > .aside > .aside-inner {
  width: 70px;
}

/* line 352, app/assets/stylesheets/app/layout.scss */
.aside-collapsed .wrapper > .aside > .nav-floating {
  margin-left: 70px;
}

@media only screen and (min-width: 768px) {
  /* line 364, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed .wrapper > section,
.aside-collapsed .wrapper > footer {
    margin-left: 70px;
  }
}

@media only screen and (max-width: 991px) {
  /* line 379, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed-text .wrapper > .aside {
    margin-left: -120px;
  }
  /* line 386, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed-text.aside-toggled .wrapper > section,
.aside-collapsed-text.aside-toggled .wrapper > footer {
    margin-left: 120px;
  }
  /* line 391, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed-text.aside-toggled .wrapper > .aside {
    margin-left: 0;
  }
  /* line 400, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed-text .wrapper {
    backface-visibility: hidden;
  }
  /* line 402, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed-text .wrapper > section,
.csstransforms3d .aside-collapsed-text .wrapper > footer {
    margin-left: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease;
  }
  /* line 408, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed-text .wrapper > .aside {
    margin-left: 0;
    transform: translate3d(-120px, 0, 0);
    transition: transform 0.3s ease;
  }
  /* line 418, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed-text.aside-toggled .wrapper > section,
.csstransforms3d .aside-collapsed-text.aside-toggled .wrapper > footer {
    transform: translate3d(120px, 0, 0);
  }
  /* line 422, app/assets/stylesheets/app/layout.scss */
  .csstransforms3d .aside-collapsed-text.aside-toggled .wrapper > .aside {
    transform: translate3d(0, 0, 0);
  }
}

/* line 436, app/assets/stylesheets/app/layout.scss */
.aside-collapsed-text {
  overflow-y: auto;
}

/* line 440, app/assets/stylesheets/app/layout.scss */
.aside-collapsed-text .wrapper > .aside, .aside-collapsed-text .wrapper > .aside > .aside-inner {
  width: 120px;
}

/* line 443, app/assets/stylesheets/app/layout.scss */
.aside-collapsed-text .wrapper > .aside > .nav-floating {
  margin-left: 120px;
}

@media only screen and (min-width: 768px) {
  /* line 455, app/assets/stylesheets/app/layout.scss */
  .aside-collapsed-text .wrapper > section,
.aside-collapsed-text .wrapper > footer {
    margin-left: 120px;
  }
}

/* line 485, app/assets/stylesheets/app/layout.scss */
.layout .wrapper > .aside > .aside-inner > .sidebar {
  width: 250px;
  padding-bottom: 180px;
  position: fixed;
}

/* line 505, app/assets/stylesheets/app/layout.scss */
.offsidebar-open .layout .wrapper > .aside > .aside-inner > .sidebar {
  width: auto;
  padding-bottom: 180px;
  position: fixed;
}

@media (max-width: 1140px) {
  /* line 525, app/assets/stylesheets/app/layout.scss */
  .layout-fixed.aside-toggled, .layout-fixed.offsidebar-open {
    overflow-y: hidden;
  }
}

/* line 531, app/assets/stylesheets/app/layout.scss */
.layout-fixed .wrapper {
  /* only applied to sidebar */
}

/* line 532, app/assets/stylesheets/app/layout.scss */
.layout-fixed .wrapper .topnavbar-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 121;
}

/* line 538, app/assets/stylesheets/app/layout.scss */
.layout-fixed .wrapper > aside {
  position: fixed;
}

/* line 542, app/assets/stylesheets/app/layout.scss */
.layout-fixed .wrapper > .aside {
  /* safari fix */
  height: 1px;
  min-height: 100%;
  /* ios blanks space fix */
}

/* line 547, app/assets/stylesheets/app/layout.scss */
.layout-fixed .wrapper > .aside > .aside-inner {
  position: fixed;
  top: 0;
  bottom: 0;
}

/* line 551, app/assets/stylesheets/app/layout.scss */
.layout-fixed .wrapper > .aside > .aside-inner > .sidebar {
  width: 250px;
}

/* line 556, app/assets/stylesheets/app/layout.scss */
.layout-fixed .wrapper > section {
  margin-top: 114px;
}

@media only screen and (min-width: 768px) {
  /* line 556, app/assets/stylesheets/app/layout.scss */
  .layout-fixed .wrapper > section {
    margin-top: 55px;
  }
}

/* IE10+ hack: safari fix breaks ie so we need to target ie only to restore */
/* line 569, app/assets/stylesheets/app/layout.scss */
_:-ms-lang(x), .layout-fixed .wrapper > .aside > .aside-inner {
  position: static !important;
}

/* line 576, app/assets/stylesheets/app/layout.scss */
.layout-boxed {
  height: auto;
  min-height: 100%;
}

@media only screen and (min-width: 992px) {
  /* line 576, app/assets/stylesheets/app/layout.scss */
  .layout-boxed {
    overflow: auto !important;
  }
  /* line 584, app/assets/stylesheets/app/layout.scss */
  .layout-boxed .wrapper {
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.25);
  }
  /* line 589, app/assets/stylesheets/app/layout.scss */
  .layout-boxed .wrapper .offsidebar {
    position: absolute !important;
  }
  /* line 593, app/assets/stylesheets/app/layout.scss */
  .layout-boxed .wrapper > .aside {
    left: inherit;
  }
  /* line 596, app/assets/stylesheets/app/layout.scss */
  .layout-boxed .wrapper, .layout-boxed .wrapper .topnavbar-wrapper {
    width: 970px;
  }
  /* line 602, app/assets/stylesheets/app/layout.scss */
  .layout-boxed.layout-fixed .wrapper > .aside > .aside-inner {
    left: inherit;
  }
}

@media only screen and (min-width: 1200px) {
  /* line 610, app/assets/stylesheets/app/layout.scss */
  .layout-boxed .wrapper, .layout-boxed .wrapper .topnavbar-wrapper {
    width: 1140px;
  }
}

/* ========================================================================
   Component: layout-extra
 ========================================================================== */
/* line 8, app/assets/stylesheets/app/layout-extra.scss */
.hidden-footer .wrapper > footer {
  display: none;
}

/* line 11, app/assets/stylesheets/app/layout-extra.scss */
.hidden-footer .wrapper > section {
  margin-bottom: 0 !important;
}

/* line 20, app/assets/stylesheets/app/layout-extra.scss */
.layout-fs .wrapper > section {
  position: absolute;
  top: 114px;
  left: 0;
  right: 0;
  bottom: 60px;
  height: auto;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 480px) {
  /* line 20, app/assets/stylesheets/app/layout-extra.scss */
  .layout-fs .wrapper > section {
    overflow: hidden;
  }
}

@media only screen and (min-width: 768px) {
  /* line 20, app/assets/stylesheets/app/layout-extra.scss */
  .layout-fs .wrapper > section {
    top: 55px;
  }
}

/* line 39, app/assets/stylesheets/app/layout-extra.scss */
.layout-fs .wrapper > section > .content-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
}

/* line 48, app/assets/stylesheets/app/layout-extra.scss */
.layout-fs.hidden-footer .wrapper > section {
  bottom: 0;
}

/* line 55, app/assets/stylesheets/app/layout-extra.scss */
.d-table,
.d-table-fixed {
  display: table;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-spacing: 0;
}

/* line 64, app/assets/stylesheets/app/layout-extra.scss */
.d-table-fixed {
  table-layout: fixed;
}

/* line 68, app/assets/stylesheets/app/layout-extra.scss */
.d-row {
  display: table-row;
  height: 100%;
}

/* line 73, app/assets/stylesheets/app/layout-extra.scss */
.d-cell,
.d-cell-wrapper {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: top;
  overflow: auto;
}

/* line 85, app/assets/stylesheets/app/layout-extra.scss */
.d-cell-wrapper {
  display: block;
}

/* line 87, app/assets/stylesheets/app/layout-extra.scss */
.d-cell-wrapper .d-cell-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  /* line 99, app/assets/stylesheets/app/layout-extra.scss */
  .d-table-fixed {
    display: block;
  }
  /* line 101, app/assets/stylesheets/app/layout-extra.scss */
  .d-table-fixed > .d-cell {
    display: block;
    width: auto;
    height: auto;
  }
}

/* Target Firefox only */
@-moz-document url-prefix() {
  /* line 111, app/assets/stylesheets/app/layout-extra.scss */
  .d-table, .d-table-desktop {
    height: 240px;
    min-height: 100%;
  }
  /* line 115, app/assets/stylesheets/app/layout-extra.scss */
  .d-cell-inner {
    overflow: auto;
  }
}

/* line 121, app/assets/stylesheets/app/layout-extra.scss */
.fh {
  height: 100% !important;
}

/* line 124, app/assets/stylesheets/app/layout-extra.scss */
.fw {
  width: 100% !important;
}

/* line 127, app/assets/stylesheets/app/layout-extra.scss */
.scroll {
  overflow: auto;
}

/* line 130, app/assets/stylesheets/app/layout-extra.scss */
.scroll-y {
  overflow-y: auto;
}

/* line 133, app/assets/stylesheets/app/layout-extra.scss */
.scroll-y {
  overflow-y: auto;
}

/* line 142, app/assets/stylesheets/app/layout-extra.scss */
.layout-h .wrapper > section {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* line 146, app/assets/stylesheets/app/layout-extra.scss */
.layout-h .wrapper > section > .content-wrapper > h3 {
  display: none;
}

/* line 150, app/assets/stylesheets/app/layout-extra.scss */
.layout-h .wrapper > section {
  margin-top: 0;
}

/* line 153, app/assets/stylesheets/app/layout-extra.scss */
.layout-h .wrapper > .offsidebar {
  margin-top: 55px;
}

/* line 156, app/assets/stylesheets/app/layout-extra.scss */
.layout-h .wrapper > footer {
  margin: 0;
}

/* line 161, app/assets/stylesheets/app/layout-extra.scss */
.layout-h.layout-fixed .wrapper > section,
.layout-h.layout-fixed .wrapper > .offsidebar {
  margin-top: 55px;
}

/* line 175, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper {
  box-shadow: 0 0 0 #000;
}

/* line 177, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper > footer {
  border: 0;
}

/* line 180, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper > .aside {
  padding: 15px 0;
  background: transparent;
}

/* line 183, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper > .aside > .aside-inner {
  height: 100%;
  top: 15px;
  bottom: 15px;
  left: inherit;
}

/* line 189, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper > .aside .sidebar {
  border: 1px solid #e4eaec;
}

/* line 192, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper > .aside .sidebar:after {
  display: none;
}

@media only screen and (min-width: 768px) {
  /* line 197, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float .wrapper > section {
    padding-left: 15px;
  }
  /* line 200, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float .wrapper > footer {
    left: 15px;
  }
}

/* line 204, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper .content-wrapper {
  border: 0;
}

/* line 206, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper .content-wrapper > h3,
.aside-float .wrapper .content-wrapper > .content-heading {
  padding-top: 30px;
  border: 0;
  background-color: transparent;
}

/* line 212, app/assets/stylesheets/app/layout-extra.scss */
.aside-float .wrapper .content-wrapper > .unwrap {
  margin: 0 !important;
}

/* line 220, app/assets/stylesheets/app/layout-extra.scss */
.aside-float.aside-toggled .wrapper > .aside {
  transition-delay: 0.05s;
}

/* line 222, app/assets/stylesheets/app/layout-extra.scss */
.aside-float.aside-toggled .wrapper > .aside > .aside-inner {
  margin-left: 15px;
}

/* line 226, app/assets/stylesheets/app/layout-extra.scss */
.aside-float.aside-toggled .wrapper > section {
  padding-left: 15px;
}

/* line 229, app/assets/stylesheets/app/layout-extra.scss */
.aside-float.aside-toggled .wrapper > footer {
  left: 15px;
}

@media only screen and (min-width: 768px) {
  /* line 236, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float.aside-collapsed .topnavbar .navbar-header {
    width: 100px;
  }
  /* line 239, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float.aside-collapsed-text .topnavbar .navbar-header {
    width: 150px;
  }
  /* line 243, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float.layout-fs .wrapper > section > .content-wrapper {
    padding: 0 0 0 20px;
  }
  /* line 247, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float .wrapper > .aside > .aside-inner {
    margin-left: 15px;
  }
}

@media only screen and (min-width: 992px) {
  /* line 254, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float.layout-boxed .wrapper > .aside > .aside-inner {
    margin-left: 0;
  }
  /* line 257, app/assets/stylesheets/app/layout-extra.scss */
  .aside-float.layout-boxed .wrapper > section {
    padding-left: 0;
  }
}

/* line 265, app/assets/stylesheets/app/layout-extra.scss */
.aside-float.aside-toggled.layout-fs .wrapper > section > .content-wrapper {
  padding: 0 0 0 20px;
}

/* ========================================================================
   Component: layout-animation.less
 ========================================================================== */
/* line 5, app/assets/stylesheets/app/layout-animation.scss */
.wrapper > .aside {
  transition: width .2s cubic-bezier(0.35, 0, 0.25, 1), translate .2s cubic-bezier(0.35, 0, 0.25, 1);
}

/* line 8, app/assets/stylesheets/app/layout-animation.scss */
.aside-inner,
.navbar-header,
.sidebar > .nav > li {
  transition: width 0.2s cubic-bezier(0.35, 0, 0.25, 1);
}

/* line 13, app/assets/stylesheets/app/layout-animation.scss */
.wrapper > section {
  transition: margin-left 0.2s cubic-bezier(0.35, 0, 0.25, 1);
}

/* line 16, app/assets/stylesheets/app/layout-animation.scss */
.sidebar > .nav .label {
  animation: fadeInRight 1s;
  animation-fill-mode: both;
}

/* line 20, app/assets/stylesheets/app/layout-animation.scss */
.aside-collapsed .sidebar > .nav .label,
.aside-collapsed-text .sidebar > .nav .label {
  animation: fadeIn 1s;
}

/* line 24, app/assets/stylesheets/app/layout-animation.scss */
.sidebar .nav > li > a {
  animation: fadeInLeft 0.5s;
}

/* line 28, app/assets/stylesheets/app/layout-animation.scss */
.sidebar > .nav > .nav-heading,
.sidebar > .nav > li > a > span,
.navbar-brand .brand-logo {
  animation: fadeIn 1s;
}

/* line 34, app/assets/stylesheets/app/layout-animation.scss */
.sidebar li > a, .sidebar li > .nav-item,
.sidebar > .nav > .nav-heading {
  /*white-space: nowrap;*/
}

/* line 41, app/assets/stylesheets/app/layout-animation.scss */
.aside-collapsed .user-block-picture,
.aside-collapsed-text .user-block-picture {
  transition: width 0.2s cubic-bezier(0.35, 0, 0.25, 1);
}

/* line 44, app/assets/stylesheets/app/layout-animation.scss */
.aside-collapsed .user-block,
.aside-collapsed-text .user-block {
  transition: padding 0.2s cubic-bezier(0.35, 0, 0.25, 1);
}

/* line 35, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar {
  -webkit-backface-visibility: hidden;
  /* fixes chrome jump */
  margin-bottom: 0;
  border-radius: 0;
  background-color: #fff;
  z-index: 1050;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

@media only screen and (min-width: 768px) {
  /* line 45, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-header {
    width: 250px;
    text-align: center;
  }
  /* line 48, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-header .navbar-brand {
    width: 100%;
  }
}

/* line 58, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar {
  position: relative;
}

/* line 61, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-header {
  background-color: transparent;
}

@media only screen and (min-width: 768px) {
  /* line 61, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-header {
    background-image: none;
  }
}

/* line 69, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-header {
  position: relative;
  z-index: 11;
}

/* line 75, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-header .navbar-brand {
  padding: 0;
}

/* line 82, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-header .brand-logo > img,
.topnavbar .navbar-header .brand-logo-collapsed > img {
  margin: 0;
  height: 40px;
}

/* line 88, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-header .brand-logo {
  display: block;
  padding: 10px 15px;
}

/* line 92, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-header .brand-logo-collapsed {
  display: none;
  padding: 6px 15px;
}

/* line 98, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-nav > li > .navbar-text {
  color: #3d45c0;
}

/* line 102, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-nav > li > a,
.topnavbar .navbar-nav > .open > a {
  color: #3d45c0;
}

/* line 105, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-nav > li > a:hover, .topnavbar .navbar-nav > li > a:focus,
.topnavbar .navbar-nav > .open > a:hover,
.topnavbar .navbar-nav > .open > a:focus {
  color: #242973;
}

/* line 113, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-nav > .active > a, .topnavbar .navbar-nav > .active > a:hover, .topnavbar .navbar-nav > .active > a:focus,
.topnavbar .navbar-nav > .open > a,
.topnavbar .navbar-nav > .open > a:hover,
.topnavbar .navbar-nav > .open > a:focus {
  background-color: transparent;
}

/* line 119, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-nav > li > [data-toggle='navbar-search'] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  font-size: 16px;
  line-height: 55px;
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  transition: color 0.3s ease;
}

@media only screen and (min-width: 768px) {
  /* line 119, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-nav > li > [data-toggle='navbar-search'] {
    color: #fff;
  }
}

@media only screen and (max-width: 767px) {
  /* line 136, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-text {
    margin: 10px;
  }
}

@media only screen and (max-width: 767px) {
  /* line 144, app/assets/stylesheets/app/top-navbar.scss */
  .sidebar-toggle {
    position: absolute !important;
    top: 5px;
    right: 0;
    z-index: 3001;
  }
  /* line 150, app/assets/stylesheets/app/top-navbar.scss */
  .sidebar-toggle > em {
    color: white;
  }
}

/* line 157, app/assets/stylesheets/app/top-navbar.scss */
.nav-wrapper {
  padding: 0 15px;
  background-color: transparent;
}

/* line 162, app/assets/stylesheets/app/top-navbar.scss */
.nav-wrapper .nav.navbar-nav {
  float: left;
}

/* line 164, app/assets/stylesheets/app/top-navbar.scss */
.nav-wrapper .nav.navbar-nav.navbar-right {
  float: right;
}

/* line 168, app/assets/stylesheets/app/top-navbar.scss */
.nav-wrapper .nav > li {
  position: static;
  float: left;
}

/* line 174, app/assets/stylesheets/app/top-navbar.scss */
.nav-wrapper .navbar-nav .open .dropdown-menu {
  position: absolute;
  background-color: white;
  left: 0px;
  right: 0px;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

/* line 188, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-form {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  height: 55px;
  z-index: 9001;
  transition: all 0.3s;
  border: 0;
  border-bottom: 1px solid #e1e2e3;
}

/* line 201, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-form .form-group {
  height: 100%;
  width: 100%;
}

/* line 206, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-form .form-control, .topnavbar .navbar-form body .bootstrap-tagsinput, body .topnavbar .navbar-form .bootstrap-tagsinput {
  height: 100%;
  border: 0;
  border-radius: 0;
  width: 100%;
}

/* line 212, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-form.open {
  top: 0;
}

/* line 216, app/assets/stylesheets/app/top-navbar.scss */
.topnavbar .navbar-form .has-feedback .form-control-feedback {
  height: 30px;
  cursor: pointer;
  top: 50%;
  margin-top: -15px;
  line-height: 30px;
  margin-right: 10px;
  color: #c1c2c3;
  font-size: 1.5em;
  pointer-events: auto;
}

@media only screen and (min-width: 768px) {
  /* line 230, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-form {
    left: 250px;
  }
}

@media only screen and (min-width: 768px) {
  /* line 243, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar {
    border: 0;
    background-color: #3d45c0;
    background-image: linear-gradient(to right, #3d45c0 0%, #6369cd 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF3D45C0', endColorstr='#FF6369CD', GradientType=1);
  }
  /* line 249, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-header {
    background-image: none;
    background-repeat: no-repeat;
    filter: none;
  }
  /* line 254, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-nav > a {
    box-shadow: 0 0 0 #000 inset;
    transition: all 0.2s;
  }
  /* line 260, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-nav > .open > a, .topnavbar .navbar-nav > .open > a:hover, .topnavbar .navbar-nav > .open > a:focus {
    box-shadow: 0 -3px 0 #3d45c0 inset;
    transition: all 0.2s;
  }
  /* line 266, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-nav > li > .navbar-text {
    color: #fff;
  }
  /* line 270, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-nav > li > a,
.topnavbar .navbar-nav > .open > a {
    color: #fff;
  }
  /* line 273, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-nav > li > a:hover, .topnavbar .navbar-nav > li > a:focus,
.topnavbar .navbar-nav > .open > a:hover,
.topnavbar .navbar-nav > .open > a:focus {
    color: #242973;
  }
  /* line 279, app/assets/stylesheets/app/top-navbar.scss */
  .topnavbar .navbar-nav > li > [data-toggle='navbar-search'] {
    position: static;
  }
  /* line 286, app/assets/stylesheets/app/top-navbar.scss */
  .nav-wrapper {
    position: relative;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
    z-index: 10;
  }
  /* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
  .nav-wrapper:before, .nav-wrapper:after {
    content: " ";
    display: table;
  }
  /* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
  .nav-wrapper:after {
    clear: both;
  }
  /* line 295, app/assets/stylesheets/app/top-navbar.scss */
  .nav-wrapper .nav > li {
    position: relative;
  }
  /* line 300, app/assets/stylesheets/app/top-navbar.scss */
  .nav-wrapper .navbar-nav .open .dropdown-menu {
    left: auto;
    right: auto;
  }
  /* line 304, app/assets/stylesheets/app/top-navbar.scss */
  .nav-wrapper .navbar-nav.navbar-right .open .dropdown-menu {
    left: auto;
    right: 0;
  }
}

@media only screen and (min-width: 768px) {
  /* line 315, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed .topnavbar .navbar-header .brand-logo {
    display: none;
  }
  /* line 316, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed .topnavbar .navbar-header .brand-logo-collapsed {
    display: block;
  }
  /* line 319, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed .topnavbar .navbar-header {
    width: 70px;
  }
  /* line 323, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed .topnavbar .navbar-form {
    left: 70px;
  }
}

@media only screen and (min-width: 768px) {
  /* line 335, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed-text .topnavbar .navbar-header .brand-logo {
    display: none;
  }
  /* line 336, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed-text .topnavbar .navbar-header .brand-logo-collapsed {
    display: block;
  }
  /* line 339, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed-text .topnavbar .navbar-header {
    width: 120px;
  }
  /* line 343, app/assets/stylesheets/app/top-navbar.scss */
  .aside-collapsed-text .topnavbar .navbar-form {
    left: 120px;
  }
}

/* line 24, app/assets/stylesheets/app/sidebar.scss */
.sidebar {
  height: 100%;
  padding-bottom: 20px;
  background-color: #fff;
  overflow-x: hidden;
}

/* line 32, app/assets/stylesheets/app/sidebar.scss */
.sidebar:after {
  content: "";
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  -webkit-transform: translateZ(0px);
}

/* line 44, app/assets/stylesheets/app/sidebar.scss */
.sidebar .nav-heading {
  padding: 12px 15px;
  color: #919DA8;
  font-size: 13px;
  letter-spacing: .035em;
  pointer-events: none;
  cursor: default;
}

/* line 55, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav {
  position: relative;
}

/* line 59, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > .nav-heading:first-child {
  padding-top: 20px;
}

/* line 63, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > li {
  border-bottom: 1px solid #31427e;
  border-left: 3px solid transparent;
  transition: border-left-color 0.4s ease;
}

/* line 68, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > li > a,
.sidebar > .nav > li > .nav-item {
  padding: 8px 24px;
  color: #f8f9fc;
  letter-spacing: .025em;
  font-weight: normal;
  cursor: pointer;
}

/* line 76, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > li > a:focus, .sidebar > .nav > li > a:hover,
.sidebar > .nav > li > .nav-item:focus,
.sidebar > .nav > li > .nav-item:hover {
  text-decoration: none;
  outline: none;
  color: #3d45c0;
}

/* line 82, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > li > a > em,
.sidebar > .nav > li > .nav-item > em {
  width: 1.8em;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: inherits;
}

/* line 96, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > li.active,
.sidebar > .nav > li.active > a,
.sidebar > .nav > li.active > .nav-item,
.sidebar > .nav > li.active .nav, .sidebar > .nav > li.open,
.sidebar > .nav > li.open > a,
.sidebar > .nav > li.open > .nav-item,
.sidebar > .nav > li.open .nav {
  background-color: #fcfcfc;
  color: #3d45c0;
}

/* line 103, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > li.active > .nav-item > em,
.sidebar > .nav > li.active > a > em, .sidebar > .nav > li.open > .nav-item > em,
.sidebar > .nav > li.open > a > em {
  color: #3d45c0;
}

/* line 109, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav > li.active {
  border-left-color: #3d45c0;
}

/* line 113, app/assets/stylesheets/app/sidebar.scss */
.sidebar > .nav .label {
  display: block;
}

@media only screen and (min-width: 1025px) {
  /* line 122, app/assets/stylesheets/app/sidebar.scss */
  .sidebar:not(.show-scrollbar) {
    margin-right: -17px;
    overflow-y: scroll;
  }
}

/* line 129, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav {
  background-color: #fff !important;
}

/* line 132, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > .sidebar-subnav-header {
  color: #f8f9fc;
  display: none;
  padding: 10px 20px;
  font-weight: normal;
}

/* line 139, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > li {
  border-left: 0 !important;
}

/* line 141, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > li > a,
.sidebar-subnav > li > .nav-item {
  display: block;
  position: relative;
  padding: 10px 20px;
  border-bottom: 1px dotted #ffffff29;
  line-height: 1.3em;
  padding-left: 43px;
  font-weight: normal;
  background-color: transparent !important;
  color: #f8f9fc !important;
}

/* line 152, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > li > a:focus, .sidebar-subnav > li > a:hover,
.sidebar-subnav > li > .nav-item:focus,
.sidebar-subnav > li > .nav-item:hover {
  color: #3d45c0;
}

/* line 156, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > li > a > em,
.sidebar-subnav > li > .nav-item > em {
  display: inline-block;
  width: 1.8em;
  margin: 0 0 0 -2em;
}

/* line 164, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > li.active > a,
.sidebar-subnav > li.active > .nav-item {
  color: #3d45c0;
}

/* line 167, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > li.active > a:after,
.sidebar-subnav > li.active > .nav-item:after {
  border-color: #3d45c0;
  background-color: #3d45c0;
}

/* line 175, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav > li .nav > li {
  padding-left: 5px;
}

/* line 183, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav.nav-floating {
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-left: -1px;
}

/* line 187, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav.nav-floating, .sidebar-subnav.nav-floating .collapse {
  height: auto !important;
  display: block !important;
  visibility: visible !important;
}

/* line 192, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav.nav-floating > .sidebar-subnav-header {
  display: block;
}

/* line 196, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav.nav-floating li > a,
.sidebar-subnav.nav-floating li > .nav-item {
  padding-left: 20px;
}

/* line 200, app/assets/stylesheets/app/sidebar.scss */
.sidebar-subnav.nav-floating li > a em,
.sidebar-subnav.nav-floating li > .nav-item em {
  margin-left: 0;
}

@media only screen and (min-width: 992px) {
  /* line 214, app/assets/stylesheets/app/sidebar.scss */
  .sidebar > .nav .label {
    margin: 2px 0 0 0;
  }
}

/* line 225, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar,
.aside-collapsed-text .sidebar {
  overflow-x: hidden;
}

/* line 230, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar > .nav .nav,
.aside-collapsed .sidebar > .nav > .nav-heading,
.aside-collapsed .sidebar > .nav > li > .nav-item > span,
.aside-collapsed .sidebar > .nav > li > a > span,
.aside-collapsed-text .sidebar > .nav .nav,
.aside-collapsed-text .sidebar > .nav > .nav-heading,
.aside-collapsed-text .sidebar > .nav > li > .nav-item > span,
.aside-collapsed-text .sidebar > .nav > li > a > span {
  display: none !important;
}

/* line 237, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar > .nav > li,
.aside-collapsed-text .sidebar > .nav > li {
  width: 69px;
}

/* line 239, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar > .nav > li > a, .aside-collapsed .sidebar > .nav > li > .nav-item,
.aside-collapsed-text .sidebar > .nav > li > a,
.aside-collapsed-text .sidebar > .nav > li > .nav-item {
  text-indent: -3px;
  padding: 20px 0;
  text-align: center;
}

/* line 243, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar > .nav > li > a > em, .aside-collapsed .sidebar > .nav > li > .nav-item > em,
.aside-collapsed-text .sidebar > .nav > li > a > em,
.aside-collapsed-text .sidebar > .nav > li > .nav-item > em {
  font-size: 1.6em;
  width: auto;
}

/* line 247, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar > .nav > li > a:focus, .aside-collapsed .sidebar > .nav > li > .nav-item:focus,
.aside-collapsed-text .sidebar > .nav > li > a:focus,
.aside-collapsed-text .sidebar > .nav > li > .nav-item:focus {
  background-color: transparent;
}

/* line 249, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar > .nav > li > a:focus > em, .aside-collapsed .sidebar > .nav > li > .nav-item:focus > em,
.aside-collapsed-text .sidebar > .nav > li > a:focus > em,
.aside-collapsed-text .sidebar > .nav > li > .nav-item:focus > em {
  color: inherit;
}

/* line 259, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed .sidebar .nav .label,
.aside-collapsed-text .sidebar .nav .label {
  position: absolute;
  top: 10px;
  right: 5px;
  text-indent: 0;
}

/* line 275, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed-text .sidebar > .nav > li > .nav-item > span,
.aside-collapsed-text .sidebar > .nav > li > a > span {
  display: block !important;
  font-size: 15px;
}

/* line 281, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed-text .sidebar > .nav > li {
  width: 118px;
}

/* line 283, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed-text .sidebar > .nav > li > a {
  padding: 15px 0;
}

/* line 285, app/assets/stylesheets/app/sidebar.scss */
.aside-collapsed-text .sidebar > .nav > li > a > em {
  font-size: 1.4em;
}

/* line 15, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 265px;
  margin-top: 114px;
  border-left: 1px solid #cccccc;
  background-color: #fff;
  color: #515253;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: -1;
}

/* line 29, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar > nav {
  min-height: 100%;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
}

/* line 35, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar .progress {
  border: 0;
}

/* line 40, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar .nav > li > a:hover, .offsidebar .nav > li > a:focus {
  background-color: rgba(0, 0, 0, 0.025);
}

/* line 45, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar .tab-content {
  padding: 0;
  border: 0;
}

/* line 50, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar .nav-tabs.nav-justified > li > a, .offsidebar .nav-tabs.nav-justified > li > a:hover, .offsidebar .nav-tabs.nav-justified > li > a:focus {
  background-color: transparent;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  color: #909FA7;
}

/* line 58, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar .nav-tabs.nav-justified > li.active > a {
  color: #3d45c0;
}

@media only screen and (min-width: 768px) {
  /* line 15, app/assets/stylesheets/app/offsidebar.scss */
  .offsidebar {
    margin-top: 55px;
  }
}

/* line 71, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar-open .offsidebar {
  overflow-y: auto;
  z-index: 116;
}

@media only screen and (min-width: 768px) {
  /* line 70, app/assets/stylesheets/app/offsidebar.scss */
  .offsidebar-open {
    overflow-y: auto;
  }
}

/* line 81, app/assets/stylesheets/app/offsidebar.scss */
.offsidebar {
  right: -265px;
}

/* line 86, app/assets/stylesheets/app/offsidebar.scss */
.no-csstransforms3d .offsidebar-open .offsidebar {
  right: 0;
}

/* Transformation ready devices*/
/* line 94, app/assets/stylesheets/app/offsidebar.scss */
.csstransforms3d .offsidebar {
  right: 0;
  transform: translate3d(265px, 0, 0);
  transition: transform 0.3s ease, z-index 0s linear 0.3s;
}

/* line 100, app/assets/stylesheets/app/offsidebar.scss */
.csstransforms3d .offsidebar-open .offsidebar {
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease;
}

/* line 56, app/assets/stylesheets/application.css.scss */
.layout {
  padding-top: 60px;
}

/* line 59, app/assets/stylesheets/application.css.scss */
.blank_page {
  height: 100%;
}

/* Components */
/* ========================================================================
   Component: breadcrumbs
 ========================================================================== */
/* line 5, app/assets/stylesheets/app/breadcrumbs.scss */
.breadcrumb {
  font-weight: normal;
  border-radius: 0;
  color: #909FA7;
  padding: 10px 20px;
}

/* line 15, app/assets/stylesheets/app/breadcrumbs.scss */
h3 + .breadcrumb,
.content-heading + .breadcrumb {
  margin: -25px -25px 20px -20px;
  background-color: #fafbff;
  border-top: 1px solid #cfdbe2;
  border-bottom: 1px solid #cfdbe2;
}

/* line 22, app/assets/stylesheets/app/breadcrumbs.scss */
h3 > .breadcrumb,
.content-heading > .breadcrumb {
  background: transparent;
  font-size: 13px;
  border: 0;
  padding: 10px 10px 0 0;
  margin-bottom: 0;
}

/* line 29, app/assets/stylesheets/app/breadcrumbs.scss */
h3 > .breadcrumb.pull-right,
.content-heading > .breadcrumb.pull-right {
  margin: -2px 0 0;
}

/* line 28, app/assets/stylesheets/app/button-extra.scss */
.btn-inverse {
  color: #fff;
  background-color: #131e26;
  border-color: #131e26;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-inverse:focus, .btn-inverse.focus {
  color: #fff;
  background-color: #0c1318;
  border-color: #05090b;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-inverse:hover {
  color: #fff;
  background-color: #0c1318;
  border-color: #05090b;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-inverse:active, .btn-inverse.active, .open > .btn-inverse.dropdown-toggle {
  color: #fff;
  background-color: #0c1318;
  border-color: #05090b;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-inverse:active:hover, .btn-inverse:active:focus, .btn-inverse.focus:active, .btn-inverse.active:hover, .btn-inverse.active:focus, .btn-inverse.active.focus, .open > .btn-inverse.dropdown-toggle:hover, .open > .btn-inverse.dropdown-toggle:focus, .open > .btn-inverse.dropdown-toggle.focus {
  color: #fff;
  background-color: #0c1318;
  border-color: #05090b;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-inverse:active, .btn-inverse.active, .open > .btn-inverse.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-inverse.disabled:hover, .btn-inverse.disabled:focus, .btn-inverse.disabled.focus, .btn-inverse[disabled]:hover, .btn-inverse[disabled]:focus, .btn-inverse.focus[disabled], fieldset[disabled] .btn-inverse:hover, fieldset[disabled] .btn-inverse:focus, fieldset[disabled] .btn-inverse.focus {
  background-color: #131e26;
  border-color: #131e26;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-inverse .badge {
  color: #131e26;
  background-color: #fff;
}

/* line 32, app/assets/stylesheets/app/button-extra.scss */
.btn-green {
  color: #fff;
  background-color: #37bc9b;
  border-color: rgba(0, 0, 0, 0);
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-green:focus, .btn-green.focus {
  color: #fff;
  background-color: #32ac8e;
  border-color: rgba(0, 0, 0, 0);
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-green:hover {
  color: #fff;
  background-color: #32ac8e;
  border-color: rgba(0, 0, 0, 0);
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-green:active, .btn-green.active, .open > .btn-green.dropdown-toggle {
  color: #fff;
  background-color: #32ac8e;
  border-color: rgba(0, 0, 0, 0);
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-green:active:hover, .btn-green:active:focus, .btn-green.focus:active, .btn-green.active:hover, .btn-green.active:focus, .btn-green.active.focus, .open > .btn-green.dropdown-toggle:hover, .open > .btn-green.dropdown-toggle:focus, .open > .btn-green.dropdown-toggle.focus {
  color: #fff;
  background-color: #32ac8e;
  border-color: rgba(0, 0, 0, 0);
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-green:active, .btn-green.active, .open > .btn-green.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-green.disabled:hover, .btn-green.disabled:focus, .btn-green.disabled.focus, .btn-green[disabled]:hover, .btn-green[disabled]:focus, .btn-green.focus[disabled], fieldset[disabled] .btn-green:hover, fieldset[disabled] .btn-green:focus, fieldset[disabled] .btn-green.focus {
  background-color: #37bc9b;
  border-color: rgba(0, 0, 0, 0);
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-green .badge {
  color: #37bc9b;
  background-color: #fff;
}

/* line 36, app/assets/stylesheets/app/button-extra.scss */
.btn-purple {
  color: #fff;
  background-color: #7266ba;
  border-color: rgba(0, 0, 0, 0);
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-purple:focus, .btn-purple.focus {
  color: #fff;
  background-color: #6558b4;
  border-color: rgba(0, 0, 0, 0);
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-purple:hover {
  color: #fff;
  background-color: #6558b4;
  border-color: rgba(0, 0, 0, 0);
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-purple:active, .btn-purple.active, .open > .btn-purple.dropdown-toggle {
  color: #fff;
  background-color: #6558b4;
  border-color: rgba(0, 0, 0, 0);
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-purple:active:hover, .btn-purple:active:focus, .btn-purple.focus:active, .btn-purple.active:hover, .btn-purple.active:focus, .btn-purple.active.focus, .open > .btn-purple.dropdown-toggle:hover, .open > .btn-purple.dropdown-toggle:focus, .open > .btn-purple.dropdown-toggle.focus {
  color: #fff;
  background-color: #6558b4;
  border-color: rgba(0, 0, 0, 0);
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-purple:active, .btn-purple.active, .open > .btn-purple.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-purple.disabled:hover, .btn-purple.disabled:focus, .btn-purple.disabled.focus, .btn-purple[disabled]:hover, .btn-purple[disabled]:focus, .btn-purple.focus[disabled], fieldset[disabled] .btn-purple:hover, fieldset[disabled] .btn-purple:focus, fieldset[disabled] .btn-purple.focus {
  background-color: #7266ba;
  border-color: rgba(0, 0, 0, 0);
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-purple .badge {
  color: #7266ba;
  background-color: #fff;
}

/* line 40, app/assets/stylesheets/app/button-extra.scss */
.btn-pink {
  color: #fff;
  background-color: #f532e5;
  border-color: rgba(0, 0, 0, 0);
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-pink:focus, .btn-pink.focus {
  color: #fff;
  background-color: #f41fe3;
  border-color: rgba(0, 0, 0, 0);
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-pink:hover {
  color: #fff;
  background-color: #f41fe3;
  border-color: rgba(0, 0, 0, 0);
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-pink:active, .btn-pink.active, .open > .btn-pink.dropdown-toggle {
  color: #fff;
  background-color: #f41fe3;
  border-color: rgba(0, 0, 0, 0);
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-pink:active:hover, .btn-pink:active:focus, .btn-pink.focus:active, .btn-pink.active:hover, .btn-pink.active:focus, .btn-pink.active.focus, .open > .btn-pink.dropdown-toggle:hover, .open > .btn-pink.dropdown-toggle:focus, .open > .btn-pink.dropdown-toggle.focus {
  color: #fff;
  background-color: #f41fe3;
  border-color: rgba(0, 0, 0, 0);
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-pink:active, .btn-pink.active, .open > .btn-pink.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-pink.disabled:hover, .btn-pink.disabled:focus, .btn-pink.disabled.focus, .btn-pink[disabled]:hover, .btn-pink[disabled]:focus, .btn-pink.focus[disabled], fieldset[disabled] .btn-pink:hover, fieldset[disabled] .btn-pink:focus, fieldset[disabled] .btn-pink.focus {
  background-color: #f532e5;
  border-color: rgba(0, 0, 0, 0);
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.btn-pink .badge {
  color: #f532e5;
  background-color: #fff;
}

/* line 46, app/assets/stylesheets/app/button-extra.scss */
.btn-flat {
  border-bottom-width: 1px;
  border-radius: 0;
  box-shadow: 0 0 0 #000;
}

/* line 54, app/assets/stylesheets/app/button-extra.scss */
.btn-xl {
  padding: 20px 16px;
  font-size: 18px;
}

/* line 61, app/assets/stylesheets/app/button-extra.scss */
.btn-square {
  border-radius: 0;
}

/* line 68, app/assets/stylesheets/app/button-extra.scss */
.btn-pill-left, .btn-oval {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding-left: 18px;
}

/* line 74, app/assets/stylesheets/app/button-extra.scss */
.btn-pill-right, .btn-oval {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding-right: 18px;
}

/* line 90, app/assets/stylesheets/app/button-extra.scss */
.btn-labeled {
  padding-top: 0;
  padding-bottom: 0;
}

/* line 95, app/assets/stylesheets/app/button-extra.scss */
.btn-label {
  position: relative;
  background: transparent;
  background: rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 6px 16px;
  left: -16px;
  border-radius: 3px 0 0 3px;
}

/* line 18, app/assets/stylesheets/app/button-extra.scss */
.btn-label.btn-label-right {
  left: auto;
  right: -16px;
  border-radius: 0 3px 3px 0;
}

/* line 103, app/assets/stylesheets/app/button-extra.scss */
.btn-lg .btn-label, .btn-group-lg > .btn .btn-label, div.ColVis .btn-group-lg > .ColVis_Button .btn-label {
  padding: 10px 20px;
  left: -20px;
  border-radius: 5px 0 0 5px;
}

/* line 18, app/assets/stylesheets/app/button-extra.scss */
.btn-lg .btn-label.btn-label-right, .btn-group-lg > .btn .btn-label.btn-label-right, div.ColVis .btn-group-lg > .ColVis_Button .btn-label.btn-label-right {
  left: auto;
  right: -20px;
  border-radius: 0 5px 5px 0;
}

/* line 106, app/assets/stylesheets/app/button-extra.scss */
.btn-sm .btn-label, .btn-group-sm > .btn .btn-label, div.ColVis .btn-group-sm > .ColVis_Button .btn-label {
  padding: 5px 10px;
  left: -10px;
  border-radius: 2px 0 0 2px;
}

/* line 18, app/assets/stylesheets/app/button-extra.scss */
.btn-sm .btn-label.btn-label-right, .btn-group-sm > .btn .btn-label.btn-label-right, div.ColVis .btn-group-sm > .ColVis_Button .btn-label.btn-label-right {
  left: auto;
  right: -10px;
  border-radius: 0 2px 2px 0;
}

/* line 109, app/assets/stylesheets/app/button-extra.scss */
.btn-xs .btn-label, .btn-group-xs > .btn .btn-label, div.ColVis .btn-group-xs > .ColVis_Button .btn-label {
  padding: 1px 5px;
  left: -5px;
  border-radius: 2px 0 0 2px;
}

/* line 18, app/assets/stylesheets/app/button-extra.scss */
.btn-xs .btn-label.btn-label-right, .btn-group-xs > .btn .btn-label.btn-label-right, div.ColVis .btn-group-xs > .ColVis_Button .btn-label.btn-label-right {
  left: auto;
  right: -5px;
  border-radius: 0 2px 2px 0;
}

/* line 122, app/assets/stylesheets/app/button-extra.scss */
.btn-fw {
  min-width: 80px;
}

/* line 124, app/assets/stylesheets/app/button-extra.scss */
.btn-fw.btn-sm, .btn-group-sm > .btn-fw.btn, div.ColVis .btn-group-sm > .btn-fw.ColVis_Button {
  min-width: 40px;
}

/* line 127, app/assets/stylesheets/app/button-extra.scss */
.btn-fw.btn-md {
  min-width: 60px;
}

/* line 130, app/assets/stylesheets/app/button-extra.scss */
.btn-fw.btn-lg, .btn-group-lg > .btn-fw.btn, div.ColVis .btn-group-lg > .btn-fw.ColVis_Button {
  min-width: 140px;
}

/* line 141, app/assets/stylesheets/app/button-extra.scss */
.btn-circle {
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 12px;
  line-height: 35px;
  border-radius: 500px;
  padding: 0;
  border: 0;
}

/* line 151, app/assets/stylesheets/app/button-extra.scss */
.btn-circle > * {
  line-height: inherit !important;
}

/* line 154, app/assets/stylesheets/app/button-extra.scss */
.btn-circle.btn-lg, .btn-group-lg > .btn-circle.btn, div.ColVis .btn-group-lg > .btn-circle.ColVis_Button {
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
}

/* line 166, app/assets/stylesheets/app/button-extra.scss */
.btn-outline {
  background-color: transparent;
}

/* line 168, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-default, div.ColVis .btn-outline.ColVis_Button {
  border-color: #eaeaea;
  color: #333 !important;
}

/* line 169, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-primary {
  border-color: #3d45c0;
  color: #3d45c0;
}

/* line 170, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-success {
  border-color: #27c24c;
  color: #27c24c;
}

/* line 171, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-info {
  border-color: #3d45c0;
  color: #3d45c0;
}

/* line 172, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-warning {
  border-color: #ff902b;
  color: #ff902b;
}

/* line 173, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-danger {
  border-color: #f05050;
  color: #f05050;
}

/* line 174, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-inverse {
  border-color: #131e26;
  color: #131e26;
}

/* line 175, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-green {
  border-color: #37bc9b;
  color: #37bc9b;
}

/* line 176, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-purple {
  border-color: #7266ba;
  color: #7266ba;
}

/* line 177, app/assets/stylesheets/app/button-extra.scss */
.btn-outline.btn-pink {
  border-color: #f532e5;
  color: #f532e5;
}

/* line 178, app/assets/stylesheets/app/button-extra.scss */
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.hover, .btn-outline.focus, .btn-outline.active {
  color: #fff;
}

/* line 24, app/assets/stylesheets/app/placeholder.scss */
.box-placeholder {
  margin-bottom: 15px;
  padding: 20px;
  border: 1px dashed #ddd;
  background: #fafafa;
  color: #444;
}

/* line 35, app/assets/stylesheets/app/placeholder.scss */
.box-placeholder > :last-child {
  margin-bottom: 0;
}

/* line 39, app/assets/stylesheets/app/placeholder.scss */
.box-placeholder-lg {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* line 13, app/assets/stylesheets/app/panels.scss */
.panel .table {
  margin-bottom: 0;
  border: 0;
}

/* line 17, app/assets/stylesheets/app/panels.scss */
.panel.panel-transparent {
  border: 0;
  background-color: transparent;
  box-shadow: 0 0 0 #000;
}

/* line 21, app/assets/stylesheets/app/panels.scss */
.panel.panel-transparent .panel-heading,
.panel.panel-transparent .panel-body {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

/* line 30, app/assets/stylesheets/app/panels.scss */
.panel-flat {
  margin: 0 !important;
  border: 0;
}

/* line 36, app/assets/stylesheets/app/panels.scss */
.panel-group .panel-flat {
  box-shadow: 0 0 0 #000;
}

/* line 38, app/assets/stylesheets/app/panels.scss */
.panel-group .panel-flat:first-child {
  border-radius: 4px 4px 0 0;
}

/* line 41, app/assets/stylesheets/app/panels.scss */
.panel-group .panel-flat:last-child {
  border-radius: 0 0 4px 4px;
}

/* line 48, app/assets/stylesheets/app/panels.scss */
.panel-heading > a[data-tool] {
  display: inline-block;
  color: #fff;
  width: 2em;
  text-align: center;
}

/* line 56, app/assets/stylesheets/app/panels.scss */
.panel-default .panel-heading > a[data-tool] {
  color: #c1c2c3;
}

/* line 62, app/assets/stylesheets/app/panels.scss */
.panel-heading > .label.pull-right {
  margin-top: 3px;
}

/* line 64, app/assets/stylesheets/app/panels.scss */
.panel-heading > .label.pull-right + .label.pull-right {
  margin-right: 10px;
}

/* line 68, app/assets/stylesheets/app/panels.scss */
.panel-heading.panel-heading-collapsed {
  border-radius: 3px;
}

/* line 74, app/assets/stylesheets/app/panels.scss */
.panel-footer .pagination {
  margin: 0;
}

/* line 77, app/assets/stylesheets/app/panels.scss */
.panel-footer .radial-bar {
  margin-bottom: 0;
}

/* line 80, app/assets/stylesheets/app/panels.scss */
.panel-footer p {
  margin-bottom: 0;
}

/* line 86, app/assets/stylesheets/app/panels.scss */
.panel-heading-active {
  background-color: #27c24c !important;
  font-weight: bold;
  font-size: 16px;
}

/* line 90, app/assets/stylesheets/app/panels.scss */
.panel-heading-active > a {
  padding: 15px 0;
  color: #fff !important;
  transition: padding 0.5s ease;
}

/* line 95, app/assets/stylesheets/app/panels.scss */
.panel-heading-active + .panel-collapse:after {
  content: "";
  display: block;
  width: 60%;
  margin: 0 auto;
  height: 0;
  border-bottom: 1px solid #e1e2e3;
}

/* line 105, app/assets/stylesheets/app/panels.scss */
.panel-inverse {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-inverse > .panel-heading {
  color: #fff;
  background-color: #131e26;
  border-color: #131e26;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-inverse > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-inverse > .panel-heading .badge {
  color: #131e26;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-inverse > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 109, app/assets/stylesheets/app/panels.scss */
.panel-green {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-green > .panel-heading {
  color: #fff;
  background-color: #37bc9b;
  border-color: #37bc9b;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-green > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-green > .panel-heading .badge {
  color: #37bc9b;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-green > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 113, app/assets/stylesheets/app/panels.scss */
.panel-pink {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-pink > .panel-heading {
  color: #fff;
  background-color: #f532e5;
  border-color: #f532e5;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-pink > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-pink > .panel-heading .badge {
  color: #f532e5;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-pink > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 117, app/assets/stylesheets/app/panels.scss */
.panel-purple {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-purple > .panel-heading {
  color: #fff;
  background-color: #7266ba;
  border-color: #7266ba;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-purple > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-purple > .panel-heading .badge {
  color: #7266ba;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-purple > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 121, app/assets/stylesheets/app/panels.scss */
.panel-dark {
  border-color: #cfdbe2;
}

/* line 6, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-dark > .panel-heading {
  color: #fff;
  background-color: #3a3f51;
  border-color: #3a3f51;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-dark > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cfdbe2;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-dark > .panel-heading .badge {
  color: #3a3f51;
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/bootstrap/bootstrap/mixins/_panels.scss */
.panel-dark > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cfdbe2;
}

/* line 10, app/assets/stylesheets/app/progress-extra.scss */
.progress-sm {
  height: 15px;
}

/* line 14, app/assets/stylesheets/app/progress-extra.scss */
.progress-xs {
  height: 8px;
}

/* line 20, app/assets/stylesheets/app/progress-extra.scss */
.progress-bar-purple {
  background-color: #7266ba;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-purple {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 23, app/assets/stylesheets/app/progress-extra.scss */
.progress-bar-inverse {
  background-color: #131e26;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-inverse {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 26, app/assets/stylesheets/app/progress-extra.scss */
.progress-bar-green {
  background-color: #37bc9b;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-green {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 29, app/assets/stylesheets/app/progress-extra.scss */
.progress-bar-pink {
  background-color: #f532e5;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-pink {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 32, app/assets/stylesheets/app/progress-extra.scss */
.progress-bar-yellow {
  background-color: #fad732;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_progress-bar.scss */
.progress-striped .progress-bar-yellow {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-1 {
  width: 1%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-2 {
  width: 2%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-3 {
  width: 3%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-4 {
  width: 4%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-5 {
  width: 5%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-6 {
  width: 6%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-7 {
  width: 7%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-8 {
  width: 8%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-9 {
  width: 9%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-10 {
  width: 10%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-11 {
  width: 11%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-12 {
  width: 12%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-13 {
  width: 13%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-14 {
  width: 14%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-15 {
  width: 15%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-16 {
  width: 16%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-17 {
  width: 17%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-18 {
  width: 18%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-19 {
  width: 19%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-20 {
  width: 20%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-21 {
  width: 21%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-22 {
  width: 22%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-23 {
  width: 23%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-24 {
  width: 24%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-25 {
  width: 25%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-26 {
  width: 26%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-27 {
  width: 27%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-28 {
  width: 28%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-29 {
  width: 29%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-30 {
  width: 30%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-31 {
  width: 31%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-32 {
  width: 32%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-33 {
  width: 33%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-34 {
  width: 34%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-35 {
  width: 35%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-36 {
  width: 36%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-37 {
  width: 37%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-38 {
  width: 38%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-39 {
  width: 39%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-40 {
  width: 40%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-41 {
  width: 41%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-42 {
  width: 42%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-43 {
  width: 43%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-44 {
  width: 44%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-45 {
  width: 45%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-46 {
  width: 46%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-47 {
  width: 47%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-48 {
  width: 48%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-49 {
  width: 49%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-50 {
  width: 50%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-51 {
  width: 51%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-52 {
  width: 52%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-53 {
  width: 53%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-54 {
  width: 54%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-55 {
  width: 55%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-56 {
  width: 56%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-57 {
  width: 57%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-58 {
  width: 58%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-59 {
  width: 59%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-60 {
  width: 60%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-61 {
  width: 61%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-62 {
  width: 62%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-63 {
  width: 63%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-64 {
  width: 64%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-65 {
  width: 65%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-66 {
  width: 66%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-67 {
  width: 67%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-68 {
  width: 68%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-69 {
  width: 69%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-70 {
  width: 70%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-71 {
  width: 71%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-72 {
  width: 72%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-73 {
  width: 73%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-74 {
  width: 74%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-75 {
  width: 75%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-76 {
  width: 76%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-77 {
  width: 77%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-78 {
  width: 78%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-79 {
  width: 79%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-80 {
  width: 80%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-81 {
  width: 81%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-82 {
  width: 82%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-83 {
  width: 83%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-84 {
  width: 84%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-85 {
  width: 85%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-86 {
  width: 86%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-87 {
  width: 87%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-88 {
  width: 88%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-89 {
  width: 89%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-90 {
  width: 90%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-91 {
  width: 91%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-92 {
  width: 92%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-93 {
  width: 93%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-94 {
  width: 94%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-95 {
  width: 95%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-96 {
  width: 96%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-97 {
  width: 97%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-98 {
  width: 98%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-99 {
  width: 99%;
}

/* line 39, app/assets/stylesheets/app/progress-extra.scss */
.progress-100 {
  width: 100%;
}

/* -------------------------------------
 * Bar container
 * ------------------------------------- */
/* line 73, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar {
  position: relative;
  display: inline-block;
  font-size: 16px;
  border-radius: 50%;
  border: 2px solid #fafafa;
  background-color: transparent;
  margin-bottom: 20px;
  box-sizing: content-box;
  width: 80px;
  height: 80px;
  font-size: 18px;
}

/* line 87, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar:after,
.radial-bar > img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  color: #a1a2a3;
}

/* line 102, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar:after {
  content: attr(data-label);
  background-color: #fff;
  z-index: 101;
}

/* line 107, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar > img {
  z-index: 102;
}

/* line 40, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar:after,
.radial-bar > img {
  width: 56px;
  height: 56px;
  margin-left: 12px;
  margin-top: 12px;
  line-height: 56px;
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-0 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(90deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-5 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(108deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-10 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(126deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-15 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(144deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-20 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(162deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-25 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(180deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-30 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(198deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-35 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(216deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-40 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(234deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-45 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(252deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-50 {
  background-image: linear-gradient(-90deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-55 {
  background-image: linear-gradient(-72deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-60 {
  background-image: linear-gradient(-54deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-65 {
  background-image: linear-gradient(-36deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-70 {
  background-image: linear-gradient(-18deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-75 {
  background-image: linear-gradient(0deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-80 {
  background-image: linear-gradient(18deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-85 {
  background-image: linear-gradient(36deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-90 {
  background-image: linear-gradient(54deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-95 {
  background-image: linear-gradient(72deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar.radial-bar-100 {
  background-image: linear-gradient(90deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-0 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(90deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-5 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(108deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-10 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(126deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-15 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(144deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-20 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(162deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-25 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(180deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-30 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(198deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-35 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(216deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-40 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(234deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-45 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(252deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-50 {
  background-image: linear-gradient(-90deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-55 {
  background-image: linear-gradient(-72deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-60 {
  background-image: linear-gradient(-54deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-65 {
  background-image: linear-gradient(-36deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-70 {
  background-image: linear-gradient(-18deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-75 {
  background-image: linear-gradient(0deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-80 {
  background-image: linear-gradient(18deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-85 {
  background-image: linear-gradient(36deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-90 {
  background-image: linear-gradient(54deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-95 {
  background-image: linear-gradient(72deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-primary.radial-bar-100 {
  background-image: linear-gradient(90deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-0 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(90deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-5 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(108deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-10 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(126deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-15 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(144deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-20 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(162deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-25 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(180deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-30 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(198deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-35 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(216deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-40 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(234deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-45 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(252deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-50 {
  background-image: linear-gradient(-90deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-55 {
  background-image: linear-gradient(-72deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-60 {
  background-image: linear-gradient(-54deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-65 {
  background-image: linear-gradient(-36deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-70 {
  background-image: linear-gradient(-18deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-75 {
  background-image: linear-gradient(0deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-80 {
  background-image: linear-gradient(18deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-85 {
  background-image: linear-gradient(36deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-90 {
  background-image: linear-gradient(54deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-95 {
  background-image: linear-gradient(72deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-success.radial-bar-100 {
  background-image: linear-gradient(90deg, #27c24c 50%, transparent 50%, transparent), linear-gradient(270deg, #27c24c 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-0 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(90deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-5 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(108deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-10 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(126deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-15 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(144deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-20 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(162deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-25 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(180deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-30 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(198deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-35 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(216deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-40 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(234deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-45 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(252deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-50 {
  background-image: linear-gradient(-90deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-55 {
  background-image: linear-gradient(-72deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-60 {
  background-image: linear-gradient(-54deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-65 {
  background-image: linear-gradient(-36deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-70 {
  background-image: linear-gradient(-18deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-75 {
  background-image: linear-gradient(0deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-80 {
  background-image: linear-gradient(18deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-85 {
  background-image: linear-gradient(36deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-90 {
  background-image: linear-gradient(54deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-95 {
  background-image: linear-gradient(72deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-info.radial-bar-100 {
  background-image: linear-gradient(90deg, #3d45c0 50%, transparent 50%, transparent), linear-gradient(270deg, #3d45c0 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-0 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(90deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-5 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(108deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-10 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(126deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-15 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(144deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-20 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(162deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-25 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(180deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-30 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(198deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-35 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(216deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-40 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(234deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-45 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(252deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-50 {
  background-image: linear-gradient(-90deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-55 {
  background-image: linear-gradient(-72deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-60 {
  background-image: linear-gradient(-54deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-65 {
  background-image: linear-gradient(-36deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-70 {
  background-image: linear-gradient(-18deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-75 {
  background-image: linear-gradient(0deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-80 {
  background-image: linear-gradient(18deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-85 {
  background-image: linear-gradient(36deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-90 {
  background-image: linear-gradient(54deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-95 {
  background-image: linear-gradient(72deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-warning.radial-bar-100 {
  background-image: linear-gradient(90deg, #ff902b 50%, transparent 50%, transparent), linear-gradient(270deg, #ff902b 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-0 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(90deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-5 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(108deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-10 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(126deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-15 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(144deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-20 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(162deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-25 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(180deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-30 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(198deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-35 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(216deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-40 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(234deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-45 {
  background-image: linear-gradient(90deg, #fafafa 50%, transparent 50%, transparent), linear-gradient(252deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-50 {
  background-image: linear-gradient(-90deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-55 {
  background-image: linear-gradient(-72deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-60 {
  background-image: linear-gradient(-54deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-65 {
  background-image: linear-gradient(-36deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-70 {
  background-image: linear-gradient(-18deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-75 {
  background-image: linear-gradient(0deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-80 {
  background-image: linear-gradient(18deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-85 {
  background-image: linear-gradient(36deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-90 {
  background-image: linear-gradient(54deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-95 {
  background-image: linear-gradient(72deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 56, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-danger.radial-bar-100 {
  background-image: linear-gradient(90deg, #f05050 50%, transparent 50%, transparent), linear-gradient(270deg, #f05050 50%, #fafafa 50%, #fafafa);
}

/* line 137, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-lg {
  width: 100px;
  height: 100px;
  font-size: 22px;
}

/* line 40, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-lg:after,
.radial-bar-lg > img {
  width: 70px;
  height: 70px;
  margin-left: 15px;
  margin-top: 15px;
  line-height: 70px;
}

/* line 141, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-sm {
  width: 50px;
  height: 50px;
  font-size: 12px;
}

/* line 40, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-sm:after,
.radial-bar-sm > img {
  width: 35px;
  height: 35px;
  margin-left: 7.5px;
  margin-top: 7.5px;
  line-height: 35px;
}

/* line 145, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-xs {
  width: 30px;
  height: 30px;
  font-size: 8px;
}

/* line 40, app/assets/stylesheets/app/radial-bar.scss */
.radial-bar-xs:after,
.radial-bar-xs > img {
  width: 21px;
  height: 21px;
  margin-left: 4.5px;
  margin-top: 4.5px;
  line-height: 21px;
}

/* line 150, app/assets/stylesheets/app/radial-bar.scss */
x:-o-prefocus, .radial-bar {
  background-clip: content-box;
}

/* line 6, app/assets/stylesheets/app/user-block.scss */
.has-user-block {
  display: block;
  overflow: hidden;
  border: 0 !important;
  width: 100% !important;
}

/* line 13, app/assets/stylesheets/app/user-block.scss */
.user-block {
  position: relative;
  padding: 25px 0 10px;
  cursor: pointer;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.user-block:before, .user-block:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.user-block:after {
  clear: both;
}

/* line 19, app/assets/stylesheets/app/user-block.scss */
.user-block > .user-block-picture {
  position: relative;
  width: 60px;
  margin: 0 auto;
}

/* line 23, app/assets/stylesheets/app/user-block.scss */
.user-block > .user-block-picture > img {
  max-width: 100%;
  height: auto;
}

/* line 29, app/assets/stylesheets/app/user-block.scss */
.user-block .user-block-info {
  padding-top: 15px;
  text-align: center;
  white-space: nowrap;
}

/* line 33, app/assets/stylesheets/app/user-block.scss */
.user-block .user-block-info .user-block-name,
.user-block .user-block-info .user-block-role {
  display: block;
}

/* line 39, app/assets/stylesheets/app/user-block.scss */
.user-block .user-block-info .user-block-name {
  color: #7D848F;
}

/* line 42, app/assets/stylesheets/app/user-block.scss */
.user-block .user-block-info .user-block-role {
  font-size: 12px;
  color: #aaa;
}

/* line 49, app/assets/stylesheets/app/user-block.scss */
.user-block-status {
  position: relative;
}

/* line 51, app/assets/stylesheets/app/user-block.scss */
.user-block-status > .circle {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 2px solid #fff;
}

/* line 63, app/assets/stylesheets/app/user-block.scss */
.aside-collapsed .user-block,
.aside-collapsed-text .user-block {
  padding: 15px 0 14px;
  margin: 0;
  text-align: center;
}

/* line 68, app/assets/stylesheets/app/user-block.scss */
.aside-collapsed .user-block > .user-block-picture,
.aside-collapsed-text .user-block > .user-block-picture {
  float: none;
  margin: 0  auto;
  width: 50px;
}

/* line 72, app/assets/stylesheets/app/user-block.scss */
.aside-collapsed .user-block > .user-block-picture > .user-block-status,
.aside-collapsed-text .user-block > .user-block-picture > .user-block-status {
  display: block;
}

/* line 76, app/assets/stylesheets/app/user-block.scss */
.aside-collapsed .user-block .user-block-info,
.aside-collapsed-text .user-block .user-block-info {
  display: none;
}

/* line 14, app/assets/stylesheets/app/circles.scss */
.circle {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 500px;
  margin: 0 .5em;
  background-color: #ddd;
  vertical-align: baseline;
  border: 2px solid transparent;
}

/* line 23, app/assets/stylesheets/app/circles.scss */
.circle.text-left {
  margin-left: 0;
}

/* line 26, app/assets/stylesheets/app/circles.scss */
.circle.text-right {
  margin-right: 0;
}

/* line 31, app/assets/stylesheets/app/circles.scss */
.circle-primary {
  background-color: #3d45c0;
}

/* line 34, app/assets/stylesheets/app/circles.scss */
.circle-success {
  background-color: #27c24c;
}

/* line 37, app/assets/stylesheets/app/circles.scss */
.circle-info {
  background-color: #3d45c0;
}

/* line 40, app/assets/stylesheets/app/circles.scss */
.circle-warning {
  background-color: #ff902b;
}

/* line 43, app/assets/stylesheets/app/circles.scss */
.circle-danger {
  background-color: #f05050;
}

/* line 46, app/assets/stylesheets/app/circles.scss */
.circle-green {
  background-color: #37bc9b;
}

/* line 49, app/assets/stylesheets/app/circles.scss */
.circle-pink {
  background-color: #f532e5;
}

/* line 52, app/assets/stylesheets/app/circles.scss */
.circle-inverse {
  background-color: #131e26;
}

/* line 55, app/assets/stylesheets/app/circles.scss */
.circle-purple {
  background-color: #7266ba;
}

/* line 60, app/assets/stylesheets/app/circles.scss */
.circle-sm {
  width: 5px;
  height: 5px;
}

/* line 65, app/assets/stylesheets/app/circles.scss */
.circle-lg {
  width: 11px;
  height: 11px;
}

/* line 70, app/assets/stylesheets/app/circles.scss */
.circle-xl {
  width: 18px;
  height: 18px;
}

/* line 75, app/assets/stylesheets/app/circles.scss */
.circle-outline {
  background-color: transparent;
}

/* line 77, app/assets/stylesheets/app/circles.scss */
.circle-outline.circle-primary {
  border: 1px solid #3d45c0;
}

/* line 80, app/assets/stylesheets/app/circles.scss */
.circle-outline.circle-success {
  border: 1px solid #27c24c;
}

/* line 83, app/assets/stylesheets/app/circles.scss */
.circle-outline.circle-info {
  border: 1px solid #3d45c0;
}

/* line 86, app/assets/stylesheets/app/circles.scss */
.circle-outline.circle-warning {
  border: 1px solid #ff902b;
}

/* line 89, app/assets/stylesheets/app/circles.scss */
.circle-outline.circle-danger {
  border: 1px solid #f05050;
}

/* line 11, app/assets/stylesheets/app/timeline.scss */
.timeline,
.timeline-alt {
  list-style: none;
  padding: 0 0 20px;
  position: relative;
  z-index: 0;
}

/* line 18, app/assets/stylesheets/app/timeline.scss */
.timeline:before,
.timeline-alt:before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: " ";
  width: 1px;
  background-color: #d1d2d3;
  left: 18px;
}

/* line 29, app/assets/stylesheets/app/timeline.scss */
.timeline .timeline-end,
.timeline-alt .timeline-end {
  float: none;
  clear: both;
}

/* line 36, app/assets/stylesheets/app/timeline.scss */
.timeline .popover.left > .arrow:after,
.timeline-alt .popover.left > .arrow:after {
  border-left-color: #fff;
}

/* line 39, app/assets/stylesheets/app/timeline.scss */
.timeline .popover.right > .arrow:after,
.timeline-alt .popover.right > .arrow:after {
  border-right-color: #fff;
}

/* line 43, app/assets/stylesheets/app/timeline.scss */
.timeline .popover.left > .popover-title + .arrow:after,
.timeline-alt .popover.left > .popover-title + .arrow:after {
  border-left-color: #fafafa;
}

/* line 46, app/assets/stylesheets/app/timeline.scss */
.timeline .popover.right > .popover-title + .arrow:after,
.timeline-alt .popover.right > .popover-title + .arrow:after {
  border-right-color: #fafafa;
}

/* line 53, app/assets/stylesheets/app/timeline.scss */
.timeline > li,
.timeline-alt > li {
  margin-bottom: 20px;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.timeline > li:before, .timeline > li:after,
.timeline-alt > li:before,
.timeline-alt > li:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.timeline > li:after,
.timeline-alt > li:after {
  clear: both;
}

/* line 57, app/assets/stylesheets/app/timeline.scss */
.timeline > li.timeline-separator,
.timeline-alt > li.timeline-separator {
  position: relative;
  float: none;
  clear: both;
  margin: 0 auto;
  padding: 40px 0;
}

/* line 63, app/assets/stylesheets/app/timeline.scss */
.timeline > li.timeline-separator:first-child,
.timeline-alt > li.timeline-separator:first-child {
  padding-top: 0;
}

/* line 66, app/assets/stylesheets/app/timeline.scss */
.timeline > li.timeline-separator:before,
.timeline-alt > li.timeline-separator:before {
  content: attr(data-datetime);
  display: inline-block;
  width: 120px;
  text-align: center;
  padding: 0 20px;
  line-height: 30px;
  background-color: #b6c5da;
  color: #fff;
}

/* line 80, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-panel,
.timeline-alt > li > .timeline-panel {
  margin-left: 60px;
}

/* line 84, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-panel .popover,
.timeline-alt > li > .timeline-panel .popover {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  max-width: none;
}

/* line 90, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-panel .popover .arrow,
.timeline-alt > li > .timeline-panel .popover .arrow {
  top: 18px;
  display: none;
}

/* line 95, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-panel .popover .popover-content .popover-title,
.timeline-alt > li > .timeline-panel .popover .popover-content .popover-title {
  background-color: transparent;
  border: 0;
  padding-left: 0;
  padding-top: 0;
}

/* line 106, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-date,
.timeline-alt > li > .timeline-date {
  margin: -20px 0 0;
  display: block;
  height: 20px;
  line-height: 20px;
  font-size: 13px;
}

/* line 114, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-date > time:after,
.timeline-alt > li > .timeline-date > time:after {
  content: attr(datetime);
}

/* line 121, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge,
.timeline-alt > li > .timeline-badge {
  position: absolute;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  line-height: 36px;
  font-size: 1em;
  text-align: center;
  color: #fff;
  background-color: #999;
  z-index: 100;
}

/* line 135, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.primary,
.timeline-alt > li > .timeline-badge.primary {
  background-color: #3d45c0;
}

/* line 136, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.success,
.timeline-alt > li > .timeline-badge.success {
  background-color: #27c24c;
}

/* line 137, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.warning,
.timeline-alt > li > .timeline-badge.warning {
  background-color: #ff902b;
}

/* line 138, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.danger,
.timeline-alt > li > .timeline-badge.danger {
  background-color: #f05050;
}

/* line 139, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.info,
.timeline-alt > li > .timeline-badge.info {
  background-color: #3d45c0;
}

/* line 141, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.inverse,
.timeline-alt > li > .timeline-badge.inverse {
  background-color: #131e26;
}

/* line 142, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.green,
.timeline-alt > li > .timeline-badge.green {
  background-color: #37bc9b;
}

/* line 143, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.pink,
.timeline-alt > li > .timeline-badge.pink {
  background-color: #f532e5;
}

/* line 144, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.purple,
.timeline-alt > li > .timeline-badge.purple {
  background-color: #7266ba;
}

/* line 145, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.dark,
.timeline-alt > li > .timeline-badge.dark {
  background-color: #3a3f51;
}

/* line 146, app/assets/stylesheets/app/timeline.scss */
.timeline > li > .timeline-badge.yellow,
.timeline-alt > li > .timeline-badge.yellow {
  background-color: #fad732;
}

/* line 152, app/assets/stylesheets/app/timeline.scss */
.timeline-alt .popover .arrow {
  display: block !important;
}

/* line 159, app/assets/stylesheets/app/timeline.scss */
.timeline-title {
  margin-top: 0;
  color: inherit;
}

/* line 166, app/assets/stylesheets/app/timeline.scss */
.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

/* line 170, app/assets/stylesheets/app/timeline.scss */
.timeline-body > p + p {
  margin-top: 5px;
}

@media only screen and (min-width: 992px) {
  /* line 179, app/assets/stylesheets/app/timeline.scss */
  .timeline:before {
    left: 50%;
    margin-left: 18px;
  }
  /* line 183, app/assets/stylesheets/app/timeline.scss */
  .timeline > li {
    float: left;
    clear: left;
    width: 45%;
  }
  /* line 188, app/assets/stylesheets/app/timeline.scss */
  .timeline > li.timeline-inverted {
    float: right;
    clear: right;
    margin-top: 50px;
  }
  /* line 195, app/assets/stylesheets/app/timeline.scss */
  .timeline > li.timeline-separator {
    text-align: center;
  }
  /* line 197, app/assets/stylesheets/app/timeline.scss */
  .timeline > li.timeline-separator:before {
    margin-left: 36px;
  }
  /* line 202, app/assets/stylesheets/app/timeline.scss */
  .timeline > li > .timeline-badge {
    left: 50%;
    margin-left: 0;
  }
  /* line 207, app/assets/stylesheets/app/timeline.scss */
  .timeline > li > .timeline-date {
    float: none;
    position: absolute;
    width: 40%;
    left: 50%;
    top: 18px;
    margin-left: 54px;
    margin-top: -10px;
  }
  /* line 217, app/assets/stylesheets/app/timeline.scss */
  .timeline > li > .timeline-panel {
    margin: 0;
  }
  /* line 220, app/assets/stylesheets/app/timeline.scss */
  .timeline > li > .timeline-panel:before {
    border-left-width: 15px;
    border-right-width: 0;
    top: 26px;
    right: -15px;
    left: auto;
  }
  /* line 228, app/assets/stylesheets/app/timeline.scss */
  .timeline > li > .timeline-panel:after {
    border-left-width: 14px;
    border-right-width: 0;
    top: 27px;
    right: -14px;
    left: auto;
  }
  /* line 236, app/assets/stylesheets/app/timeline.scss */
  .timeline > li > .timeline-panel .popover .arrow {
    display: block;
  }
  /* line 245, app/assets/stylesheets/app/timeline.scss */
  .timeline > li.timeline-inverted > .timeline-panel {
    padding-left: 36px;
  }
  /* line 249, app/assets/stylesheets/app/timeline.scss */
  .timeline > li.timeline-inverted .timeline-date {
    left: auto;
    right: 50%;
    width: auto;
    margin-left: 0;
    margin-right: 36px;
  }
}

/* line 12, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown-lg > .dropdown-menu {
  min-width: 200px;
}

/* line 19, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown-list > .dropdown-menu {
  padding: 0;
  min-width: 220px;
}

/* line 24, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown-list .list-group {
  margin: 0;
}

/* line 28, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown-list .list-group-item {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

/* line 32, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown-list .list-group-item:first-child {
  border-top: 0;
}

/* line 35, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown-list .list-group-item:last-child {
  border-bottom: 0;
}

/* line 43, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown > a {
  position: relative;
}

/* line 45, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown > a > .label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 5px;
}

@media only screen and (min-width: 768px) {
  /* line 45, app/assets/stylesheets/app/dropdown-extra.scss */
  .dropdown > a > .label {
    top: 10px;
  }
}

/* line 58, app/assets/stylesheets/app/dropdown-extra.scss */
.dropdown-menu-header {
  padding: 10px 15px;
  background-color: #fafafa;
  border-bottom: 1px solid #e1e1e1;
}

/* line 8, app/assets/stylesheets/app/row-extra.scss */
.container-sm {
  max-width: 750px;
  width: auto;
}

/* line 12, app/assets/stylesheets/app/row-extra.scss */
.container-md {
  max-width: 970px;
  width: auto;
}

/* line 16, app/assets/stylesheets/app/row-extra.scss */
.container-lg {
  max-width: 1170px;
  width: auto;
}

/* line 29, app/assets/stylesheets/app/row-extra.scss */
.row-table {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  margin: 0;
}

/* line 36, app/assets/stylesheets/app/row-extra.scss */
.row-table > [class*="col-"] {
  display: table-cell;
  float: none;
  table-layout: fixed;
  vertical-align: middle;
}

/* line 46, app/assets/stylesheets/app/row-extra.scss */
.row-flush > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* line 18, app/assets/stylesheets/app/half-float.scss */
.half-float {
  position: relative;
  margin-bottom: 65px;
}

/* line 22, app/assets/stylesheets/app/half-float.scss */
.half-float .half-float-bottom,
.half-float .half-float-top {
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  z-index: 2;
}

/* line 33, app/assets/stylesheets/app/half-float.scss */
.half-float .half-float-top {
  bottom: auto;
  top: -60px;
}

/* line 40, app/assets/stylesheets/app/half-float.scss */
.half-float + * {
  margin-top: -55px;
  padding-top: 65px;
}

/* line 5, app/assets/stylesheets/app/masonry-grid.scss */
.row-masonry {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* line 11, app/assets/stylesheets/app/masonry-grid.scss */
.row-masonry > .col-masonry {
  display: inline-block;
  width: 100%;
  min-height: 1em;
  margin-bottom: 15px;
}

/* Columns definition by devices */
@media only screen and (min-width: 480px) {
  /* line 19, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-1 {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 1;
    columns: 1;
  }
  /* line 30, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-1 {
    text-align: justify;
  }
  /* line 33, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-1:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 38, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-1 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 99%;
  }
  /* line 43, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-2 {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 2;
    columns: 2;
  }
  /* line 54, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-2 {
    text-align: justify;
  }
  /* line 57, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-2:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 62, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-2 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 49%;
  }
  /* line 67, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-3 {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 3;
    columns: 3;
  }
  /* line 78, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-3 {
    text-align: justify;
  }
  /* line 81, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-3:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 86, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-3 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 32%;
  }
  /* line 91, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-4 {
    -moz-column-count: 4;
    column-count: 4;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 4;
    columns: 4;
  }
  /* line 102, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-4 {
    text-align: justify;
  }
  /* line 105, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-4:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 110, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-4 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 24%;
  }
  /* line 115, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-5 {
    -moz-column-count: 5;
    column-count: 5;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 5;
    columns: 5;
  }
  /* line 126, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-5 {
    text-align: justify;
  }
  /* line 129, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-5:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 134, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-5 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 19%;
  }
  /* line 139, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-6 {
    -moz-column-count: 6;
    column-count: 6;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 6;
    columns: 6;
  }
  /* line 150, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-6 {
    text-align: justify;
  }
  /* line 153, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-6:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 158, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-6 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 15%;
  }
  /* line 163, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-7 {
    -moz-column-count: 7;
    column-count: 7;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 7;
    columns: 7;
  }
  /* line 174, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-7 {
    text-align: justify;
  }
  /* line 177, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-7:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 182, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-7 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 13%;
  }
  /* line 187, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-8 {
    -moz-column-count: 8;
    column-count: 8;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 8;
    columns: 8;
  }
  /* line 198, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-8 {
    text-align: justify;
  }
  /* line 201, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-8:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 206, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-8 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 11%;
  }
  /* line 211, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-9 {
    -moz-column-count: 9;
    column-count: 9;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 9;
    columns: 9;
  }
  /* line 222, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-9 {
    text-align: justify;
  }
  /* line 225, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-9:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 230, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-9 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 10%;
  }
  /* line 235, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-10 {
    -moz-column-count: 10;
    column-count: 10;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 10;
    columns: 10;
  }
  /* line 246, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-10 {
    text-align: justify;
  }
  /* line 249, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-10:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 254, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-10 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 9%;
  }
  /* line 259, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-11 {
    -moz-column-count: 11;
    column-count: 11;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 11;
    columns: 11;
  }
  /* line 270, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-11 {
    text-align: justify;
  }
  /* line 273, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-11:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 278, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-11 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 8%;
  }
  /* line 283, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-sm-12 {
    -moz-column-count: 12;
    column-count: 12;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 12;
    columns: 12;
  }
  /* line 294, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-12 {
    text-align: justify;
  }
  /* line 297, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-12:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 302, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-sm-12 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 7%;
  }
}

@media only screen and (min-width: 768px) {
  /* line 309, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-1 {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 1;
    columns: 1;
  }
  /* line 320, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-1 {
    text-align: justify;
  }
  /* line 323, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-1:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 328, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-1 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 99%;
  }
  /* line 333, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-2 {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 2;
    columns: 2;
  }
  /* line 344, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-2 {
    text-align: justify;
  }
  /* line 347, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-2:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 352, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-2 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 49%;
  }
  /* line 357, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-3 {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 3;
    columns: 3;
  }
  /* line 368, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-3 {
    text-align: justify;
  }
  /* line 371, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-3:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 376, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-3 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 32%;
  }
  /* line 381, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-4 {
    -moz-column-count: 4;
    column-count: 4;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 4;
    columns: 4;
  }
  /* line 392, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-4 {
    text-align: justify;
  }
  /* line 395, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-4:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 400, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-4 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 24%;
  }
  /* line 405, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-5 {
    -moz-column-count: 5;
    column-count: 5;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 5;
    columns: 5;
  }
  /* line 416, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-5 {
    text-align: justify;
  }
  /* line 419, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-5:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 424, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-5 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 19%;
  }
  /* line 429, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-6 {
    -moz-column-count: 6;
    column-count: 6;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 6;
    columns: 6;
  }
  /* line 440, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-6 {
    text-align: justify;
  }
  /* line 443, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-6:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 448, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-6 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 15%;
  }
  /* line 453, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-7 {
    -moz-column-count: 7;
    column-count: 7;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 7;
    columns: 7;
  }
  /* line 464, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-7 {
    text-align: justify;
  }
  /* line 467, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-7:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 472, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-7 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 13%;
  }
  /* line 477, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-8 {
    -moz-column-count: 8;
    column-count: 8;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 8;
    columns: 8;
  }
  /* line 488, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-8 {
    text-align: justify;
  }
  /* line 491, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-8:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 496, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-8 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 11%;
  }
  /* line 501, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-9 {
    -moz-column-count: 9;
    column-count: 9;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 9;
    columns: 9;
  }
  /* line 512, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-9 {
    text-align: justify;
  }
  /* line 515, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-9:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 520, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-9 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 10%;
  }
  /* line 525, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-10 {
    -moz-column-count: 10;
    column-count: 10;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 10;
    columns: 10;
  }
  /* line 536, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-10 {
    text-align: justify;
  }
  /* line 539, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-10:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 544, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-10 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 9%;
  }
  /* line 549, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-11 {
    -moz-column-count: 11;
    column-count: 11;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 11;
    columns: 11;
  }
  /* line 560, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-11 {
    text-align: justify;
  }
  /* line 563, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-11:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 568, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-11 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 8%;
  }
  /* line 573, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-md-12 {
    -moz-column-count: 12;
    column-count: 12;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 12;
    columns: 12;
  }
  /* line 584, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-12 {
    text-align: justify;
  }
  /* line 587, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-12:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 592, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-md-12 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 7%;
  }
}

@media only screen and (min-width: 992px) {
  /* line 599, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-1 {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 1;
    columns: 1;
  }
  /* line 610, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-1 {
    text-align: justify;
  }
  /* line 613, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-1:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 618, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-1 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 99%;
  }
  /* line 623, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-2 {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 2;
    columns: 2;
  }
  /* line 634, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-2 {
    text-align: justify;
  }
  /* line 637, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-2:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 642, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-2 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 49%;
  }
  /* line 647, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-3 {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 3;
    columns: 3;
  }
  /* line 658, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-3 {
    text-align: justify;
  }
  /* line 661, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-3:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 666, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-3 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 32%;
  }
  /* line 671, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-4 {
    -moz-column-count: 4;
    column-count: 4;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 4;
    columns: 4;
  }
  /* line 682, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-4 {
    text-align: justify;
  }
  /* line 685, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-4:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 690, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-4 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 24%;
  }
  /* line 695, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-5 {
    -moz-column-count: 5;
    column-count: 5;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 5;
    columns: 5;
  }
  /* line 706, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-5 {
    text-align: justify;
  }
  /* line 709, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-5:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 714, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-5 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 19%;
  }
  /* line 719, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-6 {
    -moz-column-count: 6;
    column-count: 6;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 6;
    columns: 6;
  }
  /* line 730, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-6 {
    text-align: justify;
  }
  /* line 733, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-6:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 738, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-6 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 15%;
  }
  /* line 743, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-7 {
    -moz-column-count: 7;
    column-count: 7;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 7;
    columns: 7;
  }
  /* line 754, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-7 {
    text-align: justify;
  }
  /* line 757, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-7:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 762, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-7 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 13%;
  }
  /* line 767, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-8 {
    -moz-column-count: 8;
    column-count: 8;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 8;
    columns: 8;
  }
  /* line 778, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-8 {
    text-align: justify;
  }
  /* line 781, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-8:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 786, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-8 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 11%;
  }
  /* line 791, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-9 {
    -moz-column-count: 9;
    column-count: 9;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 9;
    columns: 9;
  }
  /* line 802, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-9 {
    text-align: justify;
  }
  /* line 805, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-9:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 810, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-9 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 10%;
  }
  /* line 815, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-10 {
    -moz-column-count: 10;
    column-count: 10;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 10;
    columns: 10;
  }
  /* line 826, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-10 {
    text-align: justify;
  }
  /* line 829, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-10:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 834, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-10 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 9%;
  }
  /* line 839, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-11 {
    -moz-column-count: 11;
    column-count: 11;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 11;
    columns: 11;
  }
  /* line 850, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-11 {
    text-align: justify;
  }
  /* line 853, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-11:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 858, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-11 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 8%;
  }
  /* line 863, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-lg-12 {
    -moz-column-count: 12;
    column-count: 12;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 12;
    columns: 12;
  }
  /* line 874, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-12 {
    text-align: justify;
  }
  /* line 877, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-12:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 882, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-lg-12 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 7%;
  }
}

@media only screen and (min-width: 1200px) {
  /* line 889, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-1 {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 1;
    columns: 1;
  }
  /* line 900, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-1 {
    text-align: justify;
  }
  /* line 903, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-1:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 908, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-1 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 99%;
  }
  /* line 913, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-2 {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 2;
    columns: 2;
  }
  /* line 924, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-2 {
    text-align: justify;
  }
  /* line 927, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-2:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 932, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-2 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 49%;
  }
  /* line 937, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-3 {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 3;
    columns: 3;
  }
  /* line 948, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-3 {
    text-align: justify;
  }
  /* line 951, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-3:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 956, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-3 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 32%;
  }
  /* line 961, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-4 {
    -moz-column-count: 4;
    column-count: 4;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 4;
    columns: 4;
  }
  /* line 972, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-4 {
    text-align: justify;
  }
  /* line 975, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-4:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 980, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-4 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 24%;
  }
  /* line 985, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-5 {
    -moz-column-count: 5;
    column-count: 5;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 5;
    columns: 5;
  }
  /* line 996, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-5 {
    text-align: justify;
  }
  /* line 999, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-5:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1004, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-5 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 19%;
  }
  /* line 1009, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-6 {
    -moz-column-count: 6;
    column-count: 6;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 6;
    columns: 6;
  }
  /* line 1020, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-6 {
    text-align: justify;
  }
  /* line 1023, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-6:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1028, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-6 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 15%;
  }
  /* line 1033, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-7 {
    -moz-column-count: 7;
    column-count: 7;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 7;
    columns: 7;
  }
  /* line 1044, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-7 {
    text-align: justify;
  }
  /* line 1047, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-7:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1052, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-7 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 13%;
  }
  /* line 1057, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-8 {
    -moz-column-count: 8;
    column-count: 8;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 8;
    columns: 8;
  }
  /* line 1068, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-8 {
    text-align: justify;
  }
  /* line 1071, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-8:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1076, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-8 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 11%;
  }
  /* line 1081, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-9 {
    -moz-column-count: 9;
    column-count: 9;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 9;
    columns: 9;
  }
  /* line 1092, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-9 {
    text-align: justify;
  }
  /* line 1095, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-9:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1100, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-9 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 10%;
  }
  /* line 1105, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-10 {
    -moz-column-count: 10;
    column-count: 10;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 10;
    columns: 10;
  }
  /* line 1116, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-10 {
    text-align: justify;
  }
  /* line 1119, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-10:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1124, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-10 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 9%;
  }
  /* line 1129, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-11 {
    -moz-column-count: 11;
    column-count: 11;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 11;
    columns: 11;
  }
  /* line 1140, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-11 {
    text-align: justify;
  }
  /* line 1143, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-11:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1148, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-11 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 8%;
  }
  /* line 1153, app/assets/stylesheets/app/masonry-grid.scss */
  .row-masonry-xl-12 {
    -moz-column-count: 12;
    column-count: 12;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -moz-columns: 12;
    columns: 12;
  }
  /* line 1164, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-12 {
    text-align: justify;
  }
  /* line 1167, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-12:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  /* line 1172, app/assets/stylesheets/app/masonry-grid.scss */
  .no-csscolumns .row-masonry-xl-12 > .col-masonry {
    vertical-align: top;
    display: inline-block;
    width: 7%;
  }
}

/* line 11, app/assets/stylesheets/app/widget.scss */
.widget {
  margin-bottom: 20px;
  border: 0;
}

/* line 16, app/assets/stylesheets/app/widget.scss */
.widget.panel, .widget .panel {
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/app/widget.scss */
.widget .lateral-picture {
  position: relative;
  display: block;
  height: 240px;
  width: auto;
  overflow: hidden;
}

/* line 28, app/assets/stylesheets/app/widget.scss */
.widget .lateral-picture > img {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
  width: auto;
}

@keyframes fadeOutUpShort {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
}

/* line 35, app/assets/stylesheets/app/animate.scss */
.fadeOutUpShort {
  animation-name: fadeOutUpShort;
}

@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* line 70, app/assets/stylesheets/app/animate.scss */
.fadeInUpShort {
  animation-name: fadeInUpShort;
}

@keyframes zoomInShort {
  0% {
    opacity: 0;
    transform: scale3d(0.95, 0.95, 0.95);
  }
  50% {
    opacity: 1;
  }
}

/* line 101, app/assets/stylesheets/app/animate.scss */
.zoomInShort {
  animation-name: zoomInShort;
}

@keyframes zoomBack {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
  }
  100% {
    opacity: 0;
  }
}

/* line 139, app/assets/stylesheets/app/animate.scss */
.zoomBack {
  animation-name: zoomBack;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* line 175, app/assets/stylesheets/app/animate.scss */
.fadeInLeft {
  animation-name: fadeInLeft;
}

/*!
 * table-grid (http://mdo.github.io/table-grid)
 * Released under MIT, (c) 2014 Mark Otto
 */
/*
 * The Grid
 */
@media only screen and (min-width: 768px) {
  /* Add `.table-grid` for the table */
  /* line 12, app/assets/stylesheets/app/table-grid.scss */
  .table-grid {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
  }
  /* Add `.col` for the table cells, or columns */
  /* line 20, app/assets/stylesheets/app/table-grid.scss */
  .col {
    display: table-cell;
    vertical-align: top;
    height: 100%;
  }
  /* line 24, app/assets/stylesheets/app/table-grid.scss */
  .col.col-full-center {
    vertical-align: middle;
  }
  /* Set the widths */
  /* line 30, app/assets/stylesheets/app/table-grid.scss */
  .col-1 {
    width: 8.333333%;
  }
  /* line 31, app/assets/stylesheets/app/table-grid.scss */
  .col-2 {
    width: 16.666667%;
  }
  /* line 32, app/assets/stylesheets/app/table-grid.scss */
  .col-3 {
    width: 25%;
  }
  /* line 33, app/assets/stylesheets/app/table-grid.scss */
  .col-4 {
    width: 33.333333%;
  }
  /* line 34, app/assets/stylesheets/app/table-grid.scss */
  .col-5 {
    width: 41.666667%;
  }
  /* line 35, app/assets/stylesheets/app/table-grid.scss */
  .col-6 {
    width: 50%;
  }
  /* line 36, app/assets/stylesheets/app/table-grid.scss */
  .col-7 {
    width: 58.333333%;
  }
  /* line 37, app/assets/stylesheets/app/table-grid.scss */
  .col-8 {
    width: 66.666667%;
  }
  /* line 38, app/assets/stylesheets/app/table-grid.scss */
  .col-9 {
    width: 75%;
  }
  /* line 39, app/assets/stylesheets/app/table-grid.scss */
  .col-10 {
    width: 83.333333%;
  }
  /* line 40, app/assets/stylesheets/app/table-grid.scss */
  .col-11 {
    width: 91.666667%;
  }
  /* line 41, app/assets/stylesheets/app/table-grid.scss */
  .col-12 {
    width: 100%;
  }
  /* line 43, app/assets/stylesheets/app/table-grid.scss */
  .col-xxs {
    width: 60px;
  }
  /* line 44, app/assets/stylesheets/app/table-grid.scss */
  .col-xs {
    width: 90px;
  }
  /* line 45, app/assets/stylesheets/app/table-grid.scss */
  .col-sm {
    width: 150px;
  }
  /* line 46, app/assets/stylesheets/app/table-grid.scss */
  .col-sd {
    width: 200px;
  }
  /* line 47, app/assets/stylesheets/app/table-grid.scss */
  .col-md {
    width: 240px;
  }
  /* line 48, app/assets/stylesheets/app/table-grid.scss */
  .col-lg {
    width: 280px;
  }
  /* line 49, app/assets/stylesheets/app/table-grid.scss */
  .col-xl {
    width: 320px;
  }
  /* line 50, app/assets/stylesheets/app/table-grid.scss */
  .col-xxl {
    width: 360px;
  }
  /* line 51, app/assets/stylesheets/app/table-grid.scss */
  .col-wide {
    width: 100%;
  }
  /* line 52, app/assets/stylesheets/app/table-grid.scss */
  .col-auto {
    width: auto;
  }
  /* Padded columns */
  /* line 55, app/assets/stylesheets/app/table-grid.scss */
  .table-grid-padded {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  /* line 59, app/assets/stylesheets/app/table-grid.scss */
  .table-grid-padded .table-grid {
    border-spacing: 1rem 0;
  }
}

@media only screen and (max-width: 991px) {
  /* line 67, app/assets/stylesheets/app/table-grid.scss */
  .table-grid-desktop.table-grid,
.table-grid-desktop .col {
    display: block;
    width: auto;
  }
}

/*
 * Vertically center grid content
 *
 * Requires content within the column to be inline or inline-block.
 */
/* line 81, app/assets/stylesheets/app/table-grid.scss */
.table-grid-align-middle .col {
  vertical-align: middle;
}

/* line 6, app/assets/stylesheets/app/todo.scss */
.todo .todo-item-list {
  position: relative;
}

/* line 12, app/assets/stylesheets/app/todo.scss */
.todo .todo-item .todo-edit {
  display: none;
  cursor: pointer;
}

/* line 16, app/assets/stylesheets/app/todo.scss */
.todo .todo-item:hover .todo-edit {
  display: inline;
}

/* line 19, app/assets/stylesheets/app/todo.scss */
.todo .todo-item.todo-complete .todo-edit {
  display: none;
}

/* line 25, app/assets/stylesheets/app/todo.scss */
.todo textarea {
  resize: none;
  max-width: 100%;
  min-width: 100%;
}

/* line 30, app/assets/stylesheets/app/todo.scss */
.todo .todo-complete {
  background: #e9f4f7;
  opacity: .6;
  color: #232735;
}

/* line 35, app/assets/stylesheets/app/todo.scss */
.todo .todo-complete .todo-title {
  text-decoration: line-through;
}

/* line 41, app/assets/stylesheets/app/todo.scss */
.todo .panel-group > .panel {
  border: 1px;
  margin: 0;
}

/* line 44, app/assets/stylesheets/app/todo.scss */
.todo .panel-group > .panel .panel-body {
  border-bottom: 1px solid #e9f4f7;
}

/* line 5, app/assets/stylesheets/app/nestable.scss */
.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: 600px;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
}

/* line 15, app/assets/stylesheets/app/nestable.scss */
.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 16, app/assets/stylesheets/app/nestable.scss */
.dd-list .dd-list {
  padding-left: 30px;
}

/* line 17, app/assets/stylesheets/app/nestable.scss */
.dd-collapsed .dd-list {
  display: none;
}

/* line 19, app/assets/stylesheets/app/nestable.scss */
.dd-item,
.dd-empty,
.dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 20px;
}

/* line 31, app/assets/stylesheets/app/nestable.scss */
.dd-handle {
  display: block;
  margin: 5px 0;
  padding: 10px 10px;
  text-decoration: none;
  border: 1px solid #ebebeb;
  background: #fff;
  border-radius: 3px;
}

/* line 41, app/assets/stylesheets/app/nestable.scss */
.dd-handle:hover {
  background: #fff;
}

/* line 43, app/assets/stylesheets/app/nestable.scss */
.dd-item > button {
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  width: 25px;
  height: 30px;
  margin: 5px 0;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}

/* line 44, app/assets/stylesheets/app/nestable.scss */
.dd-item > button:before {
  content: '+';
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
}

/* line 45, app/assets/stylesheets/app/nestable.scss */
.dd-item > button[data-action="collapse"]:before {
  content: '-';
}

/* line 47, app/assets/stylesheets/app/nestable.scss */
.dd-placeholder,
.dd-empty {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 49, app/assets/stylesheets/app/nestable.scss */
.dd-empty {
  border: 1px dashed #bbb;
  min-height: 100px;
  background-color: #e5e5e5;
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

/* line 54, app/assets/stylesheets/app/nestable.scss */
.dd-dragel {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
}

/* line 55, app/assets/stylesheets/app/nestable.scss */
.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}

/* line 56, app/assets/stylesheets/app/nestable.scss */
.dd-dragel .dd-handle {
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}

/* line 63, app/assets/stylesheets/app/nestable.scss */
.nestable-lists {
  display: block;
  clear: both;
  padding: 30px 0;
  width: 100%;
  border: 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

@media only screen and (min-width: 700px) {
  /* line 67, app/assets/stylesheets/app/nestable.scss */
  .dd + .dd {
    margin-left: 2%;
  }
}

/* line 71, app/assets/stylesheets/app/nestable.scss */
.dd-hover > .dd-handle {
  background: #2ea8e5 !important;
}

/* line 75, app/assets/stylesheets/app/nestable.scss */
.dd3-content {
  display: block;
  margin: 5px 0;
  padding: 10px 10px 10px 50px;
  text-decoration: none;
  border: 1px solid #ebebeb;
  background: #fff;
  border-radius: 3px;
}

/* line 83, app/assets/stylesheets/app/nestable.scss */
.dd-dragel > .dd3-item > .dd3-content {
  margin: 0;
}

/* line 85, app/assets/stylesheets/app/nestable.scss */
.dd3-item > button {
  margin-left: 40px;
}

/* line 87, app/assets/stylesheets/app/nestable.scss */
.dd3-handle {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  cursor: pointer;
  width: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid #ebebeb;
  background: #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 102, app/assets/stylesheets/app/nestable.scss */
.dd3-handle:before {
  content: '≡';
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  text-align: center;
  text-indent: 0;
  color: #ccc;
  font-size: 20px;
  font-weight: normal;
}

/* line 103, app/assets/stylesheets/app/nestable.scss */
.dd3-handle:hover {
  background: #f7f7f7;
}

/* Charts */
/* line 11, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart {
  display: block;
  width: 100%;
  height: 260px;
}

/* line 16, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart .legend > table tr td {
  padding: 3px;
}

/* line 19, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart .legend > table tr td:first-child {
  padding-left: 3px;
}

/* line 22, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart .legend > table tr td:last-child {
  padding-right: 3px;
}

/* line 25, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart .legend > table tr + tr td {
  padding-top: 0;
}

/* line 29, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart .legend > div:first-child {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* line 33, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart .legend .legendColorBox > div,
.flot-chart .legend .legendColorBox > div > div {
  border-radius: 400px;
}

/* line 40, app/assets/stylesheets/app/chart-flot.scss */
.flot-chart-content {
  width: 100%;
  height: 100%;
}

/* line 46, app/assets/stylesheets/app/chart-flot.scss */
.flot-pie-label {
  padding: 3px 5px;
  font-size: 10px;
  text-align: center;
  color: #fff;
}

/* line 55, app/assets/stylesheets/app/chart-flot.scss */
#flotTip {
  position: relative;
  padding: 5px;
  font-size: 12px !important;
  border-radius: 2px !important;
  border-color: transparent !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
  color: #f1f1f1;
  z-index: 5;
}

/* ========================================================================
   Component: chart-easypie
 ========================================================================== */
/* line 7, app/assets/stylesheets/app/chart-easypie.scss */
.easypie-chart {
  display: inline-block;
  position: relative;
  padding: 0 6px;
}

/* line 12, app/assets/stylesheets/app/chart-easypie.scss */
.easypie-chart span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  margin-left: -50%;
  height: 30px;
  margin-top: -15px;
  font-size: 20px;
}

/* line 23, app/assets/stylesheets/app/chart-easypie.scss */
.easypie-chart canvas {
  max-width: 100%;
}

/* line 28, app/assets/stylesheets/app/chart-easypie.scss */
.easypie-chart.easypie-chart-lg span {
  font-size: 40px;
  margin-top: -25px;
  line-height: 40px;
}

/* line 36, app/assets/stylesheets/app/chart-easypie.scss */
.easypie-chart.easypie-chart-md span {
  font-size: 30px;
  margin-top: -25px;
  line-height: 40px;
}

/* Form elements */
/**
 * Custom form elements
 *    - Checkbox 
 *    - Radios
 *    - Switch
 *    - Rounded inputs
 */
/* line 32, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox,
.c-radio {
  margin-right: 4px;
}

/* line 35, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox *,
.c-radio * {
  cursor: pointer;
}

/* line 38, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input,
.c-radio input {
  opacity: 0;
  position: absolute;
  margin-left: 0 !important;
}

/* line 45, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox span,
.c-radio span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-left: -20px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #a7cbd6;
  margin-right: 5px;
  text-align: center;
}

/* line 55, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox span:before,
.c-radio span:before {
  margin-left: 1px;
}

/* line 60, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox:hover span,
.c-radio:hover span {
  border-color: #3d45c0;
}

/* line 64, app/assets/stylesheets/app/form-elements.scss */
.form-inline .c-checkbox span, .form-inline .c-radio span {
  margin-left: 0;
}

/* line 70, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox.c-checkbox-rounded span, .c-checkbox.c-radio-rounded span,
.c-radio.c-checkbox-rounded span,
.c-radio.c-radio-rounded span {
  border-radius: 500px;
}

/* override for radio */
/* line 77, app/assets/stylesheets/app/form-elements.scss */
.c-radio span {
  border-radius: 500px;
}

/* the icon */
/* line 84, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox span:before,
.c-radio span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  text-align: center !important;
  font-size: 12px;
  line-height: 18px;
  vertical-align: middle;
}

/* Checked state */
/* line 98, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox,
.c-radio {
  /* override for radio */
  /* Disable state */
  /* override for radio */
}

/* line 100, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input[type=checkbox]:checked + span:before,
.c-checkbox input[type=radio]:checked + span:before,
.c-radio input[type=checkbox]:checked + span:before,
.c-radio input[type=radio]:checked + span:before {
  color: #fff;
  opacity: 1;
  transition: color .3s ease-out;
}

/* line 107, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input[type=checkbox]:checked + span,
.c-checkbox input[type=radio]:checked + span,
.c-radio input[type=checkbox]:checked + span,
.c-radio input[type=radio]:checked + span {
  border-color: #3d45c0;
  background-color: #3d45c0;
}

/* line 114, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input[type=radio]:checked + span,
.c-radio input[type=radio]:checked + span {
  background-color: #fff;
}

/* line 116, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input[type=radio]:checked + span:before,
.c-radio input[type=radio]:checked + span:before {
  color: #3d45c0;
}

/* line 123, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input[type=checkbox]:disabled + span,
.c-checkbox input[type=radio]:disabled + span,
.c-radio input[type=checkbox]:disabled + span,
.c-radio input[type=radio]:disabled + span {
  border-color: #ddd !important;
  background-color: #ddd !important;
}

/* line 129, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input[type=radio]:disabled + span,
.c-radio input[type=radio]:disabled + span {
  background-color: #fff !important;
}

/* line 131, app/assets/stylesheets/app/form-elements.scss */
.c-checkbox input[type=radio]:disabled + span:before,
.c-radio input[type=radio]:disabled + span:before {
  color: #ddd;
}

/* line 138, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont {
  /* override for radio */
  /* Disable state */
  /* override for radio */
}

/* line 140, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont span:before {
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
  border-radius: 500px;
}

/* line 152, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont input[type=radio]:checked + span:before {
  color: #fff;
  opacity: 1;
  transition: color .3s ease-out;
}

/* line 158, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont input[type=radio]:checked + span {
  border-color: #3d45c0;
  background-color: #3d45c0;
}

/* line 164, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont input[type=radio]:checked + span {
  background-color: #fff;
}

/* line 166, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont input[type=radio]:checked + span:before {
  background-color: #3d45c0;
}

/* line 173, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont input[type=radio]:disabled + span {
  border-color: #ddd !important;
  background-color: #ddd !important;
}

/* line 178, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont input[type=radio]:disabled + span {
  background-color: #fff !important;
}

/* line 180, app/assets/stylesheets/app/form-elements.scss */
.c-radio.c-radio-nofont input[type=radio]:disabled + span:before {
  background-color: #ddd;
}

/* line 191, app/assets/stylesheets/app/form-elements.scss */
.form-control-rounded {
  border-radius: 100px;
}

/* line 210, app/assets/stylesheets/app/form-elements.scss */
.switch .form-control, .switch body .bootstrap-tagsinput, body .switch .bootstrap-tagsinput {
  padding-top: 7px;
  margin-bottom: 0;
}

/* line 216, app/assets/stylesheets/app/form-elements.scss */
.switch * {
  cursor: pointer;
}

/* line 220, app/assets/stylesheets/app/form-elements.scss */
.switch input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

/* line 227, app/assets/stylesheets/app/form-elements.scss */
.switch span {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  transition: all .5s;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1) inset;
  vertical-align: middle;
}

/* line 239, app/assets/stylesheets/app/form-elements.scss */
.switch span:after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #ddd;
  border-radius: 400px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .2s;
}

/* line 23, app/assets/stylesheets/app/form-elements.scss */
.switch.switch-lg span {
  width: 50px;
  height: 25px;
}

/* line 27, app/assets/stylesheets/app/form-elements.scss */
.switch.switch-lg span:after {
  height: 23px;
  width: 23px;
}

/* line 23, app/assets/stylesheets/app/form-elements.scss */
.switch.switch-sm span {
  width: 30px;
  height: 15px;
}

/* line 27, app/assets/stylesheets/app/form-elements.scss */
.switch.switch-sm span:after {
  height: 13px;
  width: 13px;
}

/* line 256, app/assets/stylesheets/app/form-elements.scss */
.switch input:checked + span {
  background-color: #3d45c0;
  border-color: #3d45c0;
  transition: all .5s;
}

/* line 262, app/assets/stylesheets/app/form-elements.scss */
.switch input:checked + span:after {
  left: 50%;
  transition: all .2s;
}

/* line 267, app/assets/stylesheets/app/form-elements.scss */
.switch input:disabled + span {
  background-color: #f1f1f1;
  cursor: not-allowed;
}

/* line 274, app/assets/stylesheets/app/form-elements.scss */
.form-control-feedback {
  left: 16px;
  right: auto;
}

/* line 279, app/assets/stylesheets/app/form-elements.scss */
.form-control + .form-control-feedback, body .bootstrap-tagsinput + .form-control-feedback, .form-control + .parsley-errors-list + .form-control-feedback, body .bootstrap-tagsinput + .parsley-errors-list + .form-control-feedback {
  right: 0;
  left: auto;
}

/* line 286, app/assets/stylesheets/app/form-elements.scss */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, body .input-group-sm > .bootstrap-tagsinput + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button + .form-control-feedback, .input-sm + .parsley-errors-list + .form-control-feedback, .input-group-sm > .form-control + .parsley-errors-list + .form-control-feedback, body .input-group-sm > .bootstrap-tagsinput + .parsley-errors-list + .form-control-feedback,
.input-group-sm > .input-group-addon + .parsley-errors-list + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .parsley-errors-list + .form-control-feedback,
div.ColVis .input-group-sm > .input-group-btn > .ColVis_Button + .parsley-errors-list + .form-control-feedback {
  top: 0;
}

/* line 298, app/assets/stylesheets/app/form-elements.scss */
.input-md {
  width: 260px;
}

/* line 303, app/assets/stylesheets/app/form-elements.scss */
.note-editor {
  background-image: linear-gradient(#eee 0.1em, transparent 0.1em);
  background-size: 100% 20px;
  background-color: #fff;
  line-height: 20px;
  margin-top: 5px;
  padding: 0;
  padding-bottom: 1px;
  border: none;
}

/* line 316, app/assets/stylesheets/app/form-elements.scss */
.note-editor.note-editor-margin {
  background-image: linear-gradient(90deg, transparent 49px, #ffe0c4 49px, #ffe0c4 51px, transparent 51px), linear-gradient(#eee 0.1em, transparent 0.1em);
  padding-left: 55px;
}

/* line 11, app/assets/stylesheets/app/form-validation.scss */
.parsley-error {
  border-color: #f05050 !important;
}

/* line 15, app/assets/stylesheets/app/form-validation.scss */
.parsley-errors-list {
  display: none;
  margin: 0;
  padding: 0;
}

/* line 20, app/assets/stylesheets/app/form-validation.scss */
.parsley-errors-list.filled {
  display: block;
}

/* line 24, app/assets/stylesheets/app/form-validation.scss */
.parsley-errors-list > li {
  font-size: 12px;
  list-style: none;
  color: #f05050;
}

/* line 8, app/assets/stylesheets/app/form-tags.scss */
body .bootstrap-tagsinput {
  height: auto;
  min-height: 36px;
  margin-bottom: 0;
}

/* line 16, app/assets/stylesheets/app/form-tags.scss */
body .bootstrap-tagsinput .tag {
  color: #fff;
}

/* ========================================================================
     Component: form-wizard
 ========================================================================== */
/* line 14, app/assets/stylesheets/app/form-wizard.scss */
.wizard, .tabcontrol {
  display: block;
  width: 100%;
  overflow: hidden;
}

/* line 19, app/assets/stylesheets/app/form-wizard.scss */
.wizard a, .tabcontrol a {
  outline: 0;
}

/* line 22, app/assets/stylesheets/app/form-wizard.scss */
.wizard ul, .tabcontrol ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

/* line 27, app/assets/stylesheets/app/form-wizard.scss */
.wizard ul > li, .tabcontrol ul > li {
  display: block;
  padding: 0;
}

/* line 31, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps .current-info, .tabcontrol > .steps .current-info {
  position: absolute;
  left: -999em;
}

/* line 35, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .title, .tabcontrol > .content > .title {
  position: absolute;
  left: -999em;
}

/* line 40, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps {
  position: relative;
  display: block;
  width: 100%;
}

/* line 44, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps .number {
  font-size: 1.429em;
}

/* line 48, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps > ul > li {
  width: 25%;
}

/* line 53, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content {
  background: #fff;
  display: block;
  margin: 0.5em;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  width: auto;
  border-radius: 5px;
}

/* line 64, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body {
  float: left;
  position: absolute;
  width: 100%;
  height: 95%;
  padding: 2.5% 0;
}

/* line 70, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body ul {
  list-style: disc !important;
}

/* line 72, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body ul > li {
  display: list-item;
}

/* line 76, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}

/* line 81, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body input {
  display: block;
}

/* line 88, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body input.error {
  background: #fbe3e4;
  border: 1px solid #fbc2c4;
  color: #8a1f11;
}

/* line 93, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body label {
  display: inline-block;
  margin-bottom: 0.5em;
}

/* line 97, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body label.error {
  color: #f05050;
  margin-left: 1.5em;
  padding: 0;
}

/* line 102, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .content > .body .checkbox label.error {
  display: block !important;
}

/* line 107, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
}

/* line 112, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .actions > ul {
  display: inline-block;
  text-align: right;
}

/* line 115, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .actions > ul > li {
  margin: 0 0.5em;
}

/* line 123, app/assets/stylesheets/app/form-wizard.scss */
.wizard.vertical > .steps {
  display: inline;
  float: left;
  width: 30%;
}

/* line 128, app/assets/stylesheets/app/form-wizard.scss */
.wizard.vertical > .steps > ul > li {
  float: none;
  width: 100%;
}

/* line 134, app/assets/stylesheets/app/form-wizard.scss */
.wizard.vertical > .content {
  display: inline;
  float: left;
  margin: 0 2.5% 0.5em 2.5%;
  width: 65%;
}

/* line 140, app/assets/stylesheets/app/form-wizard.scss */
.wizard.vertical > .actions {
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%;
}

/* line 146, app/assets/stylesheets/app/form-wizard.scss */
.wizard.vertical > .actions > ul > li {
  margin: 0 0 0 1em;
}

/* line 153, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps > ul > li, .wizard > .actions > ul > li {
  float: left;
}

/* line 156, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
  display: block;
  width: auto;
  margin: 0 0.5em 0.5em;
  padding: 1em 1em;
  text-decoration: none;
  border-radius: 0;
  font-weight: bold;
  color: #515253;
}

/* line 167, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps a > small, .wizard > .steps a:hover > small, .wizard > .steps a:active > small {
  font-weight: normal;
  color: #909FA7;
}

/* line 172, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
  background: #fcfcfc;
  color: #515253;
  cursor: default;
}

/* line 177, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
  background: #3d45c0;
  color: #fff;
  cursor: default;
}

/* line 181, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps .current a > small, .wizard > .steps .current a:hover > small, .wizard > .steps .current a:active > small {
  color: #fff;
}

/* line 185, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
  background: #fcfcfc;
  color: #515253;
}

/* line 189, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .steps .error a, .wizard > .steps .error a:hover, .wizard > .steps .error a:active {
  background: #ff3111;
  color: #fff;
}

/* line 193, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  background-color: #3d45c0;
  border-color: #3d45c0;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.wizard > .actions a:focus, .wizard > .actions a.focus,
.wizard > .actions a:hover:focus,
.wizard > .actions a.focus:hover,
.wizard > .actions a:active:focus,
.wizard > .actions a.focus:active {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 17, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.wizard > .actions a:hover,
.wizard > .actions a:hover:hover,
.wizard > .actions a:active:hover {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 22, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.wizard > .actions a:active, .wizard > .actions a.active, .open > .wizard > .actions a.dropdown-toggle,
.wizard > .actions a:hover:active,
.wizard > .actions a.active:hover, .open > .wizard > .actions a.dropdown-toggle:hover,
.wizard > .actions a:active:active,
.wizard > .actions a.active:active, .open > .wizard > .actions a.dropdown-toggle:active {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 29, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.wizard > .actions a:active:hover, .wizard > .actions a:active:focus, .wizard > .actions a.focus:active, .wizard > .actions a.active:hover, .wizard > .actions a.active:focus, .wizard > .actions a.active.focus, .open > .wizard > .actions a.dropdown-toggle:hover, .open > .wizard > .actions a.dropdown-toggle:focus, .open > .wizard > .actions a.dropdown-toggle.focus,
.wizard > .actions a:hover:active:hover,
.wizard > .actions a:hover:active:focus,
.wizard > .actions a.focus:hover:active,
.wizard > .actions a.active:hover:hover,
.wizard > .actions a.active:hover:focus,
.wizard > .actions a.active.focus:hover, .open > .wizard > .actions a.dropdown-toggle:hover:hover, .open > .wizard > .actions a.dropdown-toggle:hover:focus, .open > .wizard > .actions a.dropdown-toggle.focus:hover,
.wizard > .actions a:active:active:hover,
.wizard > .actions a:active:active:focus,
.wizard > .actions a.focus:active:active,
.wizard > .actions a.active:active:hover,
.wizard > .actions a.active:active:focus,
.wizard > .actions a.active.focus:active, .open > .wizard > .actions a.dropdown-toggle:active:hover, .open > .wizard > .actions a.dropdown-toggle:active:focus, .open > .wizard > .actions a.dropdown-toggle.focus:active {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 37, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.wizard > .actions a:active, .wizard > .actions a.active, .open > .wizard > .actions a.dropdown-toggle,
.wizard > .actions a:hover:active,
.wizard > .actions a.active:hover, .open > .wizard > .actions a.dropdown-toggle:hover,
.wizard > .actions a:active:active,
.wizard > .actions a.active:active, .open > .wizard > .actions a.dropdown-toggle:active {
  background-image: none;
}

/* line 45, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.wizard > .actions a.disabled:hover, .wizard > .actions a.disabled:focus, .wizard > .actions a.disabled.focus, .wizard > .actions a[disabled]:hover, .wizard > .actions a[disabled]:focus, .wizard > .actions a.focus[disabled], fieldset[disabled] .wizard > .actions a:hover, fieldset[disabled] .wizard > .actions a:focus, fieldset[disabled] .wizard > .actions a.focus,
.wizard > .actions a.disabled:hover:hover,
.wizard > .actions a.disabled:hover:focus,
.wizard > .actions a.disabled.focus:hover,
.wizard > .actions a[disabled]:hover:hover,
.wizard > .actions a[disabled]:hover:focus,
.wizard > .actions a.focus[disabled]:hover, fieldset[disabled] .wizard > .actions a:hover:hover, fieldset[disabled] .wizard > .actions a:hover:focus, fieldset[disabled] .wizard > .actions a.focus:hover,
.wizard > .actions a.disabled:active:hover,
.wizard > .actions a.disabled:active:focus,
.wizard > .actions a.disabled.focus:active,
.wizard > .actions a[disabled]:active:hover,
.wizard > .actions a[disabled]:active:focus,
.wizard > .actions a.focus[disabled]:active, fieldset[disabled] .wizard > .actions a:active:hover, fieldset[disabled] .wizard > .actions a:active:focus, fieldset[disabled] .wizard > .actions a.focus:active {
  background-color: #3d45c0;
  border-color: #3d45c0;
}

/* line 53, app/assets/stylesheets/bootstrap/bootstrap/mixins/_buttons.scss */
.wizard > .actions a .badge,
.wizard > .actions a:hover .badge,
.wizard > .actions a:active .badge {
  color: #3d45c0;
  background-color: #fff;
}

/* line 203, app/assets/stylesheets/app/form-wizard.scss */
.wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
  color: #333;
  background: #fff;
  border: 1px solid #eaeaea;
}

/* line 209, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps {
  position: relative;
  display: block;
  width: 100%;
}

/* line 213, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps > ul {
  position: relative;
  margin: 6px 0 0 0;
  top: 1px;
  z-index: 1;
}

/* line 218, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps > ul > li {
  float: left;
  margin: 5px 2px 0 0;
  padding: 1px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* line 228, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps > ul > li > a {
  color: #5f5f5f;
  display: inline-block;
  border: 0 none;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none;
}

/* line 236, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps > ul > li > a:hover {
  text-decoration: none;
}

/* line 240, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps > ul > li:hover {
  background: #edecec;
  border: 1px solid #bbb;
  padding: 0;
}

/* line 245, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps > ul > li.current {
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: 0 none;
  padding: 0 0 1px 0;
  margin-top: 0;
}

/* line 251, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .steps > ul > li.current > a {
  padding: 15px 30px 10px 30px;
}

/* line 257, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .content {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding-top: 20px;
}

/* line 265, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .content > .body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}

/* line 271, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .content > .body ul {
  list-style: disc !important;
}

/* line 273, app/assets/stylesheets/app/form-wizard.scss */
.tabcontrol > .content > .body ul > li {
  display: list-item;
}

/* ========================================================================
     Component: form-imgcrop
 ========================================================================== */
/* line 5, app/assets/stylesheets/app/form-imgcrop.scss */
.img-container,
.img-preview {
  background-color: #f7f7f7;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

/* line 12, app/assets/stylesheets/app/form-imgcrop.scss */
.img-container {
  min-height: 200px;
  max-height: 340px;
  margin-bottom: 20px;
}

/* line 18, app/assets/stylesheets/app/form-imgcrop.scss */
.docs-preview {
  margin-right: -15px;
  margin-bottom: 10px;
}

/* line 23, app/assets/stylesheets/app/form-imgcrop.scss */
.img-preview {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 29, app/assets/stylesheets/app/form-imgcrop.scss */
.img-preview > img {
  max-width: 100%;
}

/* line 33, app/assets/stylesheets/app/form-imgcrop.scss */
.preview-lg {
  width: 263px;
  height: 148px;
}

/* line 38, app/assets/stylesheets/app/form-imgcrop.scss */
.preview-md {
  width: 139px;
  height: 78px;
}

/* line 43, app/assets/stylesheets/app/form-imgcrop.scss */
.preview-sm {
  width: 69px;
  height: 39px;
}

/* line 48, app/assets/stylesheets/app/form-imgcrop.scss */
.preview-xs {
  width: 35px;
  height: 20px;
  margin-right: 0;
}

/* line 55, app/assets/stylesheets/app/form-imgcrop.scss */
.cropper-container img {
  display: block;
  width: 100%;
  min-width: 0 !important;
  max-width: none !important;
  height: 100%;
  min-height: 0 !important;
  max-height: none !important;
  image-orientation: 0deg !important;
}

/* Tables */
@media only screen and (max-width: 992px) {
  /* line 6, app/assets/stylesheets/app/datatable.scss */
  .dataTables_filter {
    clear: both;
  }
}

/* line 10, app/assets/stylesheets/app/datatable.scss */
.dataTables_filter input {
  margin-left: 10px;
}

/* line 17, app/assets/stylesheets/app/datatable.scss */
.dataTables_length {
  float: left;
}

/* line 19, app/assets/stylesheets/app/datatable.scss */
.dataTables_length select {
  margin-right: 10px;
}

/* line 25, app/assets/stylesheets/app/datatable.scss */
table.dataTable tfoot > tr > th {
  color: #a1a2a3;
  background: #f1f2f3;
}

/* line 33, app/assets/stylesheets/app/datatable.scss */
.panel .dataTables_wrapper {
  overflow: auto;
}

/* line 36, app/assets/stylesheets/app/datatable.scss */
.panel .dataTables_wrapper .row {
  margin: 10px 0;
}

/* line 39, app/assets/stylesheets/app/datatable.scss */
.panel .dataTable {
  width: 100% !important;
}

/* line 44, app/assets/stylesheets/app/datatable.scss */
.html5buttons {
  float: none;
  text-align: center;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
  /* line 44, app/assets/stylesheets/app/datatable.scss */
  .html5buttons {
    float: right;
    margin-left: 10px;
  }
}

@media only screen and (max-width: 992px) {
  /* line 59, app/assets/stylesheets/app/datatable.scss */
  div.ColVis {
    float: none;
    text-align: center;
  }
  /* line 63, app/assets/stylesheets/app/datatable.scss */
  div.ColVis button.ColVis_Button, div.ColVis ul.ColVis_collection li {
    float: none;
  }
}

/* line 67, app/assets/stylesheets/app/datatable.scss */
div.ColVis .ColVis_Button {
  background-color: #fff;
  background-image: none !important;
  box-shadow: 0 0 0 #000 !important;
  cursor: pointer;
  height: 31px;
}

/* line 76, app/assets/stylesheets/app/datatable.scss */
div.ColVis .ColVis_Button > span {
  color: #656565;
}

/* line 84, app/assets/stylesheets/app/datatable.scss */
.ColVis_collectionBackground {
  display: none;
}

/* line 89, app/assets/stylesheets/app/datatable.scss */
ul.ColVis_collection {
  background-color: #fff !important;
}

/* line 91, app/assets/stylesheets/app/datatable.scss */
ul.ColVis_collection > li {
  border: 0 !important;
  background-image: none !important;
  box-shadow: 0 0 0 #000 !important;
  margin: 0;
}

/* line 96, app/assets/stylesheets/app/datatable.scss */
ul.ColVis_collection > li > label {
  margin: 0;
}

/* line 98, app/assets/stylesheets/app/datatable.scss */
ul.ColVis_collection > li > label > span {
  color: #888;
  vertical-align: top;
  font-weight: normal;
}

/* line 102, app/assets/stylesheets/app/datatable.scss */
ul.ColVis_collection > li > label > span:hover {
  color: #555;
}

/* line 106, app/assets/stylesheets/app/datatable.scss */
ul.ColVis_collection > li > label input[type=checkbox]:checked + span,
ul.ColVis_collection > li > label input[type=radio]:checked + span {
  background-color: transparent;
}

/* line 114, app/assets/stylesheets/app/datatable.scss */
.ColVis_catcher {
  cursor: pointer;
}

/* line 119, app/assets/stylesheets/app/datatable.scss */
.table-responsive {
  border: 0;
}

/* line 122, app/assets/stylesheets/app/datatable.scss */
.table-responsive .dataTables_wrapper .row {
  margin: 0;
}

@media only screen and (max-width: 992px) {
  /* line 130, app/assets/stylesheets/app/datatable.scss */
  .dataTables_length {
    float: none;
  }
  /* line 133, app/assets/stylesheets/app/datatable.scss */
  div.dataTables_wrapper div.dataTables_length label,
div.dataTables_filter label,
div.dataTables_length label,
div.dataTables_paginate {
    float: none;
    text-align: center !important;
    display: block;
  }
  /* line 140, app/assets/stylesheets/app/datatable.scss */
  div.dataTables_wrapper div.dataTables_length label select,
div.dataTables_filter label select,
div.dataTables_length label select,
div.dataTables_paginate select {
    display: inline-block;
  }
  /* line 145, app/assets/stylesheets/app/datatable.scss */
  .dataTables_wrapper > .row > div {
    float: none;
    text-align: center;
    width: 100%;
  }
}

/* line 154, app/assets/stylesheets/app/datatable.scss */
div.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: white;
  border: 2px solid #b7dde8;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  text-align: center;
  z-index: 2100;
}

/* line 168, app/assets/stylesheets/app/datatable.scss */
div.dt-button-info h2 {
  padding: 0.5em;
  margin: 0;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  background-color: #f3f3f3;
}

/* line 174, app/assets/stylesheets/app/datatable.scss */
div.dt-button-info h2:before {
  content: "\f00c";
  font-family: FontAwesome;
  color: #27c24c;
  margin-right: 8px;
}

/* line 182, app/assets/stylesheets/app/datatable.scss */
div.dt-button-info > div {
  padding: 1em;
}

/* line 10, app/assets/stylesheets/app/table-extras.scss */
.table > thead > tr > th {
  padding: 14px 8px;
  color: #888;
}

/* line 14, app/assets/stylesheets/app/table-extras.scss */
.table > tbody > tr > td {
  vertical-align: middle;
}

/* line 17, app/assets/stylesheets/app/table-extras.scss */
.table > tbody > tr > td > .media img {
  width: 36px;
  height: 36px;
  margin: 0 auto;
}

/* line 25, app/assets/stylesheets/app/table-extras.scss */
.table .checkbox {
  margin: 0 auto;
  width: 20px;
}

/* line 30, app/assets/stylesheets/app/table-extras.scss */
.table .progress {
  margin-bottom: 0;
}

/* line 34, app/assets/stylesheets/app/table-extras.scss */
.table .radial-bar {
  margin-bottom: 0;
  margin: 0 auto;
}

/* line 40, app/assets/stylesheets/app/table-extras.scss */
.jqstooltip {
  box-sizing: content-box;
}

/* line 46, app/assets/stylesheets/app/table-extras.scss */
#table-ext-1 th:nth-child(1) {
  width: 3%;
}

/* line 49, app/assets/stylesheets/app/table-extras.scss */
#table-ext-1 th:nth-child(2) {
  width: 5%;
}

/* line 52, app/assets/stylesheets/app/table-extras.scss */
#table-ext-1 th:nth-child(7) {
  width: 5%;
}

/* line 55, app/assets/stylesheets/app/table-extras.scss */
#table-ext-1 th:nth-child(9) {
  width: 5%;
}

/* line 63, app/assets/stylesheets/app/table-extras.scss */
#table-ext-2 th:nth-child(1) {
  width: 5%;
}

/* line 66, app/assets/stylesheets/app/table-extras.scss */
#table-ext-2 th:nth-child(3) {
  width: 10%;
}

/* line 5, app/assets/stylesheets/app/jqgrid.scss */
.ui-widget {
  font-family: inherit;
}

/* line 9, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid {
  border-radius: 4px;
  border-width: 3px 1px 1px 1px;
  border-color: #cfdbe2;
}

/* line 15, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid * {
  max-width: 100%;
}

/* line 20, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-titlebar {
  position: relative;
  padding: 8px 15px;
  border-bottom: 0;
  line-height: 1.528571429;
  text-transform: none;
  font-size: 15px;
  font-weight: normal;
  background-color: #fff;
  color: #444;
  height: auto;
}

/* line 32, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-titlebar .ui-jqgrid-titlebar-close {
  margin-right: 10px;
}

/* line 37, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-pager {
  position: relative;
  padding: 8px 14px !important;
  height: auto !important;
  max-width: 100%;
}

/* line 45, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-pager .ui-pg-table .navtable .ui-corner-all {
  border-radius: 0px;
}

/* line 51, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-pager .ui-pg-input,
.ui-jqgrid .ui-jqgrid-pager .ui-pg-selbox {
  height: 24px;
  padding: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: #3a3f51;
  background-color: #fff;
  background-image: none;
  border: 1px solid #b7dde8;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 65, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-pager .ui-pager-control {
  position: relative;
}

/* line 68, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-pager .ui-pg-button:hover {
  padding: 1px;
  border: 0px;
}

/* line 75, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .loading {
  position: absolute;
  top: 45%;
  left: 45%;
  width: auto;
  height: auto;
  z-index: 101;
  padding: 6px;
  margin: 5px;
  text-align: center;
  font-weight: bold;
  display: none;
  border-width: 2px !important;
  font-size: 11px;
}

/* line 94, app/assets/stylesheets/app/jqgrid.scss */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 0;
  background: #fafbfc;
  font-weight: bold;
  color: #888;
}

/* line 103, app/assets/stylesheets/app/jqgrid.scss */
.ui-state-default.ui-state-hover,
.ui-widget-content .ui-state-default.ui-state-hover,
.ui-widget-header .ui-state-default.ui-state-hover {
  background: #fafbfc;
}

/* line 106, app/assets/stylesheets/app/jqgrid.scss */
.ui-state-default .ui-state-default,
.ui-widget-content .ui-state-default .ui-state-default,
.ui-widget-header .ui-state-default .ui-state-default {
  border-top: 0 !important;
}

/* line 111, app/assets/stylesheets/app/jqgrid.scss */
.ui-widget-header {
  background-image: none;
}

/* line 120, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid tr.ui-row-ltr td {
  border-right: 0;
  text-align: left;
  border-color: #e9f4f7;
  background-color: inherit;
}

/* line 131, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid tr.ui-search-toolbar th {
  border-top-width: 0px !important;
  border-top-color: inherit !important;
  border-top-style: ridge !important;
}

/* line 139, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid tr.jqgrow td {
  padding: 8px;
}

/* line 144, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-btable {
  border-collapse: separate;
}

/* line 147, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-htable {
  border-collapse: separate;
}

/* line 149, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-htable th {
  padding: 14px 8px;
}

/* line 154, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid .ui-jqgrid-bdiv,
.ui-jqgrid .ui-jqgrid-btable {
  width: auto !important;
}

/* line 159, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid tr.jqfoot td {
  min-height: 25px;
  padding: 5px 2px;
}

/* line 163, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid tr.footrow td {
  height: 30px;
}

/* line 167, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqgrid tr.footrow-ltr td {
  border: 0;
}

/* line 174, app/assets/stylesheets/app/jqgrid.scss */
.ui-search-toolbar input[type="text"] {
  font-size: 12px;
  height: 15px;
  border: 1px solid #e4eaec;
  border-radius: 0px;
}

/* line 184, app/assets/stylesheets/app/jqgrid.scss */
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  background: #e9f4f7;
  border-collapse: separate;
  color: #656565;
}

/* line 193, app/assets/stylesheets/app/jqgrid.scss */
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: #e9f4f7;
  color: #656565;
}

/* line 199, app/assets/stylesheets/app/jqgrid.scss */
.ui-widget-content {
  color: #656565;
  font-size: 14px;
  background-image: none;
}

/* line 204, app/assets/stylesheets/app/jqgrid.scss */
tr.ui-widget-content {
  border: 0;
}

/* line 208, app/assets/stylesheets/app/jqgrid.scss */
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #e9f4f7;
  background: #fff;
  font-weight: normal;
  color: #888;
}

/* line 218, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqdialog .ui-jqdialog-titlebar {
  padding: 10px 10px;
}

/* line 221, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqdialog .ui-jqdialog-title {
  float: none !important;
}

/* line 224, app/assets/stylesheets/app/jqgrid.scss */
.ui-jqdialog > .ui-resizable-se {
  position: absolute;
}

/* line 99, app/assets/stylesheets/application.css.scss */
.v_align_top th, .v_align_top td {
  vertical-align: top !important;
}

/* Plugins */
/**
 * Bootstrap Slider
 */
/* line 18, app/assets/stylesheets/app/plugins.scss */
body {
  /**
   * Chosen
   */
  /**
   * Filestyle
   */
}

/* line 63, app/assets/stylesheets/app/plugins.scss */
body .slider-handle,
body .slider-track,
body .slider-selection {
  background-image: none;
  box-shadow: 0 0 0 #000;
}

/* line 70, app/assets/stylesheets/app/plugins.scss */
body .slider-handle {
  background-color: #fff;
  border: 1px solid #3d45c0;
  opacity: 1;
}

/* line 75, app/assets/stylesheets/app/plugins.scss */
body .slider-track {
  background-color: #fff;
  border: 1px solid #3d45c0;
}

/* line 79, app/assets/stylesheets/app/plugins.scss */
body .slider-selection {
  background-color: #3d45c0;
}

/* line 84, app/assets/stylesheets/app/plugins.scss */
body .slider .tooltip.top .tooltip-arrow {
  border-top-color: #2c3037;
}

/* line 87, app/assets/stylesheets/app/plugins.scss */
body .slider .tooltip.right .tooltip-arrow {
  border-right-color: #2c3037;
}

/* line 90, app/assets/stylesheets/app/plugins.scss */
body .slider .tooltip-inner {
  background-color: #2c3037;
}

/* line 95, app/assets/stylesheets/app/plugins.scss */
body .slider-lg {
  width: 380px;
}

/* line 108, app/assets/stylesheets/app/plugins.scss */
body .chosen-container {
  width: 100% !important;
  max-width: 100%;
}

/* line 113, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-multi .chosen-choices {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 16px;
  font-size: 15px;
  line-height: 1.528571429;
  color: #3a3f51;
  background-color: #fff;
  background-image: none;
  border: 1px solid #b7dde8;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  box-shadow: 0 0 0 #000;
}

/* line 57, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
body .chosen-container-multi .chosen-choices:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 103, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
body .chosen-container-multi .chosen-choices::-moz-placeholder {
  color: #b7bac9;
  opacity: 1;
}

/* line 107, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
body .chosen-container-multi .chosen-choices:-ms-input-placeholder {
  color: #b7bac9;
}

/* line 108, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
body .chosen-container-multi .chosen-choices::-webkit-input-placeholder {
  color: #b7bac9;
}

/* line 52, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-multi .chosen-choices[disabled], body .chosen-container-multi .chosen-choices[readonly], fieldset[disabled] body .chosen-container-multi .chosen-choices {
  cursor: not-allowed;
  background-color: #e9f4f7;
  opacity: 1;
}

/* line 118, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  height: auto;
  padding: 0;
}

/* line 123, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-multi .chosen-choices li.search-choice {
  margin: 0 5px 3px 0;
  background-color: #f5f6f7;
  border: 1px solid #e7e9ec;
  background-image: none;
}

/* line 130, app/assets/stylesheets/app/plugins.scss */
body .chosen-container .chosen-results li.highlighted {
  background-color: #a1a2a3;
  background-image: none;
}

/* line 134, app/assets/stylesheets/app/plugins.scss */
body .chosen-container .chosen-drop {
  border-color: #ddd;
}

/* line 137, app/assets/stylesheets/app/plugins.scss */
body .chosen-container .chosen-results li.group-result {
  color: #747576;
  letter-spacing: 0.02em;
}

/* line 142, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-single .chosen-single,
body .chosen-container-active.chosen-with-drop .chosen-single {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 16px;
  font-size: 15px;
  line-height: 1.528571429;
  color: #3a3f51;
  background-color: #fff;
  background-image: none;
  border: 1px solid #b7dde8;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  box-shadow: 0 0 0 #000;
}

/* line 57, app/assets/stylesheets/bootstrap/bootstrap/mixins/_forms.scss */
body .chosen-container-single .chosen-single:focus,
body .chosen-container-active.chosen-with-drop .chosen-single:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 103, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
body .chosen-container-single .chosen-single::-moz-placeholder,
body .chosen-container-active.chosen-with-drop .chosen-single::-moz-placeholder {
  color: #b7bac9;
  opacity: 1;
}

/* line 107, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
body .chosen-container-single .chosen-single:-ms-input-placeholder,
body .chosen-container-active.chosen-with-drop .chosen-single:-ms-input-placeholder {
  color: #b7bac9;
}

/* line 108, app/assets/stylesheets/bootstrap/bootstrap/mixins/_vendor-prefixes.scss */
body .chosen-container-single .chosen-single::-webkit-input-placeholder,
body .chosen-container-active.chosen-with-drop .chosen-single::-webkit-input-placeholder {
  color: #b7bac9;
}

/* line 52, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-single .chosen-single[disabled], body .chosen-container-single .chosen-single[readonly], fieldset[disabled] body .chosen-container-single .chosen-single,
body .chosen-container-active.chosen-with-drop .chosen-single[disabled],
body .chosen-container-active.chosen-with-drop .chosen-single[readonly], fieldset[disabled] body .chosen-container-active.chosen-with-drop .chosen-single {
  cursor: not-allowed;
  background-color: #e9f4f7;
  opacity: 1;
}

/* line 148, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-active .chosen-single,
body .chosen-container-active .chosen-choices {
  border: 1px solid #66afe9;
}

/* line 153, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-single .chosen-drop {
  margin-top: -3px;
}

/* line 157, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-single .chosen-single div {
  top: 6px;
  right: 5px;
}

/* line 162, app/assets/stylesheets/app/plugins.scss */
body .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  color: #b7bac9;
}

/* line 170, app/assets/stylesheets/app/plugins.scss */
body .bootstrap-filestyle {
  max-width: 380px;
}

/* line 175, app/assets/stylesheets/app/plugins.scss */
body .select2-container {
  max-width: 100%;
}

/* line 178, app/assets/stylesheets/app/plugins.scss */
body .select2-container--bootstrap .select2-selection--single,
body .select2-container--bootstrap .select2-selection--multiple {
  border: 1px solid #b7dde8;
  box-shadow: 0 0 0 #000 !important;
}

/* line 186, app/assets/stylesheets/app/plugins.scss */
body .colorpicker-saturation {
  background-image: url(/images/bootstrap-colorpicker/saturation.png);
}

/* line 190, app/assets/stylesheets/app/plugins.scss */
body .colorpicker-hue {
  background-image: url(/images/bootstrap-colorpicker/hue.png);
}

/* line 194, app/assets/stylesheets/app/plugins.scss */
body .colorpicker-alpha {
  background-image: url(/images/bootstrap-colorpicker/alpha.png);
}

/* line 198, app/assets/stylesheets/app/plugins.scss */
body .colorpicker-color {
  background-image: url(/images/bootstrap-colorpicker/alpha.png);
}

/* line 202, app/assets/stylesheets/app/plugins.scss */
body .colorpicker.colorpicker-horizontal .colorpicker-hue {
  background-image: url(/images/bootstrap-colorpicker/hue-horizontal.png);
}

/* line 206, app/assets/stylesheets/app/plugins.scss */
body .colorpicker.colorpicker-horizontal .colorpicker-alpha {
  background-image: url(/images/bootstrap-colorpicker/alpha-horizontal.png);
}

/* line 9, app/assets/stylesheets/app/slim-scroll.scss */
[data-scrollable] {
  display: block;
}

/* line 14, app/assets/stylesheets/app/slim-scroll.scss */
.slimScrollBar {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.35) !important;
  border: 0 !important;
  border-radius: 1px !important;
}

/* line 21, app/assets/stylesheets/app/slim-scroll.scss */
.slimScrollRail {
  opacity: 1 !important;
  background-color: rgba(0, 0, 0, 0.15) !important;
  border: 0 !important;
  border-radius: 0 !important;
  bottom: 0;
}

/* line 14, app/assets/stylesheets/app/alerts.scss */
.alerts {
  position: fixed;
  top: 60px;
  left: 60px;
  z-index: 9090;
  width: 350px;
}

/* line 22, app/assets/stylesheets/app/alerts.scss */
.alerts:hover .alert .close {
  opacity: 1;
  visibility: visible;
}

/* line 32, app/assets/stylesheets/app/alerts.scss */
.alerts-top-right, .alerts,
.alerts-bottom-right {
  left: auto;
  right: 60px;
}

/* line 38, app/assets/stylesheets/app/alerts.scss */
.alerts-top-center,
.alerts-bottom-center {
  left: 50%;
  margin-left: -175px;
}

/* line 44, app/assets/stylesheets/app/alerts.scss */
.alerts-bottom-left,
.alerts-bottom-right,
.alerts-bottom-center {
  top: auto;
  bottom: 60px;
}

@media (max-width: 480px) {
  /* line 60, app/assets/stylesheets/app/alerts.scss */
  .alerts {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}

/* line 59, app/assets/stylesheets/app/notify.scss */
.uk-notify {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 1040;
  box-sizing: border-box;
  width: 350px;
}

/* line 74, app/assets/stylesheets/app/notify.scss */
.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 50px;
}

/* line 80, app/assets/stylesheets/app/notify.scss */
.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}

/* line 86, app/assets/stylesheets/app/notify.scss */
.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 50px;
}

@media (max-width: 480px) {
  /* line 102, app/assets/stylesheets/app/notify.scss */
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}

/* line 115, app/assets/stylesheets/app/notify.scss */
.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 16px;
  line-height: 22px;
  border-radius: 3px;
  padding-right: 35px;
  cursor: pointer;
}

/* line 127, app/assets/stylesheets/app/notify.scss */
.uk-notify-message.alert.alert-normal {
  background: #444;
  color: #fff;
}

/* line 138, app/assets/stylesheets/app/notify.scss */
.uk-notify-message > .close {
  visibility: hidden;
}

/* line 143, app/assets/stylesheets/app/notify.scss */
.uk-notify-message:hover > .close {
  visibility: visible;
}

/*@import "app/calendar"; */
/* line 13, app/assets/stylesheets/app/spinner.scss */
body .whirl {
  position: relative;
}

/* line 15, app/assets/stylesheets/app/spinner.scss */
body .whirl:before {
  content: attr(data-spinner-text);
  display: block;
  background-color: #f0f0f0;
  opacity: 0.7;
}

/* line 21, app/assets/stylesheets/app/spinner.scss */
body .whirl.solid {
  opacity: 1;
}

/* line 24, app/assets/stylesheets/app/spinner.scss */
body .whirl:after {
  border-top-color: #3d45c0;
}

/* line 32, app/assets/stylesheets/app/spinner.scss */
body .whirl.blade:after {
  border-bottom-color: #3d45c0;
}

/* line 35, app/assets/stylesheets/app/spinner.scss */
body .whirl.double-up:after {
  border-right-color: #3d45c0;
  border-top-color: #3d45c0;
  border-left-color: #3d45c0;
  border-bottom-color: #3d45c0;
}

/* line 41, app/assets/stylesheets/app/spinner.scss */
body .whirl.duo:after {
  border-right-color: #3d45c0;
  border-left-color: #3d45c0;
  border-top-color: #7266ba;
  border-bottom-color: #7266ba;
}

/* line 47, app/assets/stylesheets/app/spinner.scss */
body .whirl.helicopter:after {
  background-color: #3d45c0;
}

/* line 50, app/assets/stylesheets/app/spinner.scss */
body .whirl.ringed:after {
  border-right-color: #3d45c0;
  border-top-color: #7266ba;
  border-left-color: #7266ba;
  border-bottom-color: #7266ba;
}

/* line 56, app/assets/stylesheets/app/spinner.scss */
body .whirl.traditional:after {
  border-right-color: #3d45c0;
  border-top-color: #3d45c0;
  border-left-color: #7266ba;
  border-bottom-color: #fad732;
}

/* line 62, app/assets/stylesheets/app/spinner.scss */
body .whirl.line:after {
  box-shadow: inset -10px 0px 0px fade(#3d45c0, 50%);
}

/* line 68, app/assets/stylesheets/app/spinner.scss */
.no-cssanimations body .whirl:before {
  opacity: .9;
}

/* line 71, app/assets/stylesheets/app/spinner.scss */
.no-cssanimations body .whirl:after {
  content: "Loading...";
  width: 40px;
  height: 40px;
  margin: -20px 0 -20px;
  line-height: 40px;
  color: #000;
  opacity: 1;
  border: 0;
  box-shadow: 0 0 0 #000;
  background-color: transparent;
  text-align: center;
}

/* line 94, app/assets/stylesheets/app/spinner.scss */
body .ball-pulse > div,
body .ball-grid-pulse > div,
body .square-spin > div,
body .ball-pulse-rise > div,
body .ball-rotate > div,
body .ball-rotate > div:before, body .ball-rotate > div:after,
body .cube-transition > div,
body .ball-zig-zag > div,
body .ball-zig-zag-deflect > div,
body .ball-triangle-path > div,
body .ball-scale > div,
body .line-scale > div,
body .line-scale-party > div,
body .ball-scale-multiple > div,
body .ball-pulse-sync > div,
body .ball-beat > div,
body .line-scale-pulse-out > div,
body .line-scale-pulse-out-rapid > div,
body .ball-spin-fade-loader > div,
body .line-spin-fade-loader > div,
body .triangle-skew-spin > div,
body .ball-grid-beat > div,
body .semi-circle-spin > div {
  background-color: #3d45c0;
}

/* line 121, app/assets/stylesheets/app/spinner.scss */
body .ball-clip-rotate-multiple {
  width: 1px;
}

/* line 123, app/assets/stylesheets/app/spinner.scss */
body .ball-clip-rotate-multiple > div {
  border-color: #3d45c0 transparent #3d45c0 transparent;
}

/* line 125, app/assets/stylesheets/app/spinner.scss */
body .ball-clip-rotate-multiple > div:last-child {
  border-color: transparent #3d45c0 transparent #3d45c0;
}

/* line 130, app/assets/stylesheets/app/spinner.scss */
body .ball-clip-rotate > div {
  border-color: #3d45c0;
  border-bottom-color: transparent;
}

/* line 135, app/assets/stylesheets/app/spinner.scss */
body .ball-clip-rotate-pulse > div:first-child {
  background-color: #3d45c0;
  top: 5px;
  left: -8px;
}

/* line 140, app/assets/stylesheets/app/spinner.scss */
body .ball-clip-rotate-pulse > div:last-child {
  border-color: #3d45c0 transparent #3d45c0 transparent;
}

/* line 144, app/assets/stylesheets/app/spinner.scss */
body .square-spin > div,
body .ball-scale-ripple > div,
body .ball-scale-ripple-multiple > div {
  border-color: #3d45c0;
}

/* line 149, app/assets/stylesheets/app/spinner.scss */
body .pacman > div:first-of-type {
  border-top-color: #3d45c0;
  border-left-color: #3d45c0;
  border-bottom-color: #3d45c0;
}

/* line 154, app/assets/stylesheets/app/spinner.scss */
body .pacman > div:nth-child(2) {
  border-top-color: #3d45c0;
  border-left-color: #3d45c0;
  border-bottom-color: #3d45c0;
}

/* line 159, app/assets/stylesheets/app/spinner.scss */
body .pacman > div:nth-child(3), body .pacman > div:nth-child(4), body .pacman > div:nth-child(5), body .pacman > div:nth-child(6) {
  background-color: #3d45c0;
}

/* line 167, app/assets/stylesheets/app/spinner.scss */
body .sk-rotating-plane.sk-spinner,
body .sk-double-bounce .sk-double-bounce1, body .sk-double-bounce .sk-double-bounce2,
body .sk-wave .sk-rect,
body .sk-wandering-cubes .sk-cube1, body .sk-wandering-cubes .sk-cube2,
body .sk-chasing-dots .sk-dot1, body .sk-chasing-dots .sk-dot2,
body .sk-three-bounce div,
body .sk-circle .sk-child:before,
body .sk-cube-grid .sk-cube,
body .sk-fading-circle .sk-circle:before,
body .sk-spinner-pulse.sk-spinner,
body .sk-rotating-plane {
  background-color: #3d45c0 !important;
}

/* line 181, app/assets/stylesheets/app/spinner.scss */
body .sk-wordpress .sk-inner-circle {
  background-color: #fff;
}

/* just for loaders.css demo */
/* line 189, app/assets/stylesheets/app/spinner.scss */
.loader-demo {
  height: 150px;
  padding-top: 50px;
  text-align: center;
}

/* line 193, app/assets/stylesheets/app/spinner.scss */
.loader-demo > div {
  display: inline-block;
}

/* line 196, app/assets/stylesheets/app/spinner.scss */
.loader-demo.loader-demo-sk {
  padding-top: 0;
}

/* line 5, app/assets/stylesheets/app/gmap.scss */
.gmap {
  height: 300px;
}

/* line 10, app/assets/stylesheets/app/gmap.scss */
.gmap.gmap-sm {
  height: 150px;
}

/* line 10, app/assets/stylesheets/app/vector-map.scss */
body .jvectormap-label {
  position: absolute;
  display: none;
  border: solid 1px #313232;
  border-radius: 2px;
  background: #313232;
  color: white;
  padding: 3px 6px;
  opacity: 0.9;
  z-index: 1100;
}

/* line 22, app/assets/stylesheets/app/vector-map.scss */
body .jvectormap-zoomin,
body .jvectormap-zoomout {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background: #515253;
  padding: 5px;
  color: white;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
}

/* line 36, app/assets/stylesheets/app/vector-map.scss */
body .jvectormap-zoomin {
  top: 10px;
}

/* line 37, app/assets/stylesheets/app/vector-map.scss */
body .jvectormap-zoomout {
  top: 30px;
}

/* line 9, app/assets/stylesheets/app/portlets.scss */
[data-toggle="portlet"] {
  min-height: 30px;
}

/* line 15, app/assets/stylesheets/app/portlets.scss */
.portlet-handler[data-toggle="portlet"],
[data-toggle="portlet"] .portlet-handler {
  cursor: move;
}

/* line 21, app/assets/stylesheets/app/portlets.scss */
.portlets-wrapper {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: auto;
}

/* line 33, app/assets/stylesheets/app/portlets.scss */
.portlet.box-placeholder {
  padding: 0;
}

/* Mailbox */
/* line 13, app/assets/stylesheets/app/mailbox.scss */
.mb-boxes {
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/app/mailbox.scss */
.mb-boxes .nav > li > a {
  font-weight: 600;
  color: #3a3f51;
  margin: 5px 0;
  transition: background-color 0.3s ease;
}

/* line 24, app/assets/stylesheets/app/mailbox.scss */
.mb-boxes .nav > li > a:hover, .mb-boxes .nav > li > a:focus {
  background-color: #C0D0D3;
}

/* line 30, app/assets/stylesheets/app/mailbox.scss */
.mb-boxes .nav > li.active > a {
  background-color: #3d45c0 !important;
  color: #fff;
}

@media only screen and (min-width: 992px) {
  /* line 13, app/assets/stylesheets/app/mailbox.scss */
  .mb-boxes {
    height: auto !important;
    visibility: visible !important;
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  /* line 44, app/assets/stylesheets/app/mailbox.scss */
  .mb-compose-button {
    display: block;
    width: 100%;
  }
  /* line 50, app/assets/stylesheets/app/mailbox.scss */
  .mb-toggle-button {
    display: none;
  }
}

/* line 60, app/assets/stylesheets/app/mailbox.scss */
.mb-mails > tbody > tr > td {
  border-top-color: transparent;
  cursor: pointer;
}

/* line 65, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-mail-active {
  background-color: #f7f8f9 !important;
}

/* line 69, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-mail-avatar {
  float: left;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 3px;
}

/* line 77, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-mail-date {
  display: block;
  float: right;
  color: #909FA7;
  font-size: 12px;
  font-weight: bold;
}

/* line 85, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-mail-from {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

/* line 92, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-mail-meta {
  overflow: hidden;
}

/* line 95, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-mail-subject {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 6px;
}

/* line 102, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-mail-preview {
  clear: both;
  margin-top: 10px;
  color: #909FA7;
  margin-top: 2px;
}

/* line 109, app/assets/stylesheets/app/mailbox.scss */
.mb-mails .mb-attachment {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e4eaec;
}

/* line 120, app/assets/stylesheets/app/mailbox.scss */
.mb-view > tbody > tr > td {
  cursor: auto;
}

/* line 124, app/assets/stylesheets/app/mailbox.scss */
.mb-view .mb-mail-to-list {
  margin-top: 6px;
}

/* line 126, app/assets/stylesheets/app/mailbox.scss */
.mb-view .mb-mail-to-list > a {
  margin-right: 5px;
  color: #909FA7;
}

/* Plans */
/* ========================================================================
   Component: Plan table
 ========================================================================== */
/* line 5, app/assets/stylesheets/app/plans.scss */
.plan {
  background-color: #e9f4f7;
  overflow: auto;
  border-radius: 4px;
  padding-bottom: 30px;
}

/* line 12, app/assets/stylesheets/app/plans.scss */
.plan .plan-header {
  background-color: #3d45c0;
  color: #fff;
  margin: 0;
  padding: 20px 10px;
  text-align: center;
}

/* line 20, app/assets/stylesheets/app/plans.scss */
.plan .plan-price {
  background: #fff;
  padding: 16px 8px;
  text-align: center;
}

/* line 25, app/assets/stylesheets/app/plans.scss */
.plan .plan-price h2 {
  margin: 0;
}

/* line 31, app/assets/stylesheets/app/plans.scss */
.plan .plan-period {
  font-size: 16px;
}

/* line 35, app/assets/stylesheets/app/plans.scss */
.plan hr {
  display: block;
  margin: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  height: 0;
}

/* line 42, app/assets/stylesheets/app/plans.scss */
.plan .plan-description {
  padding: 0 24px;
  text-align: center;
}

/* line 47, app/assets/stylesheets/app/plans.scss */
.plan .plan-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: left;
}

/* line 54, app/assets/stylesheets/app/plans.scss */
.plan .plan-features > li {
  padding: 8px 24px;
}

/* line 57, app/assets/stylesheets/app/plans.scss */
.plan .plan-features > li > em {
  color: #3d45c0;
  margin-right: 7px;
}

/* line 62, app/assets/stylesheets/app/plans.scss */
.plan .plan-features > li:last-child {
  padding-bottom: 0;
}

/* line 70, app/assets/stylesheets/app/plans.scss */
.plan .plan-feature-disable {
  color: #f05050 !important;
}

/* Utilities */
/* line 8, app/assets/stylesheets/app/utils.scss */
.m0 {
  margin: 0 !important;
}

/* line 9, app/assets/stylesheets/app/utils.scss */
.ml0 {
  margin-left: 0 !important;
}

/* line 10, app/assets/stylesheets/app/utils.scss */
.mr0 {
  margin-right: 0 !important;
}

/* line 11, app/assets/stylesheets/app/utils.scss */
.mt0 {
  margin-top: 0 !important;
}

/* line 12, app/assets/stylesheets/app/utils.scss */
.mb0 {
  margin-bottom: 0 !important;
}

/* line 14, app/assets/stylesheets/app/utils.scss */
.m {
  margin: 10px !important;
}

/* line 15, app/assets/stylesheets/app/utils.scss */
.ml, .mh {
  margin-left: 10px !important;
}

/* line 16, app/assets/stylesheets/app/utils.scss */
.mr, .mh {
  margin-right: 10px !important;
}

/* line 17, app/assets/stylesheets/app/utils.scss */
.mt, .mv {
  margin-top: 10px !important;
}

/* line 18, app/assets/stylesheets/app/utils.scss */
.mb, .mv {
  margin-bottom: 10px !important;
}

/* line 20, app/assets/stylesheets/app/utils.scss */
.m-sm {
  margin: 5px !important;
}

/* line 21, app/assets/stylesheets/app/utils.scss */
.ml-sm, .mh-sm {
  margin-left: 5px !important;
}

/* line 22, app/assets/stylesheets/app/utils.scss */
.mr-sm, .mh-sm {
  margin-right: 5px !important;
}

/* line 23, app/assets/stylesheets/app/utils.scss */
.mt-sm, .mv-sm {
  margin-top: 5px !important;
}

/* line 24, app/assets/stylesheets/app/utils.scss */
.mb-sm, .mv-sm {
  margin-bottom: 5px !important;
}

/* line 26, app/assets/stylesheets/app/utils.scss */
.m-lg {
  margin: 15px !important;
}

/* line 27, app/assets/stylesheets/app/utils.scss */
.ml-lg, .mh-lg {
  margin-left: 15px !important;
}

/* line 28, app/assets/stylesheets/app/utils.scss */
.mr-lg, .mh-lg {
  margin-right: 15px !important;
}

/* line 29, app/assets/stylesheets/app/utils.scss */
.mt-lg, .mv-lg {
  margin-top: 15px !important;
}

/* line 30, app/assets/stylesheets/app/utils.scss */
.mb-lg, .mv-lg {
  margin-bottom: 15px !important;
}

/* line 32, app/assets/stylesheets/app/utils.scss */
.m-xl {
  margin: 30px !important;
}

/* line 33, app/assets/stylesheets/app/utils.scss */
.ml-xl {
  margin-left: 30px !important;
}

/* line 34, app/assets/stylesheets/app/utils.scss */
.mr-xl {
  margin-right: 30px !important;
}

/* line 35, app/assets/stylesheets/app/utils.scss */
.mt-xl {
  margin-top: 30px !important;
}

/* line 36, app/assets/stylesheets/app/utils.scss */
.mb-xl {
  margin-bottom: 30px !important;
}

/* line 51, app/assets/stylesheets/app/utils.scss */
.p0 {
  padding: 0 !important;
}

/* line 52, app/assets/stylesheets/app/utils.scss */
.pl0, .ph0 {
  padding-left: 0 !important;
}

/* line 53, app/assets/stylesheets/app/utils.scss */
.pr0, .ph0 {
  padding-right: 0 !important;
}

/* line 54, app/assets/stylesheets/app/utils.scss */
.pt0, .pv0 {
  padding-top: 0 !important;
}

/* line 55, app/assets/stylesheets/app/utils.scss */
.pb0, .pv0 {
  padding-bottom: 0 !important;
}

/* line 59, app/assets/stylesheets/app/utils.scss */
.p {
  padding: 10px !important;
}

/* line 60, app/assets/stylesheets/app/utils.scss */
.pl, .ph {
  padding-left: 10px !important;
}

/* line 61, app/assets/stylesheets/app/utils.scss */
.pr, .ph {
  padding-right: 10px !important;
}

/* line 62, app/assets/stylesheets/app/utils.scss */
.pt, .pv {
  padding-top: 10px !important;
}

/* line 63, app/assets/stylesheets/app/utils.scss */
.pb, .pv {
  padding-bottom: 10px !important;
}

/* line 65, app/assets/stylesheets/app/utils.scss */
.p-sm {
  padding: 5px !important;
}

/* line 66, app/assets/stylesheets/app/utils.scss */
.pl-sm, .ph-sm {
  padding-left: 5px !important;
}

/* line 67, app/assets/stylesheets/app/utils.scss */
.pr-sm, .ph-sm {
  padding-right: 5px !important;
}

/* line 68, app/assets/stylesheets/app/utils.scss */
.pt-sm, .pv-sm {
  padding-top: 5px !important;
}

/* line 69, app/assets/stylesheets/app/utils.scss */
.pb-sm, .pv-sm {
  padding-bottom: 5px !important;
}

/* line 71, app/assets/stylesheets/app/utils.scss */
.p-lg {
  padding: 15px !important;
}

/* line 72, app/assets/stylesheets/app/utils.scss */
.pl-lg, .ph-lg {
  padding-left: 15px !important;
}

/* line 73, app/assets/stylesheets/app/utils.scss */
.pr-lg, .ph-lg {
  padding-right: 15px !important;
}

/* line 74, app/assets/stylesheets/app/utils.scss */
.pt-lg, .pv-lg {
  padding-top: 15px !important;
}

/* line 75, app/assets/stylesheets/app/utils.scss */
.pb-lg, .pv-lg {
  padding-bottom: 15px !important;
}

/* line 77, app/assets/stylesheets/app/utils.scss */
.p-xl {
  padding: 30px !important;
}

/* line 78, app/assets/stylesheets/app/utils.scss */
.pl-xl, .ph-xl {
  padding-left: 30px !important;
}

/* line 79, app/assets/stylesheets/app/utils.scss */
.pr-xl, .ph-xl {
  padding-right: 30px !important;
}

/* line 80, app/assets/stylesheets/app/utils.scss */
.pt-xl, .pv-xl {
  padding-top: 30px !important;
}

/* line 81, app/assets/stylesheets/app/utils.scss */
.pb-xl, .pv-xl {
  padding-bottom: 30px !important;
}

/* line 101, app/assets/stylesheets/app/utils.scss */
.b0 {
  border-width: 0 !important;
}

/* line 102, app/assets/stylesheets/app/utils.scss */
.bl0 {
  border-left-width: 0 !important;
}

/* line 103, app/assets/stylesheets/app/utils.scss */
.br0 {
  border-right-width: 0 !important;
}

/* line 104, app/assets/stylesheets/app/utils.scss */
.bt0 {
  border-top-width: 0 !important;
}

/* line 105, app/assets/stylesheets/app/utils.scss */
.bb0 {
  border-bottom-width: 0 !important;
}

/* line 107, app/assets/stylesheets/app/utils.scss */
.br, .b, .ba {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

/* line 108, app/assets/stylesheets/app/utils.scss */
.bl, .b, .ba {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

/* line 109, app/assets/stylesheets/app/utils.scss */
.bt, .b, .ba {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* line 110, app/assets/stylesheets/app/utils.scss */
.bb, .b, .ba {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* line 115, app/assets/stylesheets/app/utils.scss */
.radius-clear {
  border-radius: 0 !important;
}

/* line 121, app/assets/stylesheets/app/utils.scss */
.shadow-clear {
  box-shadow: 0 0 0 #000 !important;
}

/* line 127, app/assets/stylesheets/app/utils.scss */
.text-white {
  color: #fff;
}

/* line 128, app/assets/stylesheets/app/utils.scss */
.text-inverse {
  color: #131e26;
}

/* line 129, app/assets/stylesheets/app/utils.scss */
.text-alpha {
  color: rgba(255, 255, 255, 0.5);
}

/* line 130, app/assets/stylesheets/app/utils.scss */
.text-pink {
  color: #f532e5;
}

/* line 131, app/assets/stylesheets/app/utils.scss */
.text-purple {
  color: #7266ba;
}

/* line 132, app/assets/stylesheets/app/utils.scss */
.text-dark {
  color: #3a3f51;
}

/* line 133, app/assets/stylesheets/app/utils.scss */
.text-alpha-inverse {
  color: rgba(0, 0, 0, 0.5);
}

/* line 134, app/assets/stylesheets/app/utils.scss */
.text-green {
  color: #37bc9b;
}

/* line 135, app/assets/stylesheets/app/utils.scss */
.text-yellow {
  color: #fad732;
}

/* line 136, app/assets/stylesheets/app/utils.scss */
.text-gray-darker {
  color: #232735;
}

/* line 137, app/assets/stylesheets/app/utils.scss */
.text-gray-dark {
  color: #3a3f51;
}

/* line 138, app/assets/stylesheets/app/utils.scss */
.text-gray {
  color: #b7dde8;
}

/* line 139, app/assets/stylesheets/app/utils.scss */
.text-gray-light {
  color: #e4eaec;
}

/* line 140, app/assets/stylesheets/app/utils.scss */
.text-gray-lighter {
  color: #e9f4f7;
}

/* line 141, app/assets/stylesheets/app/utils.scss */
.text-inherit {
  color: inherit;
}

/* line 144, app/assets/stylesheets/app/utils.scss */
.text-sm {
  font-size: 12.75px;
}

/* line 145, app/assets/stylesheets/app/utils.scss */
.text-md {
  font-size: 28.5px;
}

/* line 146, app/assets/stylesheets/app/utils.scss */
.text-lg {
  font-size: 45px;
}

/* line 150, app/assets/stylesheets/app/utils.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 151, app/assets/stylesheets/app/utils.scss */
.text-thin {
  font-weight: 100 !important;
}

/* line 152, app/assets/stylesheets/app/utils.scss */
.text-normal {
  font-weight: normal !important;
}

/* line 153, app/assets/stylesheets/app/utils.scss */
.text-bold {
  font-weight: bold !important;
}

/* line 155, app/assets/stylesheets/app/utils.scss */
.inline {
  display: inline-block !important;
}

/* line 156, app/assets/stylesheets/app/utils.scss */
.block-center {
  margin: 0 auto;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-primary {
  background-color: #3d45c0;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-primary-light {
  background-color: #6369cd !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-primary-dark {
  background-color: #313799 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-primary small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-success {
  background-color: #27c24c;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-success-light {
  background-color: #43d967 !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-success-dark {
  background-color: #1e983b !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-success small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-info {
  background-color: #3d45c0;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-info-light {
  background-color: #6369cd !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-info-dark {
  background-color: #313799 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-info small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-warning {
  background-color: #ff902b;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-warning-light {
  background-color: #ffab5e !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-warning-dark {
  background-color: #f77600 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-warning small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-danger {
  background-color: #f05050;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-danger-light {
  background-color: #f47f7f !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-danger-dark {
  background-color: #ec2121 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-danger small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-green {
  background-color: #37bc9b;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-green-light {
  background-color: #58ceb1 !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-green-dark {
  background-color: #2b957a !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-green small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-pink {
  background-color: #f532e5;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-pink-light {
  background-color: #f763eb !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-pink-dark {
  background-color: #e90bd6 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-pink small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-purple {
  background-color: #7266ba;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-purple-light {
  background-color: #9289ca !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-purple-dark {
  background-color: #564aa3 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-purple small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-inverse {
  background-color: #131e26;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-inverse-light {
  background-color: #243948 !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-inverse-dark {
  background-color: #020304 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-inverse small {
  color: inherit;
}

/* line 83, app/assets/stylesheets/app/utils-definitions.scss */
.bg-yellow {
  background-color: #fad732;
  color: #fff !important;
}

/* line 87, app/assets/stylesheets/app/utils-definitions.scss */
.bg-yellow-light {
  background-color: #fbe164 !important;
  color: #fff !important;
}

/* line 92, app/assets/stylesheets/app/utils-definitions.scss */
.bg-yellow-dark {
  background-color: #f3ca06 !important;
  color: #fff !important;
}

/* line 97, app/assets/stylesheets/app/utils-definitions.scss */
.bg-yellow small {
  color: inherit;
}

/* line 176, app/assets/stylesheets/app/utils.scss */
.bg-white {
  background-color: #fff;
  color: inherit !important;
}

/* line 177, app/assets/stylesheets/app/utils.scss */
.bg-gray-darker {
  background-color: #232735;
  color: #fff !important;
}

/* line 178, app/assets/stylesheets/app/utils.scss */
.bg-gray-dark {
  background-color: #3a3f51;
  color: #fff !important;
}

/* line 179, app/assets/stylesheets/app/utils.scss */
.bg-gray {
  background-color: #b7dde8;
  color: #515253 !important;
}

/* line 180, app/assets/stylesheets/app/utils.scss */
.bg-gray-light {
  background-color: #e4eaec;
  color: #515253 !important;
}

/* line 181, app/assets/stylesheets/app/utils.scss */
.bg-gray-lighter {
  background-color: #e9f4f7;
  color: #515253 !important;
}

/* line 183, app/assets/stylesheets/app/utils.scss */
.bg-transparent {
  background-color: transparent !important;
}

/* line 185, app/assets/stylesheets/app/utils.scss */
.bg-cover {
  background-size: cover;
}

/* line 191, app/assets/stylesheets/app/utils.scss */
.thumb8 {
  width: 8px !important;
  height: 8px !important;
}

/* line 192, app/assets/stylesheets/app/utils.scss */
.thumb16 {
  width: 16px !important;
  height: 16px !important;
}

/* line 193, app/assets/stylesheets/app/utils.scss */
.thumb24 {
  width: 24px !important;
  height: 24px !important;
}

/* line 194, app/assets/stylesheets/app/utils.scss */
.thumb32 {
  width: 32px !important;
  height: 32px !important;
}

/* line 195, app/assets/stylesheets/app/utils.scss */
.thumb40 {
  width: 40px !important;
  height: 40px !important;
}

/* line 196, app/assets/stylesheets/app/utils.scss */
.thumb48 {
  width: 48px !important;
  height: 48px !important;
}

/* line 197, app/assets/stylesheets/app/utils.scss */
.thumb64 {
  width: 64px !important;
  height: 64px !important;
}

/* line 198, app/assets/stylesheets/app/utils.scss */
.thumb80 {
  width: 80px !important;
  height: 80px !important;
}

/* line 199, app/assets/stylesheets/app/utils.scss */
.thumb96 {
  width: 96px !important;
  height: 96px !important;
}

/* line 200, app/assets/stylesheets/app/utils.scss */
.thumb128 {
  width: 128px !important;
  height: 128px !important;
}

/* line 205, app/assets/stylesheets/app/utils.scss */
.align-middle {
  vertical-align: middle;
}

/* line 208, app/assets/stylesheets/app/utils.scss */
.align-top {
  vertical-align: top;
}

/* line 211, app/assets/stylesheets/app/utils.scss */
.align-bottom {
  vertical-align: bottom;
}

/* line 217, app/assets/stylesheets/app/utils.scss */
.bg-center {
  background-position: center center;
  background-size: cover;
}

/* line 224, app/assets/stylesheets/app/utils.scss */
.list-icon em {
  font-size: 14px;
  width: 40px;
  vertical-align: middle;
  margin: 0;
  display: inline-block;
  text-align: center;
  transition: all 0.2s;
  line-height: 30px;
}

/* line 234, app/assets/stylesheets/app/utils.scss */
.list-icon div:hover em {
  transform: scale(3, 3);
}

/* line 241, app/assets/stylesheets/app/utils.scss */
.wd-xxs {
  width: 60px;
}

/* line 242, app/assets/stylesheets/app/utils.scss */
.wd-xs {
  width: 90px;
}

/* line 243, app/assets/stylesheets/app/utils.scss */
.wd-sm {
  width: 150px;
}

/* line 244, app/assets/stylesheets/app/utils.scss */
.wd-sd {
  width: 200px;
}

/* line 245, app/assets/stylesheets/app/utils.scss */
.wd-md {
  width: 240px;
}

/* line 246, app/assets/stylesheets/app/utils.scss */
.wd-lg {
  width: 280px;
}

/* line 247, app/assets/stylesheets/app/utils.scss */
.wd-xl {
  width: 320px;
}

/* line 248, app/assets/stylesheets/app/utils.scss */
.wd-xxl {
  width: 360px;
}

/* line 249, app/assets/stylesheets/app/utils.scss */
.wd-wide {
  width: 100%;
}

/* line 250, app/assets/stylesheets/app/utils.scss */
.wd-auto {
  width: auto;
}

/* line 251, app/assets/stylesheets/app/utils.scss */
.wd-zero {
  width: 0;
}

/* line 255, app/assets/stylesheets/app/utils.scss */
.label-inverse {
  background-color: #131e26;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-inverse[href]:hover, .label-inverse[href]:focus {
  background-color: #020304;
}

/* line 259, app/assets/stylesheets/app/utils.scss */
.label-green {
  background-color: #37bc9b;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-green[href]:hover, .label-green[href]:focus {
  background-color: #2b957a;
}

/* line 263, app/assets/stylesheets/app/utils.scss */
.label-pink {
  background-color: #f532e5;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-pink[href]:hover, .label-pink[href]:focus {
  background-color: #e90bd6;
}

/* line 267, app/assets/stylesheets/app/utils.scss */
.label-purple {
  background-color: #7266ba;
}

/* line 7, app/assets/stylesheets/bootstrap/bootstrap/mixins/_labels.scss */
.label-purple[href]:hover, .label-purple[href]:focus {
  background-color: #564aa3;
}

/* line 274, app/assets/stylesheets/app/utils.scss */
.alert-purple {
  background-color: #7266ba;
  border-color: #7266ba;
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-purple hr {
  border-top-color: #6254b2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-purple .alert-link {
  color: #e6e6e6;
}

/* line 277, app/assets/stylesheets/app/utils.scss */
.alert-green {
  background-color: #37bc9b;
  border-color: #37bc9b;
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-green hr {
  border-top-color: #31a88b;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-green .alert-link {
  color: #e6e6e6;
}

/* line 280, app/assets/stylesheets/app/utils.scss */
.alert-pink {
  background-color: #f532e5;
  border-color: #f532e5;
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-pink hr {
  border-top-color: #f41ae2;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-pink .alert-link {
  color: #e6e6e6;
}

/* line 283, app/assets/stylesheets/app/utils.scss */
.alert-inverse {
  background-color: #131e26;
  border-color: #131e26;
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-inverse hr {
  border-top-color: #0b1115;
}

/* line 11, app/assets/stylesheets/bootstrap/bootstrap/mixins/_alerts.scss */
.alert-inverse .alert-link {
  color: #e6e6e6;
}

/* line 288, app/assets/stylesheets/app/utils.scss */
.clickable {
  cursor: pointer;
}

/* line 295, app/assets/stylesheets/app/utils.scss */
.abs-center-container {
  position: relative;
}

/* line 298, app/assets/stylesheets/app/utils.scss */
.abs-center {
  height: 50%;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* line 306, app/assets/stylesheets/app/utils.scss */
.abs-center.abs-fixed {
  position: fixed;
  z-index: 999;
}

/* line 311, app/assets/stylesheets/app/utils.scss */
.abs-center.abs-right {
  left: auto;
  right: 20px;
  text-align: right;
}

/* line 316, app/assets/stylesheets/app/utils.scss */
.abs-center.abs-left {
  right: auto;
  left: 20px;
  text-align: left;
}

@media (max-height: 720px) {
  /* line 323, app/assets/stylesheets/app/utils.scss */
  .abs-center {
    position: relative;
  }
}

/* line 329, app/assets/stylesheets/app/utils.scss */
.link-unstyled {
  text-decoration: none !important;
  outline: none !important;
}

/* line 334, app/assets/stylesheets/app/utils.scss */
.no-resize {
  resize: none;
  max-width: 100%;
  min-width: 100%;
}

/** 
 * Displays hidden content on hover. Add this class to the parent element.
 * Markup
 *   <div class="hover-visible">
 *    <div class="hover-hidden"></div>
 *   </div>
 */
/* line 350, app/assets/stylesheets/app/utils.scss */
.hover-visible .hover-hidden {
  display: none;
}

/* line 354, app/assets/stylesheets/app/utils.scss */
.hover-visible:hover .hover-hidden {
  display: block;
}

/* line 357, app/assets/stylesheets/app/utils.scss */
.hover-visible:hover .hover-inline {
  display: inline-block;
}

/* line 379, app/assets/stylesheets/app/utils.scss */
.media-box,
.media-box-body {
  overflow: hidden;
  zoom: 1;
}

/* line 386, app/assets/stylesheets/app/utils.scss */
.media-box,
.media-box .media-box {
  margin-top: 15px;
}

/* line 390, app/assets/stylesheets/app/utils.scss */
.media-box:first-child {
  margin-top: 0;
}

/* line 395, app/assets/stylesheets/app/utils.scss */
.media-box-object {
  display: block;
}

/* line 400, app/assets/stylesheets/app/utils.scss */
.media-box-heading {
  margin: 0 0 5px;
}

/* line 409, app/assets/stylesheets/app/utils.scss */
.media-box > .pull-left {
  margin-right: 10px;
}

/* line 412, app/assets/stylesheets/app/utils.scss */
.media-box > .pull-right {
  margin-left: 10px;
}

/* line 422, app/assets/stylesheets/app/utils.scss */
.media-box-list {
  padding-left: 0;
  list-style: none;
}

/* Print CSS */
@media print {
  /* line 11, app/assets/stylesheets/app/print.scss */
  .sidebar,
.topnavbar,
.offsidebar,
.btn,
div.ColVis .ColVis_Button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  /* line 20, app/assets/stylesheets/app/print.scss */
  .wrapper,
.wrapper > section,
.content-wrapper {
    margin: 0 !important;
    /* remove margin used for sidebar and expand the content */
    padding: 0 !important;
    width: 100% !important;
  }
  /* line 29, app/assets/stylesheets/app/print.scss */
  .content-wrapper {
    overflow: hidden !important;
  }
}

/* Settings */
/* line 1, app/assets/stylesheets/app/settings.scss */
.setting-color {
  padding: 0 5px;
}

/* line 4, app/assets/stylesheets/app/settings.scss */
.setting-color > label {
  display: block;
  position: relative;
  margin: 0 10px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* line 13, app/assets/stylesheets/app/settings.scss */
.setting-color > label:first-child {
  margin-left: 0;
}

/* line 14, app/assets/stylesheets/app/settings.scss */
.setting-color > label:last-child {
  margin-right: 0;
}

/* line 17, app/assets/stylesheets/app/settings.scss */
.setting-color > label > .color {
  display: block;
  height: 18px;
}

/* line 22, app/assets/stylesheets/app/settings.scss */
.setting-color > label > .split {
  display: block;
}

/* line 14, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.setting-color > label > .split:before, .setting-color > label > .split:after {
  content: " ";
  display: table;
}

/* line 19, app/assets/stylesheets/bootstrap/bootstrap/mixins/_clearfix.scss */
.setting-color > label > .split:after {
  clear: both;
}

/* line 25, app/assets/stylesheets/app/settings.scss */
.setting-color > label > .split > .color {
  display: block;
  height: 37.5px;
}

/* line 28, app/assets/stylesheets/app/settings.scss */
.setting-color > label > .split > .color:first-child {
  float: left;
  width: 70%;
}

/* line 32, app/assets/stylesheets/app/settings.scss */
.setting-color > label > .split > .color:last-child {
  float: right;
  width: 30%;
}

/* line 40, app/assets/stylesheets/app/settings.scss */
.setting-color > label > .icon-check {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -20px;
  margin-left: -10px;
  text-align: center;
  font-size: 1.33333333em;
  vertical-align: -15%;
  color: #fff;
  opacity: 0;
}

/* line 56, app/assets/stylesheets/app/settings.scss */
.setting-color > label > input[type="radio"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* line 60, app/assets/stylesheets/app/settings.scss */
.setting-color > label > input[type="radio"]:checked + .icon-check {
  opacity: 1 !important;
}

/* Documentation */
/* line 98, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper {
  display: block;
  margin: -15px;
}

@media only screen and (min-width: 768px) {
  /* line 98, app/assets/stylesheets/app/docs.scss */
  .flatdoc-wrapper {
    margin: -20px;
  }
}

/* line 105, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  /* line 105, app/assets/stylesheets/app/docs.scss */
  .flatdoc-wrapper .flatdoc {
    display: table;
    table-layout: fixed;
    border-spacing: 0;
  }
}

/* line 115, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu {
  border-right: 1px solid #e1e2e3;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  /* line 115, app/assets/stylesheets/app/docs.scss */
  .flatdoc-wrapper .flatdoc-menu {
    position: relative;
    display: table-cell;
    height: 100%;
    vertical-align: top;
    width: 180px;
  }
  /* line 122, app/assets/stylesheets/app/docs.scss */
  .flatdoc-wrapper .flatdoc-menu > ul {
    padding-top: 20px;
  }
}

/* line 131, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 20, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul.level-1 > li > a {
  padding-top: 25px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e1e2e3;
  pointer-events: none;
}

/* line 30, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul.level-2 > li + li > a, .flatdoc-wrapper .flatdoc-menu ul.level-2 > li:first-child > a {
  background-color: rgba(255, 255, 255, 0.75);
}

/* line 35, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a {
  position: relative;
  display: block;
  padding: 10px;
  padding-right: 30px;
}

/* line 42, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a, .flatdoc-wrapper .flatdoc-menu ul a:visited {
  color: #3a3f51;
}

/* line 45, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a:hover {
  color: #2e3241;
  background-color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

/* line 51, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.level-1 {
  font-family: montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: bold;
}

/* line 56, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.level-1, .flatdoc-wrapper .flatdoc-menu ul a.level-1:visited {
  color: #3a3f51;
}

/* line 59, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.level-1:hover {
  color: #3a3f51;
}

/* line 63, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.level-2 {
  font-weight: 600;
}

/* line 67, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.level-3 {
  font-weight: normal;
  font-size: 0.9em;
  padding-left: 15px;
}

/* line 73, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.active {
  font-weight: bold !important;
}

/* line 74, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.active, .flatdoc-wrapper .flatdoc-menu ul a.active:visited, .flatdoc-wrapper .flatdoc-menu ul a.active:hover {
  color: #505050 !important;
}

/* line 80, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-menu ul a.active:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 15px;
  width: 9px;
  height: 3px;
  border-radius: 2px;
  background: #3a3f51;
}

/* line 139, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 1px;
  padding-bottom: 50px;
  background-color: #fff;
}

@media only screen and (min-width: 768px) {
  /* line 139, app/assets/stylesheets/app/docs.scss */
  .flatdoc-wrapper .flatdoc-content {
    display: table-cell;
    height: 100%;
    vertical-align: top;
  }
}

/* line 152, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content pre {
  background-color: #f3f6fb;
  border: 1px solid #b7dde8;
}

/* line 155, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content pre code {
  display: inline-block;
  white-space: pre;
}

/* line 158, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content pre code .string, .flatdoc-wrapper .flatdoc-content pre code .number {
  color: #2b957a;
}

/* line 161, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content pre code .init {
  color: #2b957a;
}

/* line 164, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content pre code .keyword {
  color: #3a3f51;
  font-weight: bold;
}

/* line 168, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content pre code .comment {
  color: #909FA7;
}

/* line 174, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content > h1 {
  padding: 11px 0;
  margin: 0;
  line-height: 1;
}

/* line 180, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .flatdoc-content > h2, .flatdoc-wrapper .flatdoc-content > h3 {
  padding: 20px;
  border-top: 1px solid #f1f2f3;
  margin: 0 -20px;
}

/* line 187, app/assets/stylesheets/app/docs.scss */
.flatdoc-wrapper .button {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  background-color: #3d45c0;
  border-color: #3d45c0;
}

/* line 11, app/assets/stylesheets/app/../bootstrap/bootstrap/mixins/_buttons.scss */
.flatdoc-wrapper .button:focus, .flatdoc-wrapper .button.focus {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 17, app/assets/stylesheets/app/../bootstrap/bootstrap/mixins/_buttons.scss */
.flatdoc-wrapper .button:hover {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 22, app/assets/stylesheets/app/../bootstrap/bootstrap/mixins/_buttons.scss */
.flatdoc-wrapper .button:active, .flatdoc-wrapper .button.active, .open > .flatdoc-wrapper .button.dropdown-toggle {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 29, app/assets/stylesheets/app/../bootstrap/bootstrap/mixins/_buttons.scss */
.flatdoc-wrapper .button:active:hover, .flatdoc-wrapper .button:active:focus, .flatdoc-wrapper .button.focus:active, .flatdoc-wrapper .button.active:hover, .flatdoc-wrapper .button.active:focus, .flatdoc-wrapper .button.active.focus, .open > .flatdoc-wrapper .button.dropdown-toggle:hover, .open > .flatdoc-wrapper .button.dropdown-toggle:focus, .open > .flatdoc-wrapper .button.dropdown-toggle.focus {
  color: #fff;
  background-color: #383fb1;
  border-color: #333aa1;
}

/* line 37, app/assets/stylesheets/app/../bootstrap/bootstrap/mixins/_buttons.scss */
.flatdoc-wrapper .button:active, .flatdoc-wrapper .button.active, .open > .flatdoc-wrapper .button.dropdown-toggle {
  background-image: none;
}

/* line 45, app/assets/stylesheets/app/../bootstrap/bootstrap/mixins/_buttons.scss */
.flatdoc-wrapper .button.disabled:hover, .flatdoc-wrapper .button.disabled:focus, .flatdoc-wrapper .button.disabled.focus, .flatdoc-wrapper .button[disabled]:hover, .flatdoc-wrapper .button[disabled]:focus, .flatdoc-wrapper .button.focus[disabled], fieldset[disabled] .flatdoc-wrapper .button:hover, fieldset[disabled] .flatdoc-wrapper .button:focus, fieldset[disabled] .flatdoc-wrapper .button.focus {
  background-color: #3d45c0;
  border-color: #3d45c0;
}

/* line 53, app/assets/stylesheets/app/../bootstrap/bootstrap/mixins/_buttons.scss */
.flatdoc-wrapper .button .badge {
  color: #3d45c0;
  background-color: #fff;
}

/* Icon */
@font-face {
  font-family: 'simple-line-icons';
  src: url(/../fonts/Simple-Line-Icons.eot?v=2.4.0);
  src: url(/../fonts/Simple-Line-Icons.eot?v=2.4.0#iefix) format("embedded-opentype"), url(/../fonts/Simple-Line-Icons.woff2?v=2.4.0) format("woff2"), url(/../fonts/Simple-Line-Icons.ttf?v=2.4.0) format("truetype"), url(/../fonts/Simple-Line-Icons.woff?v=2.4.0) format("woff"), url(/../fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons) format("svg");
  font-weight: normal;
  font-style: normal;
}

/*
 Use the following CSS code if you want to have a class per icon.
 Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower:
*/
/* line 12, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-minus,
.icon-close,
.icon-event,
.icon-exclamation,
.icon-organization,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calendar,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pinterest,
.icon-social-github,
.icon-social-google,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox,
.icon-social-vkontakte,
.icon-social-steam {
  font-family: 'simple-line-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 212, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-user:before {
  content: "\e005";
}

/* line 215, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-people:before {
  content: "\e001";
}

/* line 218, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-user-female:before {
  content: "\e000";
}

/* line 221, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-user-follow:before {
  content: "\e002";
}

/* line 224, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-user-following:before {
  content: "\e003";
}

/* line 227, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-user-unfollow:before {
  content: "\e004";
}

/* line 230, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-login:before {
  content: "\e066";
}

/* line 233, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-logout:before {
  content: "\e065";
}

/* line 236, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-emotsmile:before {
  content: "\e021";
}

/* line 239, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-phone:before {
  content: "\e600";
}

/* line 242, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-call-end:before {
  content: "\e048";
}

/* line 245, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-call-in:before {
  content: "\e047";
}

/* line 248, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-call-out:before {
  content: "\e046";
}

/* line 251, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-map:before {
  content: "\e033";
}

/* line 254, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-location-pin:before {
  content: "\e096";
}

/* line 257, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-direction:before {
  content: "\e042";
}

/* line 260, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-directions:before {
  content: "\e041";
}

/* line 263, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-compass:before {
  content: "\e045";
}

/* line 266, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-layers:before {
  content: "\e034";
}

/* line 269, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-menu:before {
  content: "\e601";
}

/* line 272, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-list:before {
  content: "\e067";
}

/* line 275, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-options-vertical:before {
  content: "\e602";
}

/* line 278, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-options:before {
  content: "\e603";
}

/* line 281, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-down:before {
  content: "\e604";
}

/* line 284, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-left:before {
  content: "\e605";
}

/* line 287, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-right:before {
  content: "\e606";
}

/* line 290, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-up:before {
  content: "\e607";
}

/* line 293, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-up-circle:before {
  content: "\e078";
}

/* line 296, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-left-circle:before {
  content: "\e07a";
}

/* line 299, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-right-circle:before {
  content: "\e079";
}

/* line 302, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-arrow-down-circle:before {
  content: "\e07b";
}

/* line 305, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-check:before {
  content: "\e080";
}

/* line 308, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-clock:before {
  content: "\e081";
}

/* line 311, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-plus:before {
  content: "\e095";
}

/* line 314, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-minus:before {
  content: "\e615";
}

/* line 317, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-close:before {
  content: "\e082";
}

/* line 320, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-event:before {
  content: "\e619";
}

/* line 323, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-exclamation:before {
  content: "\e617";
}

/* line 326, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-organization:before {
  content: "\e616";
}

/* line 329, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-trophy:before {
  content: "\e006";
}

/* line 332, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-screen-smartphone:before {
  content: "\e010";
}

/* line 335, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-screen-desktop:before {
  content: "\e011";
}

/* line 338, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-plane:before {
  content: "\e012";
}

/* line 341, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-notebook:before {
  content: "\e013";
}

/* line 344, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-mustache:before {
  content: "\e014";
}

/* line 347, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-mouse:before {
  content: "\e015";
}

/* line 350, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-magnet:before {
  content: "\e016";
}

/* line 353, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-energy:before {
  content: "\e020";
}

/* line 356, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-disc:before {
  content: "\e022";
}

/* line 359, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-cursor:before {
  content: "\e06e";
}

/* line 362, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-cursor-move:before {
  content: "\e023";
}

/* line 365, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-crop:before {
  content: "\e024";
}

/* line 368, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-chemistry:before {
  content: "\e026";
}

/* line 371, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-speedometer:before {
  content: "\e007";
}

/* line 374, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-shield:before {
  content: "\e00e";
}

/* line 377, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-screen-tablet:before {
  content: "\e00f";
}

/* line 380, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-magic-wand:before {
  content: "\e017";
}

/* line 383, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-hourglass:before {
  content: "\e018";
}

/* line 386, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-graduation:before {
  content: "\e019";
}

/* line 389, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-ghost:before {
  content: "\e01a";
}

/* line 392, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-game-controller:before {
  content: "\e01b";
}

/* line 395, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-fire:before {
  content: "\e01c";
}

/* line 398, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-eyeglass:before {
  content: "\e01d";
}

/* line 401, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-envelope-open:before {
  content: "\e01e";
}

/* line 404, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-envelope-letter:before {
  content: "\e01f";
}

/* line 407, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-bell:before {
  content: "\e027";
}

/* line 410, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-badge:before {
  content: "\e028";
}

/* line 413, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-anchor:before {
  content: "\e029";
}

/* line 416, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-wallet:before {
  content: "\e02a";
}

/* line 419, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-vector:before {
  content: "\e02b";
}

/* line 422, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-speech:before {
  content: "\e02c";
}

/* line 425, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-puzzle:before {
  content: "\e02d";
}

/* line 428, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-printer:before {
  content: "\e02e";
}

/* line 431, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-present:before {
  content: "\e02f";
}

/* line 434, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-playlist:before {
  content: "\e030";
}

/* line 437, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-pin:before {
  content: "\e031";
}

/* line 440, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-picture:before {
  content: "\e032";
}

/* line 443, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-handbag:before {
  content: "\e035";
}

/* line 446, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-globe-alt:before {
  content: "\e036";
}

/* line 449, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-globe:before {
  content: "\e037";
}

/* line 452, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-folder-alt:before {
  content: "\e039";
}

/* line 455, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-folder:before {
  content: "\e089";
}

/* line 458, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-film:before {
  content: "\e03a";
}

/* line 461, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-feed:before {
  content: "\e03b";
}

/* line 464, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-drop:before {
  content: "\e03e";
}

/* line 467, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-drawer:before {
  content: "\e03f";
}

/* line 470, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-docs:before {
  content: "\e040";
}

/* line 473, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-doc:before {
  content: "\e085";
}

/* line 476, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-diamond:before {
  content: "\e043";
}

/* line 479, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-cup:before {
  content: "\e044";
}

/* line 482, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-calculator:before {
  content: "\e049";
}

/* line 485, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-bubbles:before {
  content: "\e04a";
}

/* line 488, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-briefcase:before {
  content: "\e04b";
}

/* line 491, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-book-open:before {
  content: "\e04c";
}

/* line 494, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-basket-loaded:before {
  content: "\e04d";
}

/* line 497, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-basket:before {
  content: "\e04e";
}

/* line 500, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-bag:before {
  content: "\e04f";
}

/* line 503, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-action-undo:before {
  content: "\e050";
}

/* line 506, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-action-redo:before {
  content: "\e051";
}

/* line 509, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-wrench:before {
  content: "\e052";
}

/* line 512, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-umbrella:before {
  content: "\e053";
}

/* line 515, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-trash:before {
  content: "\e054";
}

/* line 518, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-tag:before {
  content: "\e055";
}

/* line 521, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-support:before {
  content: "\e056";
}

/* line 524, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-frame:before {
  content: "\e038";
}

/* line 527, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-size-fullscreen:before {
  content: "\e057";
}

/* line 530, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-size-actual:before {
  content: "\e058";
}

/* line 533, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-shuffle:before {
  content: "\e059";
}

/* line 536, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-share-alt:before {
  content: "\e05a";
}

/* line 539, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-share:before {
  content: "\e05b";
}

/* line 542, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-rocket:before {
  content: "\e05c";
}

/* line 545, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-question:before {
  content: "\e05d";
}

/* line 548, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-pie-chart:before {
  content: "\e05e";
}

/* line 551, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-pencil:before {
  content: "\e05f";
}

/* line 554, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-note:before {
  content: "\e060";
}

/* line 557, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-loop:before {
  content: "\e064";
}

/* line 560, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-home:before {
  content: "\e069";
}

/* line 563, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-grid:before {
  content: "\e06a";
}

/* line 566, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-graph:before {
  content: "\e06b";
}

/* line 569, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-microphone:before {
  content: "\e063";
}

/* line 572, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-music-tone-alt:before {
  content: "\e061";
}

/* line 575, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-music-tone:before {
  content: "\e062";
}

/* line 578, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-earphones-alt:before {
  content: "\e03c";
}

/* line 581, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-earphones:before {
  content: "\e03d";
}

/* line 584, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-equalizer:before {
  content: "\e06c";
}

/* line 587, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-like:before {
  content: "\e068";
}

/* line 590, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-dislike:before {
  content: "\e06d";
}

/* line 593, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-control-start:before {
  content: "\e06f";
}

/* line 596, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-control-rewind:before {
  content: "\e070";
}

/* line 599, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-control-play:before {
  content: "\e071";
}

/* line 602, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-control-pause:before {
  content: "\e072";
}

/* line 605, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-control-forward:before {
  content: "\e073";
}

/* line 608, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-control-end:before {
  content: "\e074";
}

/* line 611, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-volume-1:before {
  content: "\e09f";
}

/* line 614, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-volume-2:before {
  content: "\e0a0";
}

/* line 617, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-volume-off:before {
  content: "\e0a1";
}

/* line 620, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-calendar:before {
  content: "\e075";
}

/* line 623, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-bulb:before {
  content: "\e076";
}

/* line 626, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-chart:before {
  content: "\e077";
}

/* line 629, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-ban:before {
  content: "\e07c";
}

/* line 632, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-bubble:before {
  content: "\e07d";
}

/* line 635, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-camrecorder:before {
  content: "\e07e";
}

/* line 638, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-camera:before {
  content: "\e07f";
}

/* line 641, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-cloud-download:before {
  content: "\e083";
}

/* line 644, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-cloud-upload:before {
  content: "\e084";
}

/* line 647, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-envelope:before {
  content: "\e086";
}

/* line 650, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-eye:before {
  content: "\e087";
}

/* line 653, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-flag:before {
  content: "\e088";
}

/* line 656, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-heart:before {
  content: "\e08a";
}

/* line 659, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-info:before {
  content: "\e08b";
}

/* line 662, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-key:before {
  content: "\e08c";
}

/* line 665, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-link:before {
  content: "\e08d";
}

/* line 668, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-lock:before {
  content: "\e08e";
}

/* line 671, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-lock-open:before {
  content: "\e08f";
}

/* line 674, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-magnifier:before {
  content: "\e090";
}

/* line 677, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-magnifier-add:before {
  content: "\e091";
}

/* line 680, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-magnifier-remove:before {
  content: "\e092";
}

/* line 683, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-paper-clip:before {
  content: "\e093";
}

/* line 686, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-paper-plane:before {
  content: "\e094";
}

/* line 689, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-power:before {
  content: "\e097";
}

/* line 692, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-refresh:before {
  content: "\e098";
}

/* line 695, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-reload:before {
  content: "\e099";
}

/* line 698, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-settings:before {
  content: "\e09a";
}

/* line 701, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-star:before {
  content: "\e09b";
}

/* line 704, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-symbol-female:before {
  content: "\e09c";
}

/* line 707, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-symbol-male:before {
  content: "\e09d";
}

/* line 710, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-target:before {
  content: "\e09e";
}

/* line 713, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-credit-card:before {
  content: "\e025";
}

/* line 716, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-paypal:before {
  content: "\e608";
}

/* line 719, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-tumblr:before {
  content: "\e00a";
}

/* line 722, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-twitter:before {
  content: "\e009";
}

/* line 725, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-facebook:before {
  content: "\e00b";
}

/* line 728, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-instagram:before {
  content: "\e609";
}

/* line 731, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-linkedin:before {
  content: "\e60a";
}

/* line 734, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-pinterest:before {
  content: "\e60b";
}

/* line 737, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-github:before {
  content: "\e60c";
}

/* line 740, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-google:before {
  content: "\e60d";
}

/* line 743, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-reddit:before {
  content: "\e60e";
}

/* line 746, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-skype:before {
  content: "\e60f";
}

/* line 749, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-dribbble:before {
  content: "\e00d";
}

/* line 752, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-behance:before {
  content: "\e610";
}

/* line 755, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-foursqare:before {
  content: "\e611";
}

/* line 758, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-soundcloud:before {
  content: "\e612";
}

/* line 761, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-spotify:before {
  content: "\e613";
}

/* line 764, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-stumbleupon:before {
  content: "\e614";
}

/* line 767, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-youtube:before {
  content: "\e008";
}

/* line 770, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-dropbox:before {
  content: "\e00c";
}

/* line 773, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-vkontakte:before {
  content: "\e618";
}

/* line 776, app/assets/stylesheets/simple-line-icons/css/simple-line-icons.css */
.icon-social-steam:before {
  content: "\e620";
}

/* @FONT-FACE loads font into browser */
@font-face {
  font-family: 'typicons';
  font-weight: normal;
  font-style: normal;
  src: url(/typicons.eot);
  src: url(/typicons.eot?#iefix) format("embedded-opentype"), url(/typicons.woff) format("woff"), url(/typicons.ttf) format("truetype"), url(/typicons.svg#typicons) format("svg");
}

/* :before psuedo-selector inserts and styles icon */
/* line 16, app/assets/stylesheets/fonts/typicons.css */
.typcn:before {
  font-family: 'typicons';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  height: 1em;
  font-size: 1em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Code for individual icons */
/* line 33, app/assets/stylesheets/fonts/typicons.css */
.typcn-adjust-brightness:before {
  content: '\e000';
  /* '' */
}

/* line 36, app/assets/stylesheets/fonts/typicons.css */
.typcn-adjust-contrast:before {
  content: '\e001';
  /* '' */
}

/* line 39, app/assets/stylesheets/fonts/typicons.css */
.typcn-anchor-outline:before {
  content: '\e002';
  /* '' */
}

/* line 42, app/assets/stylesheets/fonts/typicons.css */
.typcn-anchor:before {
  content: '\e003';
  /* '' */
}

/* line 45, app/assets/stylesheets/fonts/typicons.css */
.typcn-archive:before {
  content: '\e004';
  /* '' */
}

/* line 48, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-back-outline:before {
  content: '\e005';
  /* '' */
}

/* line 51, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-back:before {
  content: '\e006';
  /* '' */
}

/* line 54, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-down-outline:before {
  content: '\e007';
  /* '' */
}

/* line 57, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-down-thick:before {
  content: '\e008';
  /* '' */
}

/* line 60, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-down:before {
  content: '\e009';
  /* '' */
}

/* line 63, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-forward-outline:before {
  content: '\e00a';
  /* '' */
}

/* line 66, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-forward:before {
  content: '\e00b';
  /* '' */
}

/* line 69, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-left-outline:before {
  content: '\e00c';
  /* '' */
}

/* line 72, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-left-thick:before {
  content: '\e00d';
  /* '' */
}

/* line 75, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-left:before {
  content: '\e00e';
  /* '' */
}

/* line 78, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-loop-outline:before {
  content: '\e00f';
  /* '' */
}

/* line 81, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-loop:before {
  content: '\e010';
  /* '' */
}

/* line 84, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-maximise-outline:before {
  content: '\e011';
  /* '' */
}

/* line 87, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-maximise:before {
  content: '\e012';
  /* '' */
}

/* line 90, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-minimise-outline:before {
  content: '\e013';
  /* '' */
}

/* line 93, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-minimise:before {
  content: '\e014';
  /* '' */
}

/* line 96, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-move-outline:before {
  content: '\e015';
  /* '' */
}

/* line 99, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-move:before {
  content: '\e016';
  /* '' */
}

/* line 102, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-repeat-outline:before {
  content: '\e017';
  /* '' */
}

/* line 105, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-repeat:before {
  content: '\e018';
  /* '' */
}

/* line 108, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-right-outline:before {
  content: '\e019';
  /* '' */
}

/* line 111, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-right-thick:before {
  content: '\e01a';
  /* '' */
}

/* line 114, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-right:before {
  content: '\e01b';
  /* '' */
}

/* line 117, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-shuffle:before {
  content: '\e01c';
  /* '' */
}

/* line 120, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-sorted-down:before {
  content: '\e01d';
  /* '' */
}

/* line 123, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-sorted-up:before {
  content: '\e01e';
  /* '' */
}

/* line 126, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-sync-outline:before {
  content: '\e01f';
  /* '' */
}

/* line 129, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-sync:before {
  content: '\e020';
  /* '' */
}

/* line 132, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-unsorted:before {
  content: '\e021';
  /* '' */
}

/* line 135, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-up-outline:before {
  content: '\e022';
  /* '' */
}

/* line 138, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-up-thick:before {
  content: '\e023';
  /* '' */
}

/* line 141, app/assets/stylesheets/fonts/typicons.css */
.typcn-arrow-up:before {
  content: '\e024';
  /* '' */
}

/* line 144, app/assets/stylesheets/fonts/typicons.css */
.typcn-at:before {
  content: '\e025';
  /* '' */
}

/* line 147, app/assets/stylesheets/fonts/typicons.css */
.typcn-attachment-outline:before {
  content: '\e026';
  /* '' */
}

/* line 150, app/assets/stylesheets/fonts/typicons.css */
.typcn-attachment:before {
  content: '\e027';
  /* '' */
}

/* line 153, app/assets/stylesheets/fonts/typicons.css */
.typcn-backspace-outline:before {
  content: '\e028';
  /* '' */
}

/* line 156, app/assets/stylesheets/fonts/typicons.css */
.typcn-backspace:before {
  content: '\e029';
  /* '' */
}

/* line 159, app/assets/stylesheets/fonts/typicons.css */
.typcn-battery-charge:before {
  content: '\e02a';
  /* '' */
}

/* line 162, app/assets/stylesheets/fonts/typicons.css */
.typcn-battery-full:before {
  content: '\e02b';
  /* '' */
}

/* line 165, app/assets/stylesheets/fonts/typicons.css */
.typcn-battery-high:before {
  content: '\e02c';
  /* '' */
}

/* line 168, app/assets/stylesheets/fonts/typicons.css */
.typcn-battery-low:before {
  content: '\e02d';
  /* '' */
}

/* line 171, app/assets/stylesheets/fonts/typicons.css */
.typcn-battery-mid:before {
  content: '\e02e';
  /* '' */
}

/* line 174, app/assets/stylesheets/fonts/typicons.css */
.typcn-beaker:before {
  content: '\e02f';
  /* '' */
}

/* line 177, app/assets/stylesheets/fonts/typicons.css */
.typcn-beer:before {
  content: '\e030';
  /* '' */
}

/* line 180, app/assets/stylesheets/fonts/typicons.css */
.typcn-bell:before {
  content: '\e031';
  /* '' */
}

/* line 183, app/assets/stylesheets/fonts/typicons.css */
.typcn-book:before {
  content: '\e032';
  /* '' */
}

/* line 186, app/assets/stylesheets/fonts/typicons.css */
.typcn-bookmark:before {
  content: '\e033';
  /* '' */
}

/* line 189, app/assets/stylesheets/fonts/typicons.css */
.typcn-briefcase:before {
  content: '\e034';
  /* '' */
}

/* line 192, app/assets/stylesheets/fonts/typicons.css */
.typcn-brush:before {
  content: '\e035';
  /* '' */
}

/* line 195, app/assets/stylesheets/fonts/typicons.css */
.typcn-business-card:before {
  content: '\e036';
  /* '' */
}

/* line 198, app/assets/stylesheets/fonts/typicons.css */
.typcn-calculator:before {
  content: '\e037';
  /* '' */
}

/* line 201, app/assets/stylesheets/fonts/typicons.css */
.typcn-calendar-outline:before {
  content: '\e038';
  /* '' */
}

/* line 204, app/assets/stylesheets/fonts/typicons.css */
.typcn-calendar:before {
  content: '\e039';
  /* '' */
}

/* line 207, app/assets/stylesheets/fonts/typicons.css */
.typcn-camera-outline:before {
  content: '\e03a';
  /* '' */
}

/* line 210, app/assets/stylesheets/fonts/typicons.css */
.typcn-camera:before {
  content: '\e03b';
  /* '' */
}

/* line 213, app/assets/stylesheets/fonts/typicons.css */
.typcn-cancel-outline:before {
  content: '\e03c';
  /* '' */
}

/* line 216, app/assets/stylesheets/fonts/typicons.css */
.typcn-cancel:before {
  content: '\e03d';
  /* '' */
}

/* line 219, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-area-outline:before {
  content: '\e03e';
  /* '' */
}

/* line 222, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-area:before {
  content: '\e03f';
  /* '' */
}

/* line 225, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-bar-outline:before {
  content: '\e040';
  /* '' */
}

/* line 228, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-bar:before {
  content: '\e041';
  /* '' */
}

/* line 231, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-line-outline:before {
  content: '\e042';
  /* '' */
}

/* line 234, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-line:before {
  content: '\e043';
  /* '' */
}

/* line 237, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-pie-outline:before {
  content: '\e044';
  /* '' */
}

/* line 240, app/assets/stylesheets/fonts/typicons.css */
.typcn-chart-pie:before {
  content: '\e045';
  /* '' */
}

/* line 243, app/assets/stylesheets/fonts/typicons.css */
.typcn-chevron-left-outline:before {
  content: '\e046';
  /* '' */
}

/* line 246, app/assets/stylesheets/fonts/typicons.css */
.typcn-chevron-left:before {
  content: '\e047';
  /* '' */
}

/* line 249, app/assets/stylesheets/fonts/typicons.css */
.typcn-chevron-right-outline:before {
  content: '\e048';
  /* '' */
}

/* line 252, app/assets/stylesheets/fonts/typicons.css */
.typcn-chevron-right:before {
  content: '\e049';
  /* '' */
}

/* line 255, app/assets/stylesheets/fonts/typicons.css */
.typcn-clipboard:before {
  content: '\e04a';
  /* '' */
}

/* line 258, app/assets/stylesheets/fonts/typicons.css */
.typcn-cloud-storage:before {
  content: '\e04b';
  /* '' */
}

/* line 261, app/assets/stylesheets/fonts/typicons.css */
.typcn-cloud-storage-outline:before {
  content: '\e054';
  /* '' */
}

/* line 264, app/assets/stylesheets/fonts/typicons.css */
.typcn-code-outline:before {
  content: '\e04c';
  /* '' */
}

/* line 267, app/assets/stylesheets/fonts/typicons.css */
.typcn-code:before {
  content: '\e04d';
  /* '' */
}

/* line 270, app/assets/stylesheets/fonts/typicons.css */
.typcn-coffee:before {
  content: '\e04e';
  /* '' */
}

/* line 273, app/assets/stylesheets/fonts/typicons.css */
.typcn-cog-outline:before {
  content: '\e04f';
  /* '' */
}

/* line 276, app/assets/stylesheets/fonts/typicons.css */
.typcn-cog:before {
  content: '\e050';
  /* '' */
}

/* line 279, app/assets/stylesheets/fonts/typicons.css */
.typcn-compass:before {
  content: '\e051';
  /* '' */
}

/* line 282, app/assets/stylesheets/fonts/typicons.css */
.typcn-contacts:before {
  content: '\e052';
  /* '' */
}

/* line 285, app/assets/stylesheets/fonts/typicons.css */
.typcn-credit-card:before {
  content: '\e053';
  /* '' */
}

/* line 288, app/assets/stylesheets/fonts/typicons.css */
.typcn-css3:before {
  content: '\e055';
  /* '' */
}

/* line 291, app/assets/stylesheets/fonts/typicons.css */
.typcn-database:before {
  content: '\e056';
  /* '' */
}

/* line 294, app/assets/stylesheets/fonts/typicons.css */
.typcn-delete-outline:before {
  content: '\e057';
  /* '' */
}

/* line 297, app/assets/stylesheets/fonts/typicons.css */
.typcn-delete:before {
  content: '\e058';
  /* '' */
}

/* line 300, app/assets/stylesheets/fonts/typicons.css */
.typcn-device-desktop:before {
  content: '\e059';
  /* '' */
}

/* line 303, app/assets/stylesheets/fonts/typicons.css */
.typcn-device-laptop:before {
  content: '\e05a';
  /* '' */
}

/* line 306, app/assets/stylesheets/fonts/typicons.css */
.typcn-device-phone:before {
  content: '\e05b';
  /* '' */
}

/* line 309, app/assets/stylesheets/fonts/typicons.css */
.typcn-device-tablet:before {
  content: '\e05c';
  /* '' */
}

/* line 312, app/assets/stylesheets/fonts/typicons.css */
.typcn-directions:before {
  content: '\e05d';
  /* '' */
}

/* line 315, app/assets/stylesheets/fonts/typicons.css */
.typcn-divide-outline:before {
  content: '\e05e';
  /* '' */
}

/* line 318, app/assets/stylesheets/fonts/typicons.css */
.typcn-divide:before {
  content: '\e05f';
  /* '' */
}

/* line 321, app/assets/stylesheets/fonts/typicons.css */
.typcn-document-add:before {
  content: '\e060';
  /* '' */
}

/* line 324, app/assets/stylesheets/fonts/typicons.css */
.typcn-document-delete:before {
  content: '\e061';
  /* '' */
}

/* line 327, app/assets/stylesheets/fonts/typicons.css */
.typcn-document-text:before {
  content: '\e062';
  /* '' */
}

/* line 330, app/assets/stylesheets/fonts/typicons.css */
.typcn-document:before {
  content: '\e063';
  /* '' */
}

/* line 333, app/assets/stylesheets/fonts/typicons.css */
.typcn-download-outline:before {
  content: '\e064';
  /* '' */
}

/* line 336, app/assets/stylesheets/fonts/typicons.css */
.typcn-download:before {
  content: '\e065';
  /* '' */
}

/* line 339, app/assets/stylesheets/fonts/typicons.css */
.typcn-dropbox:before {
  content: '\e066';
  /* '' */
}

/* line 342, app/assets/stylesheets/fonts/typicons.css */
.typcn-edit:before {
  content: '\e067';
  /* '' */
}

/* line 345, app/assets/stylesheets/fonts/typicons.css */
.typcn-eject-outline:before {
  content: '\e068';
  /* '' */
}

/* line 348, app/assets/stylesheets/fonts/typicons.css */
.typcn-eject:before {
  content: '\e069';
  /* '' */
}

/* line 351, app/assets/stylesheets/fonts/typicons.css */
.typcn-equals-outline:before {
  content: '\e06a';
  /* '' */
}

/* line 354, app/assets/stylesheets/fonts/typicons.css */
.typcn-equals:before {
  content: '\e06b';
  /* '' */
}

/* line 357, app/assets/stylesheets/fonts/typicons.css */
.typcn-export-outline:before {
  content: '\e06c';
  /* '' */
}

/* line 360, app/assets/stylesheets/fonts/typicons.css */
.typcn-export:before {
  content: '\e06d';
  /* '' */
}

/* line 363, app/assets/stylesheets/fonts/typicons.css */
.typcn-eye-outline:before {
  content: '\e06e';
  /* '' */
}

/* line 366, app/assets/stylesheets/fonts/typicons.css */
.typcn-eye:before {
  content: '\e06f';
  /* '' */
}

/* line 369, app/assets/stylesheets/fonts/typicons.css */
.typcn-feather:before {
  content: '\e070';
  /* '' */
}

/* line 372, app/assets/stylesheets/fonts/typicons.css */
.typcn-film:before {
  content: '\e071';
  /* '' */
}

/* line 375, app/assets/stylesheets/fonts/typicons.css */
.typcn-filter:before {
  content: '\e072';
  /* '' */
}

/* line 378, app/assets/stylesheets/fonts/typicons.css */
.typcn-flag-outline:before {
  content: '\e073';
  /* '' */
}

/* line 381, app/assets/stylesheets/fonts/typicons.css */
.typcn-flag:before {
  content: '\e074';
  /* '' */
}

/* line 384, app/assets/stylesheets/fonts/typicons.css */
.typcn-flash-outline:before {
  content: '\e075';
  /* '' */
}

/* line 387, app/assets/stylesheets/fonts/typicons.css */
.typcn-flash:before {
  content: '\e076';
  /* '' */
}

/* line 390, app/assets/stylesheets/fonts/typicons.css */
.typcn-flow-children:before {
  content: '\e077';
  /* '' */
}

/* line 393, app/assets/stylesheets/fonts/typicons.css */
.typcn-flow-merge:before {
  content: '\e078';
  /* '' */
}

/* line 396, app/assets/stylesheets/fonts/typicons.css */
.typcn-flow-parallel:before {
  content: '\e079';
  /* '' */
}

/* line 399, app/assets/stylesheets/fonts/typicons.css */
.typcn-flow-switch:before {
  content: '\e07a';
  /* '' */
}

/* line 402, app/assets/stylesheets/fonts/typicons.css */
.typcn-folder-add:before {
  content: '\e07b';
  /* '' */
}

/* line 405, app/assets/stylesheets/fonts/typicons.css */
.typcn-folder-delete:before {
  content: '\e07c';
  /* '' */
}

/* line 408, app/assets/stylesheets/fonts/typicons.css */
.typcn-folder-open:before {
  content: '\e07d';
  /* '' */
}

/* line 411, app/assets/stylesheets/fonts/typicons.css */
.typcn-folder:before {
  content: '\e07e';
  /* '' */
}

/* line 414, app/assets/stylesheets/fonts/typicons.css */
.typcn-gift:before {
  content: '\e07f';
  /* '' */
}

/* line 417, app/assets/stylesheets/fonts/typicons.css */
.typcn-globe-outline:before {
  content: '\e080';
  /* '' */
}

/* line 420, app/assets/stylesheets/fonts/typicons.css */
.typcn-globe:before {
  content: '\e081';
  /* '' */
}

/* line 423, app/assets/stylesheets/fonts/typicons.css */
.typcn-group-outline:before {
  content: '\e082';
  /* '' */
}

/* line 426, app/assets/stylesheets/fonts/typicons.css */
.typcn-group:before {
  content: '\e083';
  /* '' */
}

/* line 429, app/assets/stylesheets/fonts/typicons.css */
.typcn-headphones:before {
  content: '\e084';
  /* '' */
}

/* line 432, app/assets/stylesheets/fonts/typicons.css */
.typcn-heart-full-outline:before {
  content: '\e085';
  /* '' */
}

/* line 435, app/assets/stylesheets/fonts/typicons.css */
.typcn-heart-half-outline:before {
  content: '\e086';
  /* '' */
}

/* line 438, app/assets/stylesheets/fonts/typicons.css */
.typcn-heart-outline:before {
  content: '\e087';
  /* '' */
}

/* line 441, app/assets/stylesheets/fonts/typicons.css */
.typcn-heart:before {
  content: '\e088';
  /* '' */
}

/* line 444, app/assets/stylesheets/fonts/typicons.css */
.typcn-home-outline:before {
  content: '\e089';
  /* '' */
}

/* line 447, app/assets/stylesheets/fonts/typicons.css */
.typcn-home:before {
  content: '\e08a';
  /* '' */
}

/* line 450, app/assets/stylesheets/fonts/typicons.css */
.typcn-html5:before {
  content: '\e08b';
  /* '' */
}

/* line 453, app/assets/stylesheets/fonts/typicons.css */
.typcn-image-outline:before {
  content: '\e08c';
  /* '' */
}

/* line 456, app/assets/stylesheets/fonts/typicons.css */
.typcn-image:before {
  content: '\e08d';
  /* '' */
}

/* line 459, app/assets/stylesheets/fonts/typicons.css */
.typcn-infinity-outline:before {
  content: '\e08e';
  /* '' */
}

/* line 462, app/assets/stylesheets/fonts/typicons.css */
.typcn-infinity:before {
  content: '\e08f';
  /* '' */
}

/* line 465, app/assets/stylesheets/fonts/typicons.css */
.typcn-info-large-outline:before {
  content: '\e090';
  /* '' */
}

/* line 468, app/assets/stylesheets/fonts/typicons.css */
.typcn-info-large:before {
  content: '\e091';
  /* '' */
}

/* line 471, app/assets/stylesheets/fonts/typicons.css */
.typcn-info-outline:before {
  content: '\e092';
  /* '' */
}

/* line 474, app/assets/stylesheets/fonts/typicons.css */
.typcn-info:before {
  content: '\e093';
  /* '' */
}

/* line 477, app/assets/stylesheets/fonts/typicons.css */
.typcn-input-checked-outline:before {
  content: '\e094';
  /* '' */
}

/* line 480, app/assets/stylesheets/fonts/typicons.css */
.typcn-input-checked:before {
  content: '\e095';
  /* '' */
}

/* line 483, app/assets/stylesheets/fonts/typicons.css */
.typcn-key-outline:before {
  content: '\e096';
  /* '' */
}

/* line 486, app/assets/stylesheets/fonts/typicons.css */
.typcn-key:before {
  content: '\e097';
  /* '' */
}

/* line 489, app/assets/stylesheets/fonts/typicons.css */
.typcn-keyboard:before {
  content: '\e098';
  /* '' */
}

/* line 492, app/assets/stylesheets/fonts/typicons.css */
.typcn-leaf:before {
  content: '\e099';
  /* '' */
}

/* line 495, app/assets/stylesheets/fonts/typicons.css */
.typcn-lightbulb:before {
  content: '\e09a';
  /* '' */
}

/* line 498, app/assets/stylesheets/fonts/typicons.css */
.typcn-link-outline:before {
  content: '\e09b';
  /* '' */
}

/* line 501, app/assets/stylesheets/fonts/typicons.css */
.typcn-link:before {
  content: '\e09c';
  /* '' */
}

/* line 504, app/assets/stylesheets/fonts/typicons.css */
.typcn-location-arrow-outline:before {
  content: '\e09d';
  /* '' */
}

/* line 507, app/assets/stylesheets/fonts/typicons.css */
.typcn-location-arrow:before {
  content: '\e09e';
  /* '' */
}

/* line 510, app/assets/stylesheets/fonts/typicons.css */
.typcn-location-outline:before {
  content: '\e09f';
  /* '' */
}

/* line 513, app/assets/stylesheets/fonts/typicons.css */
.typcn-location:before {
  content: '\e0a0';
  /* '' */
}

/* line 516, app/assets/stylesheets/fonts/typicons.css */
.typcn-lock-closed-outline:before {
  content: '\e0a1';
  /* '' */
}

/* line 519, app/assets/stylesheets/fonts/typicons.css */
.typcn-lock-closed:before {
  content: '\e0a2';
  /* '' */
}

/* line 522, app/assets/stylesheets/fonts/typicons.css */
.typcn-lock-open-outline:before {
  content: '\e0a3';
  /* '' */
}

/* line 525, app/assets/stylesheets/fonts/typicons.css */
.typcn-lock-open:before {
  content: '\e0a4';
  /* '' */
}

/* line 528, app/assets/stylesheets/fonts/typicons.css */
.typcn-mail:before {
  content: '\e0a5';
  /* '' */
}

/* line 531, app/assets/stylesheets/fonts/typicons.css */
.typcn-map:before {
  content: '\e0a6';
  /* '' */
}

/* line 534, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-eject-outline:before {
  content: '\e0a7';
  /* '' */
}

/* line 537, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-eject:before {
  content: '\e0a8';
  /* '' */
}

/* line 540, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-fast-forward-outline:before {
  content: '\e0a9';
  /* '' */
}

/* line 543, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-fast-forward:before {
  content: '\e0aa';
  /* '' */
}

/* line 546, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-pause-outline:before {
  content: '\e0ab';
  /* '' */
}

/* line 549, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-pause:before {
  content: '\e0ac';
  /* '' */
}

/* line 552, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-play-outline:before {
  content: '\e0ad';
  /* '' */
}

/* line 555, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-play-reverse-outline:before {
  content: '\e0ae';
  /* '' */
}

/* line 558, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-play-reverse:before {
  content: '\e0af';
  /* '' */
}

/* line 561, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-play:before {
  content: '\e0b0';
  /* '' */
}

/* line 564, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-record-outline:before {
  content: '\e0b1';
  /* '' */
}

/* line 567, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-record:before {
  content: '\e0b2';
  /* '' */
}

/* line 570, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-rewind-outline:before {
  content: '\e0b3';
  /* '' */
}

/* line 573, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-rewind:before {
  content: '\e0b4';
  /* '' */
}

/* line 576, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-stop-outline:before {
  content: '\e0b5';
  /* '' */
}

/* line 579, app/assets/stylesheets/fonts/typicons.css */
.typcn-media-stop:before {
  content: '\e0b6';
  /* '' */
}

/* line 582, app/assets/stylesheets/fonts/typicons.css */
.typcn-message-typing:before {
  content: '\e0b7';
  /* '' */
}

/* line 585, app/assets/stylesheets/fonts/typicons.css */
.typcn-message:before {
  content: '\e0b8';
  /* '' */
}

/* line 588, app/assets/stylesheets/fonts/typicons.css */
.typcn-messages:before {
  content: '\e0b9';
  /* '' */
}

/* line 591, app/assets/stylesheets/fonts/typicons.css */
.typcn-microphone-outline:before {
  content: '\e0ba';
  /* '' */
}

/* line 594, app/assets/stylesheets/fonts/typicons.css */
.typcn-microphone:before {
  content: '\e0bb';
  /* '' */
}

/* line 597, app/assets/stylesheets/fonts/typicons.css */
.typcn-minus-outline:before {
  content: '\e0bc';
  /* '' */
}

/* line 600, app/assets/stylesheets/fonts/typicons.css */
.typcn-minus:before {
  content: '\e0bd';
  /* '' */
}

/* line 603, app/assets/stylesheets/fonts/typicons.css */
.typcn-mortar-board:before {
  content: '\e0be';
  /* '' */
}

/* line 606, app/assets/stylesheets/fonts/typicons.css */
.typcn-news:before {
  content: '\e0bf';
  /* '' */
}

/* line 609, app/assets/stylesheets/fonts/typicons.css */
.typcn-notes-outline:before {
  content: '\e0c0';
  /* '' */
}

/* line 612, app/assets/stylesheets/fonts/typicons.css */
.typcn-notes:before {
  content: '\e0c1';
  /* '' */
}

/* line 615, app/assets/stylesheets/fonts/typicons.css */
.typcn-pen:before {
  content: '\e0c2';
  /* '' */
}

/* line 618, app/assets/stylesheets/fonts/typicons.css */
.typcn-pencil:before {
  content: '\e0c3';
  /* '' */
}

/* line 621, app/assets/stylesheets/fonts/typicons.css */
.typcn-phone-outline:before {
  content: '\e0c4';
  /* '' */
}

/* line 624, app/assets/stylesheets/fonts/typicons.css */
.typcn-phone:before {
  content: '\e0c5';
  /* '' */
}

/* line 627, app/assets/stylesheets/fonts/typicons.css */
.typcn-pi-outline:before {
  content: '\e0c6';
  /* '' */
}

/* line 630, app/assets/stylesheets/fonts/typicons.css */
.typcn-pi:before {
  content: '\e0c7';
  /* '' */
}

/* line 633, app/assets/stylesheets/fonts/typicons.css */
.typcn-pin-outline:before {
  content: '\e0c8';
  /* '' */
}

/* line 636, app/assets/stylesheets/fonts/typicons.css */
.typcn-pin:before {
  content: '\e0c9';
  /* '' */
}

/* line 639, app/assets/stylesheets/fonts/typicons.css */
.typcn-pipette:before {
  content: '\e0ca';
  /* '' */
}

/* line 642, app/assets/stylesheets/fonts/typicons.css */
.typcn-plane-outline:before {
  content: '\e0cb';
  /* '' */
}

/* line 645, app/assets/stylesheets/fonts/typicons.css */
.typcn-plane:before {
  content: '\e0cc';
  /* '' */
}

/* line 648, app/assets/stylesheets/fonts/typicons.css */
.typcn-plug:before {
  content: '\e0cd';
  /* '' */
}

/* line 651, app/assets/stylesheets/fonts/typicons.css */
.typcn-plus-outline:before {
  content: '\e0ce';
  /* '' */
}

/* line 654, app/assets/stylesheets/fonts/typicons.css */
.typcn-plus:before {
  content: '\e0cf';
  /* '' */
}

/* line 657, app/assets/stylesheets/fonts/typicons.css */
.typcn-point-of-interest-outline:before {
  content: '\e0d0';
  /* '' */
}

/* line 660, app/assets/stylesheets/fonts/typicons.css */
.typcn-point-of-interest:before {
  content: '\e0d1';
  /* '' */
}

/* line 663, app/assets/stylesheets/fonts/typicons.css */
.typcn-power-outline:before {
  content: '\e0d2';
  /* '' */
}

/* line 666, app/assets/stylesheets/fonts/typicons.css */
.typcn-power:before {
  content: '\e0d3';
  /* '' */
}

/* line 669, app/assets/stylesheets/fonts/typicons.css */
.typcn-printer:before {
  content: '\e0d4';
  /* '' */
}

/* line 672, app/assets/stylesheets/fonts/typicons.css */
.typcn-puzzle-outline:before {
  content: '\e0d5';
  /* '' */
}

/* line 675, app/assets/stylesheets/fonts/typicons.css */
.typcn-puzzle:before {
  content: '\e0d6';
  /* '' */
}

/* line 678, app/assets/stylesheets/fonts/typicons.css */
.typcn-radar-outline:before {
  content: '\e0d7';
  /* '' */
}

/* line 681, app/assets/stylesheets/fonts/typicons.css */
.typcn-radar:before {
  content: '\e0d8';
  /* '' */
}

/* line 684, app/assets/stylesheets/fonts/typicons.css */
.typcn-refresh-outline:before {
  content: '\e0d9';
  /* '' */
}

/* line 687, app/assets/stylesheets/fonts/typicons.css */
.typcn-refresh:before {
  content: '\e0da';
  /* '' */
}

/* line 690, app/assets/stylesheets/fonts/typicons.css */
.typcn-rss-outline:before {
  content: '\e0db';
  /* '' */
}

/* line 693, app/assets/stylesheets/fonts/typicons.css */
.typcn-rss:before {
  content: '\e0dc';
  /* '' */
}

/* line 696, app/assets/stylesheets/fonts/typicons.css */
.typcn-scissors-outline:before {
  content: '\e0dd';
  /* '' */
}

/* line 699, app/assets/stylesheets/fonts/typicons.css */
.typcn-scissors:before {
  content: '\e0de';
  /* '' */
}

/* line 702, app/assets/stylesheets/fonts/typicons.css */
.typcn-shopping-bag:before {
  content: '\e0df';
  /* '' */
}

/* line 705, app/assets/stylesheets/fonts/typicons.css */
.typcn-shopping-cart:before {
  content: '\e0e0';
  /* '' */
}

/* line 708, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-at-circular:before {
  content: '\e0e1';
  /* '' */
}

/* line 711, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-dribbble-circular:before {
  content: '\e0e2';
  /* '' */
}

/* line 714, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-dribbble:before {
  content: '\e0e3';
  /* '' */
}

/* line 717, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-facebook-circular:before {
  content: '\e0e4';
  /* '' */
}

/* line 720, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-facebook:before {
  content: '\e0e5';
  /* '' */
}

/* line 723, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-flickr-circular:before {
  content: '\e0e6';
  /* '' */
}

/* line 726, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-flickr:before {
  content: '\e0e7';
  /* '' */
}

/* line 729, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-github-circular:before {
  content: '\e0e8';
  /* '' */
}

/* line 732, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-github:before {
  content: '\e0e9';
  /* '' */
}

/* line 735, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-google-plus-circular:before {
  content: '\e0ea';
  /* '' */
}

/* line 738, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-google-plus:before {
  content: '\e0eb';
  /* '' */
}

/* line 741, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-instagram-circular:before {
  content: '\e0ec';
  /* '' */
}

/* line 744, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-instagram:before {
  content: '\e0ed';
  /* '' */
}

/* line 747, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-last-fm-circular:before {
  content: '\e0ee';
  /* '' */
}

/* line 750, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-last-fm:before {
  content: '\e0ef';
  /* '' */
}

/* line 753, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-linkedin-circular:before {
  content: '\e0f0';
  /* '' */
}

/* line 756, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-linkedin:before {
  content: '\e0f1';
  /* '' */
}

/* line 759, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-pinterest-circular:before {
  content: '\e0f2';
  /* '' */
}

/* line 762, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-pinterest:before {
  content: '\e0f3';
  /* '' */
}

/* line 765, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-skype-outline:before {
  content: '\e0f4';
  /* '' */
}

/* line 768, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-skype:before {
  content: '\e0f5';
  /* '' */
}

/* line 771, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-tumbler-circular:before {
  content: '\e0f6';
  /* '' */
}

/* line 774, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-tumbler:before {
  content: '\e0f7';
  /* '' */
}

/* line 777, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-twitter-circular:before {
  content: '\e0f8';
  /* '' */
}

/* line 780, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-twitter:before {
  content: '\e0f9';
  /* '' */
}

/* line 783, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-vimeo-circular:before {
  content: '\e0fa';
  /* '' */
}

/* line 786, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-vimeo:before {
  content: '\e0fb';
  /* '' */
}

/* line 789, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-youtube-circular:before {
  content: '\e0fc';
  /* '' */
}

/* line 792, app/assets/stylesheets/fonts/typicons.css */
.typcn-social-youtube:before {
  content: '\e0fd';
  /* '' */
}

/* line 795, app/assets/stylesheets/fonts/typicons.css */
.typcn-sort-alphabetically-outline:before {
  content: '\e0fe';
  /* '' */
}

/* line 798, app/assets/stylesheets/fonts/typicons.css */
.typcn-sort-alphabetically:before {
  content: '\e0ff';
  /* '' */
}

/* line 801, app/assets/stylesheets/fonts/typicons.css */
.typcn-sort-numerically-outline:before {
  content: '\e100';
  /* '' */
}

/* line 804, app/assets/stylesheets/fonts/typicons.css */
.typcn-sort-numerically:before {
  content: '\e101';
  /* '' */
}

/* line 807, app/assets/stylesheets/fonts/typicons.css */
.typcn-spanner-outline:before {
  content: '\e102';
  /* '' */
}

/* line 810, app/assets/stylesheets/fonts/typicons.css */
.typcn-spanner:before {
  content: '\e103';
  /* '' */
}

/* line 813, app/assets/stylesheets/fonts/typicons.css */
.typcn-spiral:before {
  content: '\e104';
  /* '' */
}

/* line 816, app/assets/stylesheets/fonts/typicons.css */
.typcn-star-full-outline:before {
  content: '\e105';
  /* '' */
}

/* line 819, app/assets/stylesheets/fonts/typicons.css */
.typcn-star-half-outline:before {
  content: '\e106';
  /* '' */
}

/* line 822, app/assets/stylesheets/fonts/typicons.css */
.typcn-star-half:before {
  content: '\e107';
  /* '' */
}

/* line 825, app/assets/stylesheets/fonts/typicons.css */
.typcn-star-outline:before {
  content: '\e108';
  /* '' */
}

/* line 828, app/assets/stylesheets/fonts/typicons.css */
.typcn-star:before {
  content: '\e109';
  /* '' */
}

/* line 831, app/assets/stylesheets/fonts/typicons.css */
.typcn-starburst-outline:before {
  content: '\e10a';
  /* '' */
}

/* line 834, app/assets/stylesheets/fonts/typicons.css */
.typcn-starburst:before {
  content: '\e10b';
  /* '' */
}

/* line 837, app/assets/stylesheets/fonts/typicons.css */
.typcn-stopwatch:before {
  content: '\e10c';
  /* '' */
}

/* line 840, app/assets/stylesheets/fonts/typicons.css */
.typcn-support:before {
  content: '\e10d';
  /* '' */
}

/* line 843, app/assets/stylesheets/fonts/typicons.css */
.typcn-tabs-outline:before {
  content: '\e10e';
  /* '' */
}

/* line 846, app/assets/stylesheets/fonts/typicons.css */
.typcn-tag:before {
  content: '\e10f';
  /* '' */
}

/* line 849, app/assets/stylesheets/fonts/typicons.css */
.typcn-tags:before {
  content: '\e110';
  /* '' */
}

/* line 852, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-large-outline:before {
  content: '\e111';
  /* '' */
}

/* line 855, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-large:before {
  content: '\e112';
  /* '' */
}

/* line 858, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-list-outline:before {
  content: '\e113';
  /* '' */
}

/* line 861, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-list:before {
  content: '\e114';
  /* '' */
}

/* line 864, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-menu-outline:before {
  content: '\e115';
  /* '' */
}

/* line 867, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-menu:before {
  content: '\e116';
  /* '' */
}

/* line 870, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-small-outline:before {
  content: '\e117';
  /* '' */
}

/* line 873, app/assets/stylesheets/fonts/typicons.css */
.typcn-th-small:before {
  content: '\e118';
  /* '' */
}

/* line 876, app/assets/stylesheets/fonts/typicons.css */
.typcn-thermometer:before {
  content: '\e119';
  /* '' */
}

/* line 879, app/assets/stylesheets/fonts/typicons.css */
.typcn-thumbs-down:before {
  content: '\e11a';
  /* '' */
}

/* line 882, app/assets/stylesheets/fonts/typicons.css */
.typcn-thumbs-ok:before {
  content: '\e11b';
  /* '' */
}

/* line 885, app/assets/stylesheets/fonts/typicons.css */
.typcn-thumbs-up:before {
  content: '\e11c';
  /* '' */
}

/* line 888, app/assets/stylesheets/fonts/typicons.css */
.typcn-tick-outline:before {
  content: '\e11d';
  /* '' */
}

/* line 891, app/assets/stylesheets/fonts/typicons.css */
.typcn-tick:before {
  content: '\e11e';
  /* '' */
}

/* line 894, app/assets/stylesheets/fonts/typicons.css */
.typcn-ticket:before {
  content: '\e11f';
  /* '' */
}

/* line 897, app/assets/stylesheets/fonts/typicons.css */
.typcn-time:before {
  content: '\e120';
  /* '' */
}

/* line 900, app/assets/stylesheets/fonts/typicons.css */
.typcn-times-outline:before {
  content: '\e121';
  /* '' */
}

/* line 903, app/assets/stylesheets/fonts/typicons.css */
.typcn-times:before {
  content: '\e122';
  /* '' */
}

/* line 906, app/assets/stylesheets/fonts/typicons.css */
.typcn-trash:before {
  content: '\e123';
  /* '' */
}

/* line 909, app/assets/stylesheets/fonts/typicons.css */
.typcn-tree:before {
  content: '\e124';
  /* '' */
}

/* line 912, app/assets/stylesheets/fonts/typicons.css */
.typcn-upload-outline:before {
  content: '\e125';
  /* '' */
}

/* line 915, app/assets/stylesheets/fonts/typicons.css */
.typcn-upload:before {
  content: '\e126';
  /* '' */
}

/* line 918, app/assets/stylesheets/fonts/typicons.css */
.typcn-user-add-outline:before {
  content: '\e127';
  /* '' */
}

/* line 921, app/assets/stylesheets/fonts/typicons.css */
.typcn-user-add:before {
  content: '\e128';
  /* '' */
}

/* line 924, app/assets/stylesheets/fonts/typicons.css */
.typcn-user-delete-outline:before {
  content: '\e129';
  /* '' */
}

/* line 927, app/assets/stylesheets/fonts/typicons.css */
.typcn-user-delete:before {
  content: '\e12a';
  /* '' */
}

/* line 930, app/assets/stylesheets/fonts/typicons.css */
.typcn-user-outline:before {
  content: '\e12b';
  /* '' */
}

/* line 933, app/assets/stylesheets/fonts/typicons.css */
.typcn-user:before {
  content: '\e12c';
  /* '' */
}

/* line 936, app/assets/stylesheets/fonts/typicons.css */
.typcn-vendor-android:before {
  content: '\e12d';
  /* '' */
}

/* line 939, app/assets/stylesheets/fonts/typicons.css */
.typcn-vendor-apple:before {
  content: '\e12e';
  /* '' */
}

/* line 942, app/assets/stylesheets/fonts/typicons.css */
.typcn-vendor-microsoft:before {
  content: '\e12f';
  /* '' */
}

/* line 945, app/assets/stylesheets/fonts/typicons.css */
.typcn-video-outline:before {
  content: '\e130';
  /* '' */
}

/* line 948, app/assets/stylesheets/fonts/typicons.css */
.typcn-video:before {
  content: '\e131';
  /* '' */
}

/* line 951, app/assets/stylesheets/fonts/typicons.css */
.typcn-volume-down:before {
  content: '\e132';
  /* '' */
}

/* line 954, app/assets/stylesheets/fonts/typicons.css */
.typcn-volume-mute:before {
  content: '\e133';
  /* '' */
}

/* line 957, app/assets/stylesheets/fonts/typicons.css */
.typcn-volume-up:before {
  content: '\e134';
  /* '' */
}

/* line 960, app/assets/stylesheets/fonts/typicons.css */
.typcn-volume:before {
  content: '\e135';
  /* '' */
}

/* line 963, app/assets/stylesheets/fonts/typicons.css */
.typcn-warning-outline:before {
  content: '\e136';
  /* '' */
}

/* line 966, app/assets/stylesheets/fonts/typicons.css */
.typcn-warning:before {
  content: '\e137';
  /* '' */
}

/* line 969, app/assets/stylesheets/fonts/typicons.css */
.typcn-watch:before {
  content: '\e138';
  /* '' */
}

/* line 972, app/assets/stylesheets/fonts/typicons.css */
.typcn-waves-outline:before {
  content: '\e139';
  /* '' */
}

/* line 975, app/assets/stylesheets/fonts/typicons.css */
.typcn-waves:before {
  content: '\e13a';
  /* '' */
}

/* line 978, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-cloudy:before {
  content: '\e13b';
  /* '' */
}

/* line 981, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-downpour:before {
  content: '\e13c';
  /* '' */
}

/* line 984, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-night:before {
  content: '\e13d';
  /* '' */
}

/* line 987, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-partly-sunny:before {
  content: '\e13e';
  /* '' */
}

/* line 990, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-shower:before {
  content: '\e13f';
  /* '' */
}

/* line 993, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-snow:before {
  content: '\e140';
  /* '' */
}

/* line 996, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-stormy:before {
  content: '\e141';
  /* '' */
}

/* line 999, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-sunny:before {
  content: '\e142';
  /* '' */
}

/* line 1002, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-windy-cloudy:before {
  content: '\e143';
  /* '' */
}

/* line 1005, app/assets/stylesheets/fonts/typicons.css */
.typcn-weather-windy:before {
  content: '\e144';
  /* '' */
}

/* line 1008, app/assets/stylesheets/fonts/typicons.css */
.typcn-wi-fi-outline:before {
  content: '\e145';
  /* '' */
}

/* line 1011, app/assets/stylesheets/fonts/typicons.css */
.typcn-wi-fi:before {
  content: '\e146';
  /* '' */
}

/* line 1014, app/assets/stylesheets/fonts/typicons.css */
.typcn-wine:before {
  content: '\e147';
  /* '' */
}

/* line 1017, app/assets/stylesheets/fonts/typicons.css */
.typcn-world-outline:before {
  content: '\e148';
  /* '' */
}

/* line 1020, app/assets/stylesheets/fonts/typicons.css */
.typcn-world:before {
  content: '\e149';
  /* '' */
}

/* line 1023, app/assets/stylesheets/fonts/typicons.css */
.typcn-zoom-in-outline:before {
  content: '\e14a';
  /* '' */
}

/* line 1026, app/assets/stylesheets/fonts/typicons.css */
.typcn-zoom-in:before {
  content: '\e14b';
  /* '' */
}

/* line 1029, app/assets/stylesheets/fonts/typicons.css */
.typcn-zoom-out-outline:before {
  content: '\e14c';
  /* '' */
}

/* line 1032, app/assets/stylesheets/fonts/typicons.css */
.typcn-zoom-out:before {
  content: '\e14d';
  /* '' */
}

/* line 1035, app/assets/stylesheets/fonts/typicons.css */
.typcn-zoom-outline:before {
  content: '\e14e';
  /* '' */
}

/* line 1038, app/assets/stylesheets/fonts/typicons.css */
.typcn-zoom:before {
  content: '\e14f';
  /* '' */
}

/* fonts */
@font-face {
  font-family: "js_wansikaitalic";
  src: url(/assets/js_wansika_italic-webfont-ca123d8cd0773dc30d6c5a48d1678e73c94e141358e510f6106ab65f26ee7ab8.eot) format("embedded-opentype");
  src: url(/assets/js_wansika_italic-webfont-894e81383da13e3722dc374d1a8b439c46e6301c920f2364ed83f790080eed9a.woff2) format("woff2");
  src: url(/assets/js_wansika_italic-webfont-ee47155d643ff70d4a6ef6681a59eb74c52c7f0d88234b3fb627d9c06f524854.woff) format("woff");
  src: url(/assets/js_wansika_italic-webfont-4059f122d6b09318dbcb8096ac93843c0ecfe020d94ef9ec1856a2ab569ca8e3.ttf) format("truetype");
}

/* Social */
/*@import "social-share-button.css.erb";*/
/* Chosen */
/* Chosen v1.2.0 | (c) 2011-2014 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */
/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container * {
  box-sizing: border-box;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container a {
  cursor: pointer;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-default {
  color: #999;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) -42px 1px no-repeat;
  font-size: 1px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat 0 2px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-search input[type=text] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: #fff url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat 100% -20px;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) -42px 1px no-repeat;
  font-size: 1px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #a7cbd6;
  background-color: #e4e4e4;
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: 0;
  background: transparent;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #222 !important;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-disabled .chosen-single {
  cursor: default;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl {
  text-align: right;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-choices li {
  float: right;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl.chosen-container-single-nosearch .chosen-search, .chosen-rtl .chosen-drop {
  left: 9999px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: 0;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: #fff url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat -30px -20px;
  background: url(/assets/chosen-sprite-3cde13df3c9baedea2fd869a0935de8e43408ba7dec321fe3c8c4414788b8b41.png) no-repeat -30px -20px;
  direction: rtl;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

/* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  /* line 3, app/assets/stylesheets/chosen-js/chosen.min.css */
  .chosen-rtl .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search input[type=text], .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span {
    background-image: url(/assets/chosen-sprite@2x-f811c9f3282470438df5d1b7fe6faf244a0a17124591b467957a91634aac16e8.png) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* Uppy & Shrine */
/* line 151, app/assets/stylesheets/application.css.scss */
.image-preview {
  margin-bottom: 20px;
}

/* line 155, app/assets/stylesheets/application.css.scss */
.file-upload-preview[src=""] {
  visibility: hidden;
}

/* line 159, app/assets/stylesheets/application.css.scss */
.file-upload-list li {
  margin-bottom: 20px;
}

/* line 163, app/assets/stylesheets/application.css.scss */
.image-preview {
  margin-top: 10px;
  display: inline-block;
}

/* line 167, app/assets/stylesheets/application.css.scss */
.form-horizontal .media .form-group {
  margin-left: 10px;
  margin-right: 10px;
}

/* add flex to bs3 */
/* -------------------------------------------------------------------------- */
/* line 4, app/assets/stylesheets/flex-utils.scss */
.d-flex {
  display: flex;
  /* alignment */
  /* justify content */
  /* align items */
  /* align content */
  /* wrapping */
  /* self align */
  /* fill equal spaces */
  /* order */
}

/* line 7, app/assets/stylesheets/flex-utils.scss */
.d-flex.flex-row {
  flex-direction: row;
}

/* line 10, app/assets/stylesheets/flex-utils.scss */
.d-flex.flex-row-reverse {
  flex-direction: row-reverse;
}

/* line 13, app/assets/stylesheets/flex-utils.scss */
.d-flex.flex-column {
  flex-direction: column;
}

/* line 16, app/assets/stylesheets/flex-utils.scss */
.d-flex.flex-column-reverse {
  flex-direction: column-reverse;
}

/* line 20, app/assets/stylesheets/flex-utils.scss */
.d-flex.justify-content-start {
  justify-content: start;
}

/* line 23, app/assets/stylesheets/flex-utils.scss */
.d-flex.justify-content-end {
  justify-content: end;
}

/* line 26, app/assets/stylesheets/flex-utils.scss */
.d-flex.justify-content-center {
  justify-content: center;
}

/* line 29, app/assets/stylesheets/flex-utils.scss */
.d-flex.justify-content-between {
  justify-content: space-between;
}

/* line 32, app/assets/stylesheets/flex-utils.scss */
.d-flex.justify-content-around {
  justify-content: space-around;
}

/* line 36, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-items-start {
  align-items: flex-start;
}

/* line 39, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-items-end {
  align-items: flex-end;
}

/* line 42, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-items-center {
  align-items: center;
}

/* line 45, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-items-baseline {
  align-items: baseline;
}

/* line 48, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-items-stretch {
  align-items: stretch;
}

/* line 52, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-content-start {
  align-content: flex-start;
}

/* line 55, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-content-end {
  align-content: flex-end;
}

/* line 58, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-content-center {
  align-content: center;
}

/* line 61, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-content-around {
  align-content: space-around;
}

/* line 64, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-content-between {
  align-content: space-between;
}

/* line 67, app/assets/stylesheets/flex-utils.scss */
.d-flex.align-content-stretch {
  align-content: stretch;
}

/* line 71, app/assets/stylesheets/flex-utils.scss */
.d-flex.flex-wrap {
  flex-wrap: wrap;
}

/* line 74, app/assets/stylesheets/flex-utils.scss */
.d-flex.flex-nowrap {
  flex-wrap: nowrap;
}

/* line 78, app/assets/stylesheets/flex-utils.scss */
.d-flex .align-self-start {
  align-self: flex-start;
}

/* line 81, app/assets/stylesheets/flex-utils.scss */
.d-flex .align-self-end {
  align-self: flex-end;
}

/* line 84, app/assets/stylesheets/flex-utils.scss */
.d-flex .align-self-center {
  align-self: center;
}

/* line 87, app/assets/stylesheets/flex-utils.scss */
.d-flex .align-self-baseline {
  align-self: baseline;
}

/* line 90, app/assets/stylesheets/flex-utils.scss */
.d-flex .align-self-stretch {
  align-self: stretch;
}

/* line 94, app/assets/stylesheets/flex-utils.scss */
.d-flex .flex-fill {
  flex: 1 1 auto !important;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-0 {
  order: 0;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-1 {
  order: 1;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-2 {
  order: 2;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-3 {
  order: 3;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-4 {
  order: 4;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-5 {
  order: 5;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-6 {
  order: 6;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-7 {
  order: 7;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-8 {
  order: 8;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-9 {
  order: 9;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-10 {
  order: 10;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-11 {
  order: 11;
}

/* line 99, app/assets/stylesheets/flex-utils.scss */
.d-flex .order-12 {
  order: 12;
}

/* line 105, app/assets/stylesheets/flex-utils.scss */
.d-inline-flex {
  display: inline-flex;
}

/* Datatable */
/* Date Timepicker */
/* Color Picker */
/* @import "bootstrap-colorpicker/dist/css/bootstrap-colorpicker.css"; */
/* Fullcalendar  */
/* line 187, app/assets/stylesheets/application.css.scss */
.fc-day-grid-event .fc-content {
  white-space: normal;
}

/* line 190, app/assets/stylesheets/application.css.scss */
a.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end {
  border-width: 3px;
  padding: 2px;
  font-family: 'Kanit';
}

/* line 195, app/assets/stylesheets/application.css.scss */
.mini-calendar {
  font-size: 0.7em;
}

/* line 198, app/assets/stylesheets/application.css.scss */
.mini-calendar span.fc-title {
  display: none;
}

/* line 201, app/assets/stylesheets/application.css.scss */
.mini-calendar h2 {
  font-size: 1.2em;
  margin: 15px 15px 0 10px;
}

/* line 205, app/assets/stylesheets/application.css.scss */
.mini-calendar .fc-view-container {
  padding: 5px 15px;
}

/* line 208, app/assets/stylesheets/application.css.scss */
.mini-calendar .fc-basic-view .fc-body .fc-row {
  min-height: 2.5em;
}

/* line 211, app/assets/stylesheets/application.css.scss */
.mini-calendar a.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end {
  border-width: 0;
  padding: 4px;
}

/* line 215, app/assets/stylesheets/application.css.scss */
.mini-calendar th.fc-day-header span {
  font-size: 0.8em;
}

/* line 218, app/assets/stylesheets/application.css.scss */
.mini-calendar span.fc-day-number {
  font-size: 10px;
}

/* line 221, app/assets/stylesheets/application.css.scss */
.mini-calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 5px;
}

/*Global */
/*************************
Basic margin padding
*************************/
/* line 233, app/assets/stylesheets/application.css.scss */
.m-0 {
  margin-top: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
}

/* line 234, app/assets/stylesheets/application.css.scss */
.p-0 {
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
}

/* line 235, app/assets/stylesheets/application.css.scss */
.float-right {
  float: right;
}

/* line 238, app/assets/stylesheets/application.css.scss */
.float-left {
  float: left;
}

/**** Font ****/
/* line 243, app/assets/stylesheets/application.css.scss */
.fw-light {
  font-weight: 200;
}

/*************************
Margin top
*************************/
/* line 251, app/assets/stylesheets/application.css.scss */
.mt-0 {
  margin-top: 0 !important;
}

/* line 252, app/assets/stylesheets/application.css.scss */
.mt-10 {
  margin-top: 10px !important;
}

/* line 253, app/assets/stylesheets/application.css.scss */
.mt-15 {
  margin-top: 15px !important;
}

/* line 254, app/assets/stylesheets/application.css.scss */
.mt-20 {
  margin-top: 20px !important;
}

/* line 255, app/assets/stylesheets/application.css.scss */
.mt-30 {
  margin-top: 30px !important;
}

/* line 256, app/assets/stylesheets/application.css.scss */
.mt-40 {
  margin-top: 40px !important;
}

/* line 257, app/assets/stylesheets/application.css.scss */
.mt-50 {
  margin-top: 50px !important;
}

/* line 258, app/assets/stylesheets/application.css.scss */
.mt-60 {
  margin-top: 60px !important;
}

/* line 259, app/assets/stylesheets/application.css.scss */
.mt-70 {
  margin-top: 70px !important;
}

/* line 260, app/assets/stylesheets/application.css.scss */
.mt-80 {
  margin-top: 80px !important;
}

/* line 261, app/assets/stylesheets/application.css.scss */
.mt-90 {
  margin-top: 90px !important;
}

/* line 262, app/assets/stylesheets/application.css.scss */
.mt-100 {
  margin-top: 100px !important;
}

/* line 263, app/assets/stylesheets/application.css.scss */
.mt-110 {
  margin-top: 110px !important;
}

/* line 264, app/assets/stylesheets/application.css.scss */
.mt-120 {
  margin-top: 120px !important;
}

/* line 265, app/assets/stylesheets/application.css.scss */
.mt-130 {
  margin-top: 130px !important;
}

/* line 266, app/assets/stylesheets/application.css.scss */
.mt-140 {
  margin-top: 140px !important;
}

/* line 267, app/assets/stylesheets/application.css.scss */
.mt-150 {
  margin-top: 150px !important;
}

/*************************
Margin right
*************************/
/* line 273, app/assets/stylesheets/application.css.scss */
.mr-0 {
  margin-right: 0 !important;
}

/* line 274, app/assets/stylesheets/application.css.scss */
.mr-10 {
  margin-right: 10px !important;
}

/* line 275, app/assets/stylesheets/application.css.scss */
.mr-15 {
  margin-right: 15px !important;
}

/* line 276, app/assets/stylesheets/application.css.scss */
.mr-20 {
  margin-right: 20px !important;
}

/* line 277, app/assets/stylesheets/application.css.scss */
.mr-30 {
  margin-right: 30px !important;
}

/* line 278, app/assets/stylesheets/application.css.scss */
.mr-40 {
  margin-right: 40px !important;
}

/* line 279, app/assets/stylesheets/application.css.scss */
.mr-50 {
  margin-right: 50px !important;
}

/* line 280, app/assets/stylesheets/application.css.scss */
.mr-60 {
  margin-right: 60px !important;
}

/* line 281, app/assets/stylesheets/application.css.scss */
.mr-70 {
  margin-right: 70px !important;
}

/* line 282, app/assets/stylesheets/application.css.scss */
.mr-80 {
  margin-right: 80px !important;
}

/* line 283, app/assets/stylesheets/application.css.scss */
.mr-90 {
  margin-right: 90px !important;
}

/* line 284, app/assets/stylesheets/application.css.scss */
.mr-100 {
  margin-right: 100px !important;
}

/* line 285, app/assets/stylesheets/application.css.scss */
.mr-110 {
  margin-right: 110px !important;
}

/* line 286, app/assets/stylesheets/application.css.scss */
.mr-120 {
  margin-right: 120px !important;
}

/* line 287, app/assets/stylesheets/application.css.scss */
.mr-130 {
  margin-right: 130px !important;
}

/* line 288, app/assets/stylesheets/application.css.scss */
.mr-140 {
  margin-right: 140px !important;
}

/* line 289, app/assets/stylesheets/application.css.scss */
.mr-150 {
  margin-right: 150px !important;
}

/*************************
Margin bottom
*************************/
/* line 295, app/assets/stylesheets/application.css.scss */
.mb-0 {
  margin-bottom: 0 !important;
}

/* line 296, app/assets/stylesheets/application.css.scss */
.mb-10 {
  margin-bottom: 10px !important;
}

/* line 297, app/assets/stylesheets/application.css.scss */
.mb-15 {
  margin-bottom: 15px !important;
}

/* line 298, app/assets/stylesheets/application.css.scss */
.mb-20 {
  margin-bottom: 20px !important;
}

/* line 299, app/assets/stylesheets/application.css.scss */
.mb-30 {
  margin-bottom: 30px !important;
}

/* line 300, app/assets/stylesheets/application.css.scss */
.mb-40 {
  margin-bottom: 40px !important;
}

/* line 301, app/assets/stylesheets/application.css.scss */
.mb-50 {
  margin-bottom: 50px !important;
}

/* line 302, app/assets/stylesheets/application.css.scss */
.mb-60 {
  margin-bottom: 60px !important;
}

/* line 303, app/assets/stylesheets/application.css.scss */
.mb-70 {
  margin-bottom: 70px !important;
}

/* line 304, app/assets/stylesheets/application.css.scss */
.mb-80 {
  margin-bottom: 80px !important;
}

/* line 305, app/assets/stylesheets/application.css.scss */
.mb-90 {
  margin-bottom: 90px !important;
}

/* line 306, app/assets/stylesheets/application.css.scss */
.mb-100 {
  margin-bottom: 100px !important;
}

/* line 307, app/assets/stylesheets/application.css.scss */
.mb-110 {
  margin-bottom: 110px !important;
}

/* line 308, app/assets/stylesheets/application.css.scss */
.mb-120 {
  margin-bottom: 120px !important;
}

/* line 309, app/assets/stylesheets/application.css.scss */
.mb-130 {
  margin-bottom: 130px !important;
}

/* line 310, app/assets/stylesheets/application.css.scss */
.mb-140 {
  margin-bottom: 140px !important;
}

/* line 311, app/assets/stylesheets/application.css.scss */
.mb-150 {
  margin-bottom: 150px !important;
}

/*************************
Margin left
*************************/
/* line 317, app/assets/stylesheets/application.css.scss */
.ml-0 {
  margin-left: 0 !important;
}

/* line 318, app/assets/stylesheets/application.css.scss */
.ml-10 {
  margin-left: 10px !important;
}

/* line 319, app/assets/stylesheets/application.css.scss */
.ml-15 {
  margin-left: 15px !important;
}

/* line 320, app/assets/stylesheets/application.css.scss */
.ml-20 {
  margin-left: 20px !important;
}

/* line 321, app/assets/stylesheets/application.css.scss */
.ml-30 {
  margin-left: 30px !important;
}

/* line 322, app/assets/stylesheets/application.css.scss */
.ml-40 {
  margin-left: 40px !important;
}

/* line 323, app/assets/stylesheets/application.css.scss */
.ml-50 {
  margin-left: 50px !important;
}

/* line 324, app/assets/stylesheets/application.css.scss */
.ml-60 {
  margin-left: 60px !important;
}

/* line 325, app/assets/stylesheets/application.css.scss */
.ml-70 {
  margin-left: 70px !important;
}

/* line 326, app/assets/stylesheets/application.css.scss */
.ml-80 {
  margin-left: 80px !important;
}

/* line 327, app/assets/stylesheets/application.css.scss */
.ml-90 {
  margin-left: 90px !important;
}

/* line 328, app/assets/stylesheets/application.css.scss */
.ml-100 {
  margin-left: 100px !important;
}

/* line 329, app/assets/stylesheets/application.css.scss */
.ml-110 {
  margin-left: 110px !important;
}

/* line 330, app/assets/stylesheets/application.css.scss */
.ml-120 {
  margin-left: 120px !important;
}

/* line 331, app/assets/stylesheets/application.css.scss */
.ml-130 {
  margin-left: 130px !important;
}

/* line 332, app/assets/stylesheets/application.css.scss */
.ml-140 {
  margin-left: 140px !important;
}

/* line 333, app/assets/stylesheets/application.css.scss */
.ml-150 {
  margin-left: 150px !important;
}

/* line 335, app/assets/stylesheets/application.css.scss */
.mx-auto {
  margin: auto;
}

/*************************
Padding top
*************************/
/* line 341, app/assets/stylesheets/application.css.scss */
.pt-0 {
  padding-top: 0 !important;
}

/* line 342, app/assets/stylesheets/application.css.scss */
.pt-10 {
  padding-top: 10px !important;
}

/* line 343, app/assets/stylesheets/application.css.scss */
.pt-5 {
  padding-top: 5px !important;
}

/* line 344, app/assets/stylesheets/application.css.scss */
.pt-15 {
  padding-top: 15px !important;
}

/* line 345, app/assets/stylesheets/application.css.scss */
.pt-20 {
  padding-top: 20px !important;
}

/* line 346, app/assets/stylesheets/application.css.scss */
.pt-30 {
  padding-top: 30px !important;
}

/* line 347, app/assets/stylesheets/application.css.scss */
.pt-40 {
  padding-top: 40px !important;
}

/* line 348, app/assets/stylesheets/application.css.scss */
.pt-50 {
  padding-top: 50px !important;
}

/* line 349, app/assets/stylesheets/application.css.scss */
.pt-60 {
  padding-top: 60px !important;
}

/* line 350, app/assets/stylesheets/application.css.scss */
.pt-70 {
  padding-top: 70px !important;
}

/* line 351, app/assets/stylesheets/application.css.scss */
.pt-80 {
  padding-top: 80px !important;
}

/* line 352, app/assets/stylesheets/application.css.scss */
.pt-90 {
  padding-top: 90px !important;
}

/* line 353, app/assets/stylesheets/application.css.scss */
.pt-100 {
  padding-top: 100px !important;
}

/* line 354, app/assets/stylesheets/application.css.scss */
.pt-110 {
  padding-top: 110px !important;
}

/* line 355, app/assets/stylesheets/application.css.scss */
.pt-120 {
  padding-top: 120px !important;
}

/* line 356, app/assets/stylesheets/application.css.scss */
.pt-130 {
  padding-top: 130px !important;
}

/* line 357, app/assets/stylesheets/application.css.scss */
.pt-140 {
  padding-top: 140px !important;
}

/* line 358, app/assets/stylesheets/application.css.scss */
.pt-150 {
  padding-top: 150px !important;
}

/*************************
Padding right
*************************/
/* line 364, app/assets/stylesheets/application.css.scss */
.pr-0 {
  padding-right: 0 !important;
}

/* line 365, app/assets/stylesheets/application.css.scss */
.pr-10 {
  padding-right: 10px !important;
}

/* line 366, app/assets/stylesheets/application.css.scss */
.pr-5 {
  padding-right: 5px !important;
}

/* line 367, app/assets/stylesheets/application.css.scss */
.pr-15 {
  padding-right: 15px !important;
}

/* line 368, app/assets/stylesheets/application.css.scss */
.pr-20 {
  padding-right: 20px !important;
}

/* line 369, app/assets/stylesheets/application.css.scss */
.pr-30 {
  padding-right: 30px !important;
}

/* line 370, app/assets/stylesheets/application.css.scss */
.pr-40 {
  padding-right: 40px !important;
}

/* line 371, app/assets/stylesheets/application.css.scss */
.pr-50 {
  padding-right: 50px !important;
}

/* line 372, app/assets/stylesheets/application.css.scss */
.pr-60 {
  padding-right: 60px !important;
}

/* line 373, app/assets/stylesheets/application.css.scss */
.pr-70 {
  padding-right: 70px !important;
}

/* line 374, app/assets/stylesheets/application.css.scss */
.pr-80 {
  padding-right: 80px !important;
}

/* line 375, app/assets/stylesheets/application.css.scss */
.pr-90 {
  padding-right: 90px !important;
}

/* line 376, app/assets/stylesheets/application.css.scss */
.pr-100 {
  padding-right: 100px !important;
}

/* line 377, app/assets/stylesheets/application.css.scss */
.pr-110 {
  padding-right: 110px !important;
}

/* line 378, app/assets/stylesheets/application.css.scss */
.pr-120 {
  padding-right: 120px !important;
}

/* line 379, app/assets/stylesheets/application.css.scss */
.pr-130 {
  padding-right: 130px !important;
}

/* line 380, app/assets/stylesheets/application.css.scss */
.pr-140 {
  padding-right: 140px !important;
}

/*************************
Padding bottom
*************************/
/* line 386, app/assets/stylesheets/application.css.scss */
.pb-0 {
  padding-bottom: 0 !important;
}

/* line 387, app/assets/stylesheets/application.css.scss */
.pb-10 {
  padding-bottom: 10px !important;
}

/* line 388, app/assets/stylesheets/application.css.scss */
.pb-5 {
  padding-bottom: 5px !important;
}

/* line 389, app/assets/stylesheets/application.css.scss */
.pb-15 {
  padding-bottom: 15px !important;
}

/* line 390, app/assets/stylesheets/application.css.scss */
.pb-20 {
  padding-bottom: 20px !important;
}

/* line 391, app/assets/stylesheets/application.css.scss */
.pb-30 {
  padding-bottom: 30px !important;
}

/* line 392, app/assets/stylesheets/application.css.scss */
.pb-40 {
  padding-bottom: 40px !important;
}

/* line 393, app/assets/stylesheets/application.css.scss */
.pb-50 {
  padding-bottom: 50px !important;
}

/* line 394, app/assets/stylesheets/application.css.scss */
.pb-60 {
  padding-bottom: 60px !important;
}

/* line 395, app/assets/stylesheets/application.css.scss */
.pb-70 {
  padding-bottom: 70px !important;
}

/* line 396, app/assets/stylesheets/application.css.scss */
.pb-80 {
  padding-bottom: 80px !important;
}

/* line 397, app/assets/stylesheets/application.css.scss */
.pb-90 {
  padding-bottom: 90px !important;
}

/* line 398, app/assets/stylesheets/application.css.scss */
.pb-100 {
  padding-bottom: 100px !important;
}

/* line 399, app/assets/stylesheets/application.css.scss */
.pb-110 {
  padding-bottom: 110px !important;
}

/* line 400, app/assets/stylesheets/application.css.scss */
.pb-120 {
  padding-bottom: 120px !important;
}

/* line 401, app/assets/stylesheets/application.css.scss */
.pb-130 {
  padding-bottom: 130px !important;
}

/* line 402, app/assets/stylesheets/application.css.scss */
.pb-140 {
  padding-bottom: 140px !important;
}

/* line 403, app/assets/stylesheets/application.css.scss */
.pb-150 {
  padding-bottom: 150px !important;
}

/*************************
Padding left
*************************/
/* line 409, app/assets/stylesheets/application.css.scss */
.pl-0 {
  padding-left: 0 !important;
}

/* line 410, app/assets/stylesheets/application.css.scss */
.pl-5 {
  padding-left: 5px !important;
}

/* line 411, app/assets/stylesheets/application.css.scss */
.pl-10 {
  padding-left: 10px !important;
}

/* line 412, app/assets/stylesheets/application.css.scss */
.pl-15 {
  padding-left: 15px !important;
}

/* line 413, app/assets/stylesheets/application.css.scss */
.pl-20 {
  padding-left: 20px !important;
}

/* line 414, app/assets/stylesheets/application.css.scss */
.pl-30 {
  padding-left: 30px !important;
}

/* line 415, app/assets/stylesheets/application.css.scss */
.pl-40 {
  padding-left: 40px !important;
}

/* line 416, app/assets/stylesheets/application.css.scss */
.pl-50 {
  padding-left: 50px !important;
}

/* line 417, app/assets/stylesheets/application.css.scss */
.pl-60 {
  padding-left: 60px !important;
}

/* line 418, app/assets/stylesheets/application.css.scss */
.pl-70 {
  padding-left: 70px !important;
}

/* line 419, app/assets/stylesheets/application.css.scss */
.pl-80 {
  padding-left: 80px !important;
}

/* line 420, app/assets/stylesheets/application.css.scss */
.pl-90 {
  padding-left: 90px !important;
}

/* line 421, app/assets/stylesheets/application.css.scss */
.pl-100 {
  padding-left: 100px !important;
}

/* line 422, app/assets/stylesheets/application.css.scss */
.pl-110 {
  padding-left: 110px !important;
}

/* line 423, app/assets/stylesheets/application.css.scss */
.pl-120 {
  padding-left: 120px !important;
}

/* line 424, app/assets/stylesheets/application.css.scss */
.pl-130 {
  padding-left: 130px !important;
}

/* line 425, app/assets/stylesheets/application.css.scss */
.pl-140 {
  padding-left: 140px !important;
}

/* line 426, app/assets/stylesheets/application.css.scss */
.pl-150 {
  padding-left: 150px !important;
}

/* line 428, app/assets/stylesheets/application.css.scss */
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

/* line 429, app/assets/stylesheets/application.css.scss */
.py-3em {
  margin: 3em !important;
}

/* line 430, app/assets/stylesheets/application.css.scss */
.pp-10 {
  padding: 10px;
}

/* line 431, app/assets/stylesheets/application.css.scss */
.pp-20 {
  padding: 20px;
}

/* line 432, app/assets/stylesheets/application.css.scss */
.mm-10 {
  margin: 10px;
}

/* line 433, app/assets/stylesheets/application.css.scss */
.mm-20 {
  margin: 20px;
}

/* line 434, app/assets/stylesheets/application.css.scss */
.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

/* line 435, app/assets/stylesheets/application.css.scss */
.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

/* line 436, app/assets/stylesheets/application.css.scss */
.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 437, app/assets/stylesheets/application.css.scss */
.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

/* line 438, app/assets/stylesheets/application.css.scss */
.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 439, app/assets/stylesheets/application.css.scss */
.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 440, app/assets/stylesheets/application.css.scss */
.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* line 441, app/assets/stylesheets/application.css.scss */
.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/*min height*/
/* line 444, app/assets/stylesheets/application.css.scss */
.min-h-200 {
  min-height: 200px;
}

/* line 445, app/assets/stylesheets/application.css.scss */
.min-h-230 {
  min-height: 230px;
}

/* line 446, app/assets/stylesheets/application.css.scss */
.min-h-260 {
  min-height: 260px;
}

/* line 447, app/assets/stylesheets/application.css.scss */
.min-h-290 {
  min-height: 290px;
}

/* line 448, app/assets/stylesheets/application.css.scss */
.min-h-320 {
  min-height: 320px;
}

/* line 449, app/assets/stylesheets/application.css.scss */
.min-h-350 {
  min-height: 350px;
}

/* line 450, app/assets/stylesheets/application.css.scss */
.min-h-380 {
  min-height: 380px;
}

/* line 451, app/assets/stylesheets/application.css.scss */
.min-h-410 {
  min-height: 410px;
}

/* line 452, app/assets/stylesheets/application.css.scss */
.min-h-440 {
  min-height: 440px;
}

/* line 453, app/assets/stylesheets/application.css.scss */
.min-h-470 {
  min-height: 470px;
}

/* line 454, app/assets/stylesheets/application.css.scss */
.min-h-500 {
  min-height: 500px;
}

/* line 455, app/assets/stylesheets/application.css.scss */
.min-h-550 {
  min-height: 550px;
}

/*max height*/
/* line 458, app/assets/stylesheets/application.css.scss */
.max-h-200 {
  max-height: 200px;
}

/* line 459, app/assets/stylesheets/application.css.scss */
.max-h-230 {
  max-height: 230px;
}

/* line 460, app/assets/stylesheets/application.css.scss */
.max-h-260 {
  max-height: 260px;
}

/* line 461, app/assets/stylesheets/application.css.scss */
.max-h-290 {
  max-height: 290px;
}

/* line 462, app/assets/stylesheets/application.css.scss */
.max-h-320 {
  max-height: 320px;
}

/* line 463, app/assets/stylesheets/application.css.scss */
.max-h-350 {
  max-height: 350px;
}

/* line 464, app/assets/stylesheets/application.css.scss */
.max-h-380 {
  max-height: 380px;
}

/* line 465, app/assets/stylesheets/application.css.scss */
.max-h-410 {
  max-height: 410px;
}

/* line 466, app/assets/stylesheets/application.css.scss */
.max-h-440 {
  max-height: 440px;
}

/* line 467, app/assets/stylesheets/application.css.scss */
.max-h-470 {
  max-height: 470px;
}

/* line 468, app/assets/stylesheets/application.css.scss */
.max-h-500 {
  max-height: 500px;
}

/* line 469, app/assets/stylesheets/application.css.scss */
.max-h-550 {
  max-height: 550px;
}

/* width */
/* line 472, app/assets/stylesheets/application.css.scss */
.w-30 {
  width: 30%;
}

/* line 473, app/assets/stylesheets/application.css.scss */
.w-50 {
  width: 50%;
}

/* line 474, app/assets/stylesheets/application.css.scss */
.w-60 {
  width: 60%;
}

/* line 475, app/assets/stylesheets/application.css.scss */
.w-80 {
  width: 80%;
}

/* line 476, app/assets/stylesheets/application.css.scss */
.w-100 {
  width: 100%;
}

/* line 477, app/assets/stylesheets/application.css.scss */
.w-40px {
  width: 40px;
}

/* line 478, app/assets/stylesheets/application.css.scss */
.w-80px {
  width: 80px;
}

/* line 479, app/assets/stylesheets/application.css.scss */
.w-100px {
  width: 100px;
}

/* line 480, app/assets/stylesheets/application.css.scss */
.w-m-40px {
  min-width: 40px;
}

/* line 481, app/assets/stylesheets/application.css.scss */
.w-m-80px {
  min-width: 80px;
}

/* line 482, app/assets/stylesheets/application.css.scss */
.w-m-100px {
  min-width: 100px;
}

/* height */
/* line 485, app/assets/stylesheets/application.css.scss */
.h-30 {
  height: 30%;
}

/* line 486, app/assets/stylesheets/application.css.scss */
.h-50 {
  height: 50%;
}

/* line 487, app/assets/stylesheets/application.css.scss */
.h-60 {
  height: 60%;
}

/* line 488, app/assets/stylesheets/application.css.scss */
.h-80 {
  height: 80%;
}

/* line 489, app/assets/stylesheets/application.css.scss */
.h-100 {
  height: 100%;
}

/* line 490, app/assets/stylesheets/application.css.scss */
.h-50px {
  width: auto;
  height: 50px;
}

/* line 491, app/assets/stylesheets/application.css.scss */
.h-75px {
  width: auto;
  height: 75px;
}

/* line 492, app/assets/stylesheets/application.css.scss */
.h-100px {
  width: auto;
  height: 100px;
}

/* line 493, app/assets/stylesheets/application.css.scss */
.h-125px {
  width: auto;
  height: 125px;
}

/* line 494, app/assets/stylesheets/application.css.scss */
.h-150px {
  width: auto;
  height: 150px;
}

/* border */
/* line 497, app/assets/stylesheets/application.css.scss */
.bb, .b, .ba {
  border-bottom: 1px solid #eee;
}

/* line 498, app/assets/stylesheets/application.css.scss */
.bt, .b, .ba {
  border-top: 1px solid #eee;
}

/* line 499, app/assets/stylesheets/application.css.scss */
.bl, .b, .ba {
  border-left: 1px solid #eee;
}

/* line 500, app/assets/stylesheets/application.css.scss */
.br, .b, .ba {
  border-right: 1px solid #eee;
}

/* line 502, app/assets/stylesheets/application.css.scss */
.b-none {
  border: none !important;
}

/* line 506, app/assets/stylesheets/application.css.scss */
.l-height-xs {
  line-height: 1.1em;
}

/* display */
/* line 511, app/assets/stylesheets/application.css.scss */
.d-flex {
  display: flex;
}

/* line 514, app/assets/stylesheets/application.css.scss */
.d-line-block {
  display: inline-block !important;
}

/* line 517, app/assets/stylesheets/application.css.scss */
.d-block {
  display: block !important;
}

/* line 520, app/assets/stylesheets/application.css.scss */
.media {
  display: flex;
  align-items: flex-start;
}

/* line 524, app/assets/stylesheets/application.css.scss */
.media p {
  line-height: 1.3em;
}

/* line 527, app/assets/stylesheets/application.css.scss */
.media .small {
  font-size: 11px;
}

/* line 530, app/assets/stylesheets/application.css.scss */
.media-green-light .fa-inverse {
  color: #5ac34e;
}

/* line 533, app/assets/stylesheets/application.css.scss */
.media-green-light .text-success {
  color: #deffe6;
}

/* line 536, app/assets/stylesheets/application.css.scss */
.media-yellow-light .fa-inverse {
  color: #eb7605;
}

/* line 539, app/assets/stylesheets/application.css.scss */
.media-yellow-light .text-success {
  color: #fef4d8;
}

/* line 542, app/assets/stylesheets/application.css.scss */
.media-blue-light .fa-inverse {
  color: #2c80e7;
}

/* line 545, app/assets/stylesheets/application.css.scss */
.media-blue-light .text-success {
  color: #d7ecfb;
}

/* line 549, app/assets/stylesheets/application.css.scss */
.table > tbody > tr.bb-none > td {
  border-bottom: 1px solid #fff !important;
}

/* line 551, app/assets/stylesheets/application.css.scss */
.bt, .b, .ba {
  border-top: 2px solid #eee;
}

/* line 554, app/assets/stylesheets/application.css.scss */
.bt-5 {
  border-top: 5px solid #eee;
}

/* line 557, app/assets/stylesheets/application.css.scss */
.pv-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* line 561, app/assets/stylesheets/application.css.scss */
.pv-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*Doc */
/* line 567, app/assets/stylesheets/application.css.scss */
.label-1 {
  background-color: #eca65d;
}

/* line 570, app/assets/stylesheets/application.css.scss */
.label-2 {
  background-color: #949494;
}

/* line 573, app/assets/stylesheets/application.css.scss */
.label-3 {
  background-color: #5db1ec;
}

/* line 576, app/assets/stylesheets/application.css.scss */
.label-4 {
  background-color: #68c162;
}

/* line 579, app/assets/stylesheets/application.css.scss */
.label-5 {
  background-color: #d45151;
}

/* label */
/* line 583, app/assets/stylesheets/application.css.scss */
a.editable.editable-click.label-danger {
  background-color: #f05050;
}

/* line 586, app/assets/stylesheets/application.css.scss */
a.editable.editable-click.label-success {
  background-color: #27c24c;
}

/* line 589, app/assets/stylesheets/application.css.scss */
a.editable.editable-click.label-warning {
  background-color: #ff902b;
}

/* ยังไม่ได้กรอกคะแนน */
/* line 595, app/assets/stylesheets/application.css.scss */
.label-record-status-1 {
  background-color: #ffe5e5;
}

/* คะแนนเท่ากับ 0 */
/* line 599, app/assets/stylesheets/application.css.scss */
.label-record-status-2 {
  background-color: #eeeeee;
}

/* เกินคะแนนเต็ม */
/* line 603, app/assets/stylesheets/application.css.scss */
.label-record-status-3 {
  background-color: #d9d1f1;
}

/* line 607, app/assets/stylesheets/application.css.scss */
.form-group .form-check {
  margin: 1rem 0;
}

/* line 610, app/assets/stylesheets/application.css.scss */
.form-group .form-check input[type="radio"],
.form-group .form-check input[type="checkbox"] {
  width: 25px !important;
  height: 25px !important;
  vertical-align: middle !important;
}

/* line 618, app/assets/stylesheets/application.css.scss */
h3.title {
  font-size: 2rem;
  font-weight: 800;
  border-bottom: 1px solid #b8dde7;
  padding: 2rem 0;
  margin: 2rem 0;
}

/* line 626, app/assets/stylesheets/application.css.scss */
h3.title_no_border {
  font-size: 2rem;
  font-weight: 800;
  padding: 2rem 0;
  margin: 2rem 0;
}

/*Page Print */
@media print {
  /* line 636, app/assets/stylesheets/application.css.scss */
  .hidden-print, .hidden-print * {
    display: none !important;
  }
}

/* line 641, app/assets/stylesheets/application.css.scss */
.page-print hr {
  margin: 10px 0;
}

/* line 644, app/assets/stylesheets/application.css.scss */
.page-print {
  line-height: 1.4em !important;
  font-size: 14px;
}

/* line 648, app/assets/stylesheets/application.css.scss */
.page-print h1, .page-print h2, .page-print h3, .page-print h4, .page-print h5, .page-print h6 {
  margin: 3px 0 !important;
  padding: 0 !important;
  line-height: 1.4em !important;
  font-weight: 200;
}

/* line 654, app/assets/stylesheets/application.css.scss */
.page-print .header {
  font-size: 0.9em;
}

/* line 657, app/assets/stylesheets/application.css.scss */
.page-print .header h3 {
  font-size: 20px;
}

/* line 660, app/assets/stylesheets/application.css.scss */
.page-print .header p {
  margin: 1px 0 !important;
  padding: 0 !important;
}

/* line 664, app/assets/stylesheets/application.css.scss */
.page-print hr {
  margin: 10px 0;
}

/* line 667, app/assets/stylesheets/application.css.scss */
.page-print .noborder th, .page-print .noborder td {
  border: none !important;
}

/* line 670, app/assets/stylesheets/application.css.scss */
.page-print .sub-header td {
  padding: 1px 0 !important;
}

/* line 673, app/assets/stylesheets/application.css.scss */
.page-print .table > thead > tr > th {
  border-bottom-width: 3px;
}

/* line 676, app/assets/stylesheets/application.css.scss */
.page-print .panel table.bt, .page-print .panel table.b, .page-print .panel table.ba {
  border-top: 3px solid #eee;
}

/* line 679, app/assets/stylesheets/application.css.scss */
.page-print .border-color-1 {
  border-right: 10px solid #37bc9b;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #bcffef;
}

/* line 685, app/assets/stylesheets/application.css.scss */
.page-print .border-color-2 {
  border-right: 10px solid #3d45c0;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #a7eaff;
}

/* line 691, app/assets/stylesheets/application.css.scss */
.page-print .border-color-3 {
  border-right: 10px solid #9a23e5;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #d9a7ff;
}

/* line 697, app/assets/stylesheets/application.css.scss */
.page-print .border-color-4 {
  border-right: 10px solid #e5df23;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #fffca7;
}

/* line 703, app/assets/stylesheets/application.css.scss */
.page-print .border-color-5 {
  border-right: 10px solid #e523cd;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #ffa7e0;
}

/* line 710, app/assets/stylesheets/application.css.scss */
.disabled {
  background-color: #eee !important;
}

/*Button */
/* line 715, app/assets/stylesheets/application.css.scss */
.btn, div.ColVis .ColVis_Button {
  font-family: 'Kanit';
}

/* line 718, app/assets/stylesheets/application.css.scss */
.btn-xxl {
  padding: 20px;
  font-size: 2em;
  width: 100%;
}

/* Table */
/* line 725, app/assets/stylesheets/application.css.scss */
.table-sm {
  font-size: .8em;
}

/* line 728, app/assets/stylesheets/application.css.scss */
.table-sm > thead > tr > th, .table-sm > tbody > tr > td {
  padding: 2px;
  margin: 0px;
}

/* line 732, app/assets/stylesheets/application.css.scss */
.table > thead > tr > th {
  vertical-align: top;
}

/* line 735, app/assets/stylesheets/application.css.scss */
.panel > .table-responsive > .table-bordered {
  border: 1px solid #eeeeee;
}

/* Custom */
/* line 740, app/assets/stylesheets/application.css.scss */
.sidebar ul.nav li em, .sidebar ul.nav li span {
  display: table-cell;
}

/* line 743, app/assets/stylesheets/application.css.scss */
.table-bordered th, .table-bordered td, .border {
  border: 1px solid #eee;
}

/* line 746, app/assets/stylesheets/application.css.scss */
.info_header fieldset {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border: none;
}

/* line 751, app/assets/stylesheets/application.css.scss */
.panel_task {
  border-left: 7px #43d967 solid;
}

/* line 754, app/assets/stylesheets/application.css.scss */
.panel_task small {
  font-size: .8em;
}

/* line 757, app/assets/stylesheets/application.css.scss */
.panel_task h4 a {
  font-size: .8em;
  line-height: .8em;
}

/* line 761, app/assets/stylesheets/application.css.scss */
.bl_blue {
  border-left-color: #00bfff;
}

/* line 764, app/assets/stylesheets/application.css.scss */
.label-default {
  background-color: #999999;
}

/* line 769, app/assets/stylesheets/application.css.scss */
.panel-title {
  color: #666666;
}

/*Badge */
/* line 774, app/assets/stylesheets/application.css.scss */
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

/* line 774, app/assets/stylesheets/application.css.scss */
.badge:empty {
  display: none;
}

/* line 774, app/assets/stylesheets/application.css.scss */
.btn .badge, div.ColVis .ColVis_Button .badge {
  position: relative;
  top: -1px;
}

/* line 774, app/assets/stylesheets/application.css.scss */
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

/* line 774, app/assets/stylesheets/application.css.scss */
.badge-primary {
  color: #fff;
  background-color: #5d9cec;
}

/* line 774, app/assets/stylesheets/application.css.scss */
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #2f80e7;
}

/* line 774, app/assets/stylesheets/application.css.scss */
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(93, 156, 236, 0.5);
}

/* line 774, app/assets/stylesheets/application.css.scss */
.badge-secondary {
  color: #212529;
  background-color: #fff;
}

/* line 774, app/assets/stylesheets/application.css.scss */
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #212529;
  background-color: #e6e6e6;
}

/* line 774, app/assets/stylesheets/application.css.scss */
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* line 774, app/assets/stylesheets/application.css.scss */
.badge-success {
  color: #fff;
  background-color: #27c24c;
}

/* line 774, app/assets/stylesheets/application.css.scss */
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e983b;
}

/* line 774, app/assets/stylesheets/application.css.scss */
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(39, 194, 76, 0.5);
}

/* line 775, app/assets/stylesheets/application.css.scss */
.badge-info {
  color: #fff;
  background-color: #3d45c0;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #3d45c0;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(35, 183, 229, 0.5);
}

/* line 775, app/assets/stylesheets/application.css.scss */
.badge-warning {
  color: #ffffff;
  background-color: #ff902b;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #f77600;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 144, 43, 0.5);
}

/* line 775, app/assets/stylesheets/application.css.scss */
.badge-danger {
  color: #fff;
  background-color: #f05050;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #ec2121;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(240, 80, 80, 0.5);
}

/* line 775, app/assets/stylesheets/application.css.scss */
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 775, app/assets/stylesheets/application.css.scss */
.badge-dark {
  color: #fff;
  background-color: #3a3f51;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #252833;
}

/* line 775, app/assets/stylesheets/application.css.scss */
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(58, 63, 81, 0.5);
}

/* line 776, app/assets/stylesheets/application.css.scss */
.badge-grey {
  background-color: #9aa4a7;
}

/* line 779, app/assets/stylesheets/application.css.scss */
.badge-red {
  background-color: #ea7a7a;
}

/* Colors */
/* line 784, app/assets/stylesheets/application.css.scss */
.w3-amber, .w3-hover-amber:hover {
  color: #000 !important;
  background-color: #ffc107 !important;
}

/* line 785, app/assets/stylesheets/application.css.scss */
.w3-aqua, .w3-hover-aqua:hover {
  color: #000 !important;
  background-color: #00ffff !important;
}

/* line 786, app/assets/stylesheets/application.css.scss */
.w3-blue, .w3-hover-blue:hover {
  color: #fff !important;
  background-color: #6774df !important;
}

/* line 787, app/assets/stylesheets/application.css.scss */
.w3-light-blue, .w3-hover-light-blue:hover {
  color: #000 !important;
  background-color: #e8ecfa !important;
}

/* line 788, app/assets/stylesheets/application.css.scss */
.w3-brown, .w3-hover-brown:hover {
  color: #fff !important;
  background-color: #795548 !important;
}

/* line 789, app/assets/stylesheets/application.css.scss */
.w3-cyan, .w3-hover-cyan:hover {
  color: #000 !important;
  background-color: #00bcd4 !important;
}

/* line 790, app/assets/stylesheets/application.css.scss */
.w3-blue-grey, .w3-hover-blue-grey:hover, .w3-blue-gray, .w3-hover-blue-gray:hover {
  color: #fff !important;
  background-color: #607d8b !important;
}

/* line 791, app/assets/stylesheets/application.css.scss */
.w3-green, .w3-hover-green:hover {
  color: #fff !important;
  background-color: #4CAF50 !important;
}

/* line 792, app/assets/stylesheets/application.css.scss */
.w3-light-green, .w3-hover-light-green:hover {
  color: #000 !important;
  background-color: #8bc34a !important;
}

/* line 793, app/assets/stylesheets/application.css.scss */
.w3-indigo, .w3-hover-indigo:hover {
  color: #fff !important;
  background-color: #3f51b5 !important;
}

/* line 794, app/assets/stylesheets/application.css.scss */
.w3-khaki, .w3-hover-khaki:hover {
  color: #000 !important;
  background-color: #f0e68c !important;
}

/* line 795, app/assets/stylesheets/application.css.scss */
.w3-lime, .w3-hover-lime:hover {
  color: #000 !important;
  background-color: #cddc39 !important;
}

/* line 796, app/assets/stylesheets/application.css.scss */
.w3-orange, .w3-hover-orange:hover {
  color: #000 !important;
  background-color: #ff9800 !important;
}

/* line 797, app/assets/stylesheets/application.css.scss */
.w3-deep-orange, .w3-hover-deep-orange:hover {
  color: #fff !important;
  background-color: #ff5722 !important;
}

/* line 798, app/assets/stylesheets/application.css.scss */
.w3-pink, .w3-hover-pink:hover {
  color: #fff !important;
  background-color: #e91e63 !important;
}

/* line 799, app/assets/stylesheets/application.css.scss */
.w3-purple, .w3-hover-purple:hover {
  color: #fff !important;
  background-color: #9c27b0 !important;
}

/* line 800, app/assets/stylesheets/application.css.scss */
.w3-deep-purple, .w3-hover-deep-purple:hover {
  color: #fff !important;
  background-color: #673ab7 !important;
}

/* line 801, app/assets/stylesheets/application.css.scss */
.w3-red, .w3-hover-red:hover {
  color: #fff !important;
  background-color: #f44336 !important;
}

/* line 802, app/assets/stylesheets/application.css.scss */
.w3-sand, .w3-hover-sand:hover {
  color: #000 !important;
  background-color: #fdf5e6 !important;
}

/* line 803, app/assets/stylesheets/application.css.scss */
.w3-teal, .w3-hover-teal:hover {
  color: #fff !important;
  background-color: #009688 !important;
}

/* line 804, app/assets/stylesheets/application.css.scss */
.w3-yellow, .w3-hover-yellow:hover {
  color: #000 !important;
  background-color: #ffeb3b !important;
}

/* line 805, app/assets/stylesheets/application.css.scss */
.w3-white, .w3-hover-white:hover {
  color: #000 !important;
  background-color: #fff !important;
}

/* line 806, app/assets/stylesheets/application.css.scss */
.w3-black, .w3-hover-black:hover {
  color: #fff !important;
  background-color: #000 !important;
}

/* line 807, app/assets/stylesheets/application.css.scss */
.w3-grey, .w3-hover-grey:hover, .w3-gray, .w3-hover-gray:hover {
  color: #000 !important;
  background-color: #9e9e9e !important;
}

/* line 808, app/assets/stylesheets/application.css.scss */
.w3-light-grey, .w3-hover-light-grey:hover, .w3-light-gray, .w3-hover-light-gray:hover {
  color: #000 !important;
  background-color: #f1f1f1 !important;
}

/* line 809, app/assets/stylesheets/application.css.scss */
.w3-dark-grey, .w3-hover-dark-grey:hover, .w3-dark-gray, .w3-hover-dark-gray:hover {
  color: #fff !important;
  background-color: #616161 !important;
}

/* line 810, app/assets/stylesheets/application.css.scss */
.w3-pale-red, .w3-hover-pale-red:hover {
  color: #000 !important;
  background-color: #ffdddd !important;
}

/* line 811, app/assets/stylesheets/application.css.scss */
.w3-pale-green, .w3-hover-pale-green:hover {
  color: #000 !important;
  background-color: #ddffdd !important;
}

/* line 812, app/assets/stylesheets/application.css.scss */
.w3-pale-yellow, .w3-hover-pale-yellow:hover {
  color: #000 !important;
  background-color: #ffffcc !important;
}

/* line 813, app/assets/stylesheets/application.css.scss */
.w3-pale-blue, .w3-hover-pale-blue:hover {
  color: #000 !important;
  background-color: #ddffff !important;
}

/* line 814, app/assets/stylesheets/application.css.scss */
.w3-text-amber, .w3-hover-text-amber:hover {
  color: #ffc107 !important;
}

/* line 815, app/assets/stylesheets/application.css.scss */
.w3-text-aqua, .w3-hover-text-aqua:hover {
  color: #00ffff !important;
}

/* line 816, app/assets/stylesheets/application.css.scss */
.w3-text-blue, .w3-hover-text-blue:hover {
  color: #2196F3 !important;
}

/* line 817, app/assets/stylesheets/application.css.scss */
.w3-text-light-blue, .w3-hover-text-light-blue:hover {
  color: #87CEEB !important;
}

/* line 818, app/assets/stylesheets/application.css.scss */
.w3-text-brown, .w3-hover-text-brown:hover {
  color: #795548 !important;
}

/* line 819, app/assets/stylesheets/application.css.scss */
.w3-text-cyan, .w3-hover-text-cyan:hover {
  color: #00bcd4 !important;
}

/* line 820, app/assets/stylesheets/application.css.scss */
.w3-text-blue-grey, .w3-hover-text-blue-grey:hover, .w3-text-blue-gray, .w3-hover-text-blue-gray:hover {
  color: #607d8b !important;
}

/* line 821, app/assets/stylesheets/application.css.scss */
.w3-text-green, .w3-hover-text-green:hover {
  color: #4CAF50 !important;
}

/* line 822, app/assets/stylesheets/application.css.scss */
.w3-text-light-green, .w3-hover-text-light-green:hover {
  color: #8bc34a !important;
}

/* line 823, app/assets/stylesheets/application.css.scss */
.w3-text-indigo, .w3-hover-text-indigo:hover {
  color: #3f51b5 !important;
}

/* line 824, app/assets/stylesheets/application.css.scss */
.w3-text-khaki, .w3-hover-text-khaki:hover {
  color: #b4aa50 !important;
}

/* line 825, app/assets/stylesheets/application.css.scss */
.w3-text-lime, .w3-hover-text-lime:hover {
  color: #cddc39 !important;
}

/* line 826, app/assets/stylesheets/application.css.scss */
.w3-text-orange, .w3-hover-text-orange:hover {
  color: #ff9800 !important;
}

/* line 827, app/assets/stylesheets/application.css.scss */
.w3-text-deep-orange, .w3-hover-text-deep-orange:hover {
  color: #ff5722 !important;
}

/* line 828, app/assets/stylesheets/application.css.scss */
.w3-text-pink, .w3-hover-text-pink:hover {
  color: #e91e63 !important;
}

/* line 829, app/assets/stylesheets/application.css.scss */
.w3-text-purple, .w3-hover-text-purple:hover {
  color: #9c27b0 !important;
}

/* line 830, app/assets/stylesheets/application.css.scss */
.w3-text-deep-purple, .w3-hover-text-deep-purple:hover {
  color: #673ab7 !important;
}

/* line 831, app/assets/stylesheets/application.css.scss */
.w3-text-red, .w3-hover-text-red:hover {
  color: #f44336 !important;
}

/* line 832, app/assets/stylesheets/application.css.scss */
.w3-text-sand, .w3-hover-text-sand:hover {
  color: #fdf5e6 !important;
}

/* line 833, app/assets/stylesheets/application.css.scss */
.w3-text-teal, .w3-hover-text-teal:hover {
  color: #009688 !important;
}

/* line 834, app/assets/stylesheets/application.css.scss */
.w3-text-yellow, .w3-hover-text-yellow:hover {
  color: #d2be0e !important;
}

/* line 835, app/assets/stylesheets/application.css.scss */
.w3-text-white, .w3-hover-text-white:hover {
  color: #fff !important;
}

/* line 836, app/assets/stylesheets/application.css.scss */
.w3-text-black, .w3-hover-text-black:hover {
  color: #000 !important;
}

/* line 837, app/assets/stylesheets/application.css.scss */
.w3-text-grey, .w3-hover-text-grey:hover, .w3-text-gray, .w3-hover-text-gray:hover {
  color: #757575 !important;
}

/* line 838, app/assets/stylesheets/application.css.scss */
.w3-text-light-grey, .w3-hover-text-light-grey:hover, .w3-text-light-gray, .w3-hover-text-light-gray:hover {
  color: #f1f1f1 !important;
}

/* line 839, app/assets/stylesheets/application.css.scss */
.w3-text-dark-grey, .w3-hover-text-dark-grey:hover, .w3-text-dark-gray, .w3-hover-text-dark-gray:hover {
  color: #3a3a3a !important;
}

/* line 840, app/assets/stylesheets/application.css.scss */
.w3-border-amber, .w3-hover-border-amber:hover {
  border-color: #ffc107 !important;
}

/* line 841, app/assets/stylesheets/application.css.scss */
.w3-border-aqua, .w3-hover-border-aqua:hover {
  border-color: #00ffff !important;
}

/* line 842, app/assets/stylesheets/application.css.scss */
.w3-border-blue, .w3-hover-border-blue:hover {
  border-color: #2196F3 !important;
}

/* line 843, app/assets/stylesheets/application.css.scss */
.w3-border-light-blue, .w3-hover-border-light-blue:hover {
  border-color: #87CEEB !important;
}

/* line 844, app/assets/stylesheets/application.css.scss */
.w3-border-brown, .w3-hover-border-brown:hover {
  border-color: #795548 !important;
}

/* line 845, app/assets/stylesheets/application.css.scss */
.w3-border-cyan, .w3-hover-border-cyan:hover {
  border-color: #00bcd4 !important;
}

/* line 846, app/assets/stylesheets/application.css.scss */
.w3-border-blue-grey, .w3-hover-border-blue-grey:hover, .w3-border-blue-gray, .w3-hover-border-blue-gray:hover {
  border-color: #607d8b !important;
}

/* line 847, app/assets/stylesheets/application.css.scss */
.w3-border-green, .w3-hover-border-green:hover {
  border-color: #4CAF50 !important;
}

/* line 848, app/assets/stylesheets/application.css.scss */
.w3-border-light-green, .w3-hover-border-light-green:hover {
  border-color: #8bc34a !important;
}

/* line 849, app/assets/stylesheets/application.css.scss */
.w3-border-indigo, .w3-hover-border-indigo:hover {
  border-color: #3f51b5 !important;
}

/* line 850, app/assets/stylesheets/application.css.scss */
.w3-border-khaki, .w3-hover-border-khaki:hover {
  border-color: #f0e68c !important;
}

/* line 851, app/assets/stylesheets/application.css.scss */
.w3-border-lime, .w3-hover-border-lime:hover {
  border-color: #cddc39 !important;
}

/* line 852, app/assets/stylesheets/application.css.scss */
.w3-border-orange, .w3-hover-border-orange:hover {
  border-color: #ff9800 !important;
}

/* line 853, app/assets/stylesheets/application.css.scss */
.w3-border-deep-orange, .w3-hover-border-deep-orange:hover {
  border-color: #ff5722 !important;
}

/* line 854, app/assets/stylesheets/application.css.scss */
.w3-border-pink, .w3-hover-border-pink:hover {
  border-color: #e91e63 !important;
}

/* line 855, app/assets/stylesheets/application.css.scss */
.w3-border-purple, .w3-hover-border-purple:hover {
  border-color: #9c27b0 !important;
}

/* line 856, app/assets/stylesheets/application.css.scss */
.w3-border-deep-purple, .w3-hover-border-deep-purple:hover {
  border-color: #673ab7 !important;
}

/* line 857, app/assets/stylesheets/application.css.scss */
.w3-border-red, .w3-hover-border-red:hover {
  border-color: #f44336 !important;
}

/* line 858, app/assets/stylesheets/application.css.scss */
.w3-border-sand, .w3-hover-border-sand:hover {
  border-color: #fdf5e6 !important;
}

/* line 859, app/assets/stylesheets/application.css.scss */
.w3-border-teal, .w3-hover-border-teal:hover {
  border-color: #009688 !important;
}

/* line 860, app/assets/stylesheets/application.css.scss */
.w3-border-yellow, .w3-hover-border-yellow:hover {
  border-color: #ffeb3b !important;
}

/* line 861, app/assets/stylesheets/application.css.scss */
.w3-border-white, .w3-hover-border-white:hover {
  border-color: #fff !important;
}

/* line 862, app/assets/stylesheets/application.css.scss */
.w3-border-black, .w3-hover-border-black:hover {
  border-color: #000 !important;
}

/* line 863, app/assets/stylesheets/application.css.scss */
.w3-border-grey, .w3-hover-border-grey:hover, .w3-border-gray, .w3-hover-border-gray:hover {
  border-color: #9e9e9e !important;
}

/* line 864, app/assets/stylesheets/application.css.scss */
.w3-border-light-grey, .w3-hover-border-light-grey:hover, .w3-border-light-gray, .w3-hover-border-light-gray:hover {
  border-color: #f1f1f1 !important;
}

/* line 865, app/assets/stylesheets/application.css.scss */
.w3-border-dark-grey, .w3-hover-border-dark-grey:hover, .w3-border-dark-gray, .w3-hover-border-dark-gray:hover {
  border-color: #616161 !important;
}

/* line 866, app/assets/stylesheets/application.css.scss */
.w3-border-pale-red, .w3-hover-border-pale-red:hover {
  border-color: #ffe7e7 !important;
}

/* line 866, app/assets/stylesheets/application.css.scss */
.w3-border-pale-green, .w3-hover-border-pale-green:hover {
  border-color: #e7ffe7 !important;
}

/* line 867, app/assets/stylesheets/application.css.scss */
.w3-border-pale-yellow, .w3-hover-border-pale-yellow:hover {
  border-color: #ffffcc !important;
}

/* line 867, app/assets/stylesheets/application.css.scss */
.w3-border-pale-blue, .w3-hover-border-pale-blue:hover {
  border-color: #e7ffff !important;
}

/*badge */
/* line 870, app/assets/stylesheets/application.css.scss */
span.badge-2pt.badge {
  min-width: 30px;
}

/*chart */
/* line 875, app/assets/stylesheets/application.css.scss */
.pieLabelBackground {
  border-radius: 3px;
}

/* line 880, app/assets/stylesheets/application.css.scss */
.flot-pie-label {
  font-size: 14px;
}

/* line 884, app/assets/stylesheets/application.css.scss */
.label_status a {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* -- card ------ */
/* line 898, app/assets/stylesheets/application.css.scss */
.card {
  background-color: #fff;
  border: 1px solid #e3e6f0;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* line 905, app/assets/stylesheets/application.css.scss */
.card > .card-link {
  color: #333;
}

/* line 906, app/assets/stylesheets/application.css.scss */
.card > .card-link:hover {
  text-decoration: none;
}

/* line 907, app/assets/stylesheets/application.css.scss */
.card > .card-link .card-img img {
  border-radius: 6px 6px 0 0;
}

/* line 908, app/assets/stylesheets/application.css.scss */
.card .card-img {
  position: relative;
  padding: 0;
  display: table;
}

/* line 909, app/assets/stylesheets/application.css.scss */
.card .card-img .card-caption {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
}

/* line 915, app/assets/stylesheets/application.css.scss */
.card .card-body {
  /* display: table;  */
  width: 100%;
  padding: 12px;
}

/* line 920, app/assets/stylesheets/application.css.scss */
.card .card-footer {
  border-radius: 0 0 6px 6px;
  padding: 8px;
}

/* line 922, app/assets/stylesheets/application.css.scss */
.card .card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: #f8f9fc;
  border-bottom: 1px solid #e3e6f0;
}

/* line 929, app/assets/stylesheets/application.css.scss */
.card .card-left {
  position: relative;
  float: left;
  padding: 0 0 8px 0;
}

/* line 930, app/assets/stylesheets/application.css.scss */
.card .card-right {
  position: relative;
  float: left;
  padding: 8px 0 0 0;
}

/* line 931, app/assets/stylesheets/application.css.scss */
.card .card-body h1:first-child,
.card .card-body h2:first-child,
.card .card-body h3:first-child,
.card .card-body h4:first-child,
.card .card-body .h1,
.card .card-body .h2,
.card .card-body .h3,
.card .card-body .h4 {
  margin-top: 0;
}

/* line 939, app/assets/stylesheets/application.css.scss */
.card .card-body .heading {
  display: block;
}

/* line 940, app/assets/stylesheets/application.css.scss */
.card .card-body .heading:last-child {
  margin-bottom: 0;
}

/* line 942, app/assets/stylesheets/application.css.scss */
.card .card-body .lead {
  text-align: center;
}

@media (min-width: 768px) {
  /* line 945, app/assets/stylesheets/application.css.scss */
  .card .card-left {
    float: left;
    padding: 0 8px 0 0;
  }
  /* line 946, app/assets/stylesheets/application.css.scss */
  .card .card-right {
    float: left;
    padding: 0 0 0 8px;
  }
  /* line 948, app/assets/stylesheets/application.css.scss */
  .card .card-4-8 .card-left {
    width: 33.33333333%;
  }
  /* line 949, app/assets/stylesheets/application.css.scss */
  .card .card-4-8 .card-right {
    width: 66.66666667%;
  }
  /* line 951, app/assets/stylesheets/application.css.scss */
  .card .card-5-7 .card-left {
    width: 41.66666667%;
  }
  /* line 952, app/assets/stylesheets/application.css.scss */
  .card .card-5-7 .card-right {
    width: 58.33333333%;
  }
  /* line 954, app/assets/stylesheets/application.css.scss */
  .card .card-6-6 .card-left {
    width: 50%;
  }
  /* line 955, app/assets/stylesheets/application.css.scss */
  .card .card-6-6 .card-right {
    width: 50%;
  }
  /* line 957, app/assets/stylesheets/application.css.scss */
  .card .card-7-5 .card-left {
    width: 58.33333333%;
  }
  /* line 958, app/assets/stylesheets/application.css.scss */
  .card .card-7-5 .card-right {
    width: 41.66666667%;
  }
  /* line 960, app/assets/stylesheets/application.css.scss */
  .card .card-8-4 .card-left {
    width: 66.66666667%;
  }
  /* line 961, app/assets/stylesheets/application.css.scss */
  .card .card-8-4 .card-right {
    width: 33.33333333%;
  }
}

/* -- default theme ------ */
/* line 965, app/assets/stylesheets/application.css.scss */
.card-scoll {
  margin: 10px;
  border: 1px solid #e3e6f0;
  border-radius: 5px;
}

/* line 971, app/assets/stylesheets/application.css.scss */
.card-default {
  border-color: #ddd;
  background-color: #fff;
  margin-bottom: 24px;
}

/* line 976, app/assets/stylesheets/application.css.scss */
.card-default > .card-header,
.card-default > .card-footer {
  color: #333;
  background-color: #efefef;
}

/* line 979, app/assets/stylesheets/application.css.scss */
.card.bg-warning .card-header {
  background-color: #ff902c;
  border: none;
}

/* line 986, app/assets/stylesheets/application.css.scss */
.callout {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
}

/* line 992, app/assets/stylesheets/application.css.scss */
.callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 996, app/assets/stylesheets/application.css.scss */
.callout p:last-child {
  margin-bottom: 0;
}

/* line 999, app/assets/stylesheets/application.css.scss */
.callout code {
  border-radius: 3px;
}

/* line 1002, app/assets/stylesheets/application.css.scss */
.callout + .bs-callout {
  margin-top: -5px;
}

/* line 1007, app/assets/stylesheets/application.css.scss */
.callout-default {
  border-left-color: #777;
}

/* line 1009, app/assets/stylesheets/application.css.scss */
.callout-default h4 {
  color: #777;
}

/* line 1007, app/assets/stylesheets/application.css.scss */
.callout-primary {
  border-left-color: #428bca;
}

/* line 1009, app/assets/stylesheets/application.css.scss */
.callout-primary h4 {
  color: #428bca;
}

/* line 1007, app/assets/stylesheets/application.css.scss */
.callout-success {
  border-left-color: #5cb85c;
}

/* line 1009, app/assets/stylesheets/application.css.scss */
.callout-success h4 {
  color: #5cb85c;
}

/* line 1007, app/assets/stylesheets/application.css.scss */
.callout-danger {
  border-left-color: #d9534f;
}

/* line 1009, app/assets/stylesheets/application.css.scss */
.callout-danger h4 {
  color: #d9534f;
}

/* line 1007, app/assets/stylesheets/application.css.scss */
.callout-warning {
  border-left-color: #f0ad4e;
}

/* line 1009, app/assets/stylesheets/application.css.scss */
.callout-warning h4 {
  color: #f0ad4e;
}

/* line 1007, app/assets/stylesheets/application.css.scss */
.callout-info {
  border-left-color: #5bc0de;
}

/* line 1009, app/assets/stylesheets/application.css.scss */
.callout-info h4 {
  color: #5bc0de;
}

/* line 1007, app/assets/stylesheets/application.css.scss */
.callout-bdc {
  border-left-color: #29527a;
}

/* line 1009, app/assets/stylesheets/application.css.scss */
.callout-bdc h4 {
  color: #29527a;
}

/* theme dark */
/* line 1019, app/assets/stylesheets/application.css.scss */
.card-dark > .card-header, .card-dark > .card-footer {
  color: #fafbfc;
  background-color: #3a3f51;
}

/* line 1023, app/assets/stylesheets/application.css.scss */
.card-primary {
  color: #ffffff;
  background-color: #1567cb;
}

/* line 1027, app/assets/stylesheets/application.css.scss */
.card-primary > .card-header {
  color: #ffffff;
  background-color: #2d80e7;
}

/* line 1031, app/assets/stylesheets/application.css.scss */
.card-primary,
.card-primary > .card-header,
.card-primary .list-group-item {
  border: none !important;
}

/* line 1036, app/assets/stylesheets/application.css.scss */
.card-primary .list-group-item {
  border-bottom: 1px solid #2c80e7 !important;
  padding: 5px 0;
}

/* line 1040, app/assets/stylesheets/application.css.scss */
.card-primary .list-group {
  margin: 0px !important;
}

/* line 1043, app/assets/stylesheets/application.css.scss */
.card-primary .media-body {
  font-size: 0.9em !important;
}

/* line 1046, app/assets/stylesheets/application.css.scss */
.card-primary .ml-auto {
  min-width: 80px;
}

/* line 1049, app/assets/stylesheets/application.css.scss */
.card-primary .ml-auto div {
  color: #65e7b2 !important;
}

/* line 1052, app/assets/stylesheets/application.css.scss */
.card-primary .list-group-item {
  background: none !important;
  min-height: 50px;
}

/* line 1056, app/assets/stylesheets/application.css.scss */
.card-primary .media-yellow-light .text-success {
  color: #65e7b2 !important;
}

/* line 1059, app/assets/stylesheets/application.css.scss */
.card-primary .media-yellow-light .fa-inverse {
  color: #1567cb;
}

/* line 1062, app/assets/stylesheets/application.css.scss */
.card-primary .align-self-start {
  font-size: 11px;
}

/* line 1066, app/assets/stylesheets/application.css.scss */
.card-secondary {
  background-color: #fff;
}

/* line 1069, app/assets/stylesheets/application.css.scss */
.card-secondary > .card-header {
  color: #ffffff;
  background-color: #16b373;
}

/* line 1073, app/assets/stylesheets/application.css.scss */
.card-secondary,
.card-secondary > .card-header,
.card-secondary .list-group-item {
  border: none !important;
}

/* line 1079, app/assets/stylesheets/application.css.scss */
.card-warning {
  background-color: #fff;
}

/* line 1082, app/assets/stylesheets/application.css.scss */
.card-warning > .card-header {
  color: #ffffff;
  background-color: #eb7704;
}

/* line 1086, app/assets/stylesheets/application.css.scss */
.card-warning,
.card-warning > .card-header,
.card-warning .list-group-item {
  border: none !important;
}

/* line 1091, app/assets/stylesheets/application.css.scss */
.card-warning .list-group-item {
  border-top: 1px solid #eee !important;
}

/* line 1095, app/assets/stylesheets/application.css.scss */
.list-group .list-group-item {
  margin: 5px 0;
}

/* line 1098, app/assets/stylesheets/application.css.scss */
.list-group-item.list-color {
  border-left: 10px solid #12d989;
}

/* line 1103, app/assets/stylesheets/application.css.scss */
.card-default > .card-header {
  border-bottom: 1px solid #ddd;
  padding: 8px;
}

/* line 1104, app/assets/stylesheets/application.css.scss */
.card-default > .card-footer {
  border-top: 1px solid #ddd;
  padding: 8px;
}

/* line 1106, app/assets/stylesheets/application.css.scss */
.card-default > .card-img:first-child img {
  border-radius: 6px 6px 0 0;
}

/* line 1107, app/assets/stylesheets/application.css.scss */
.card-default > .card-left {
  padding-right: 4px;
}

/* line 1108, app/assets/stylesheets/application.css.scss */
.card-default > .card-right {
  padding-left: 4px;
}

/* line 1109, app/assets/stylesheets/application.css.scss */
.card-default p:last-child {
  margin-bottom: 0;
}

/* line 1110, app/assets/stylesheets/application.css.scss */
.card-default .card-caption {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

/* -- price theme ------ */
/* line 1114, app/assets/stylesheets/application.css.scss */
.card-price {
  border-color: #999;
  background-color: #ededed;
  margin-bottom: 24px;
}

/* line 1115, app/assets/stylesheets/application.css.scss */
.card-price > .card-heading,
.card-price > .card-footer {
  color: #333;
  background-color: #fdfdfd;
}

/* line 1117, app/assets/stylesheets/application.css.scss */
.card-price > .card-heading {
  border-bottom: 1px solid #ddd;
  padding: 8px;
}

/* line 1118, app/assets/stylesheets/application.css.scss */
.card-price > .card-footer {
  border-top: 1px solid #ddd;
  padding: 8px;
}

/* line 1119, app/assets/stylesheets/application.css.scss */
.card-price > .card-img:first-child img {
  border-radius: 6px 6px 0 0;
}

/* line 1120, app/assets/stylesheets/application.css.scss */
.card-price > .card-left {
  padding-right: 4px;
}

/* line 1121, app/assets/stylesheets/application.css.scss */
.card-price > .card-right {
  padding-left: 4px;
}

/* line 1122, app/assets/stylesheets/application.css.scss */
.card-price .card-caption {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

/* line 1123, app/assets/stylesheets/application.css.scss */
.card-price p:last-child {
  margin-bottom: 0;
}

/* line 1125, app/assets/stylesheets/application.css.scss */
.card-price .price {
  text-align: center;
  color: #337ab7;
  font-size: 3em;
  text-transform: uppercase;
  line-height: 0.7em;
  margin: 24px 0 16px;
}

/* line 1133, app/assets/stylesheets/application.css.scss */
.card-price .price small {
  font-size: 0.4em;
  color: #66a5da;
}

/* line 1134, app/assets/stylesheets/application.css.scss */
.card-price .details {
  list-style: none;
  margin-bottom: 24px;
  padding: 0 18px;
}

/* line 1135, app/assets/stylesheets/application.css.scss */
.card-price .details li {
  text-align: center;
  margin-bottom: 8px;
}

/* line 1136, app/assets/stylesheets/application.css.scss */
.card-price .buy-now {
  text-transform: uppercase;
}

/* line 1137, app/assets/stylesheets/application.css.scss */
.card-price table .price {
  font-size: 1.2em;
  font-weight: 700;
  text-align: left;
}

/* line 1138, app/assets/stylesheets/application.css.scss */
.card-price table .note {
  color: #666;
  font-size: 0.8em;
}

/* line 1140, app/assets/stylesheets/application.css.scss */
.ob-up {
  position: relative;
  top: -2.5em;
}

/* line 1145, app/assets/stylesheets/application.css.scss */
.shadow {
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

/* line 1148, app/assets/stylesheets/application.css.scss */
.shadow-xs {
  box-shadow: 0 0.05rem 0.5rem 0 rgba(58, 59, 69, 0.15) !important;
}

/* line 1151, app/assets/stylesheets/application.css.scss */
.btn-hilight {
  border: none !important;
  color: #fff !important;
  background-color: #16b373 !important;
  font-family: 'Kanit';
  box-shadow: 0 0.05rem 0.5rem 0 rgba(58, 59, 69, 0.3) !important;
}

/* line 1158, app/assets/stylesheets/application.css.scss */
html {
  height: 100%;
}

/* Sidebar */
/* line 1163, app/assets/stylesheets/application.css.scss */
.sidebar .bb, .sidebar .b, .sidebar .ba {
  /*border-bottom: 1px solid #303546;*/
}

/* line 1166, app/assets/stylesheets/application.css.scss */
.sidebar > .nav .label {
  display: inline-block;
}

/* line 1169, app/assets/stylesheets/application.css.scss */
.sidebar ul li.nav-heading {
  font-size: 1.1em;
  color: #dbdeea;
}

/* line 1173, app/assets/stylesheets/application.css.scss */
.sidebar > .nav > li > a > em {
  width: 30px;
  font-size: 20px;
}

/* line 1177, app/assets/stylesheets/application.css.scss */
.aside-collapsed .sidebar > .nav > li > a > em {
  font-size: 1em !important;
  display: inline-block !important;
  width: 30px;
  font-size: 20px;
}

@media only screen and (min-width: 768px) {
  /* line 1184, app/assets/stylesheets/application.css.scss */
  .wrapper > .aside .aside-inner {
    padding-top: 0px;
  }
}

/* line 1190, app/assets/stylesheets/application.css.scss */
.right-zone, .left-zone {
  width: 100%;
}

/* line 1193, app/assets/stylesheets/application.css.scss */
.right-zone > li, .left-zone > li {
  width: 100%;
  padding: 0px 0px;
}

@media (min-width: 768px) {
  /* line 1208, app/assets/stylesheets/application.css.scss */
  .right-zone, .left-zone {
    width: auto;
  }
  /* line 1213, app/assets/stylesheets/application.css.scss */
  .navbar-nav > li {
    height: 60px;
    text-align: left;
    width: auto;
    padding: 10px 0px;
  }
  /* line 1219, app/assets/stylesheets/application.css.scss */
  .navbar-nav > li > a {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/*Responsive */
/* Extra Small Devices, .visible-xs- */
@media (max-width: 767px) {
  /* line 1229, app/assets/stylesheets/application.css.scss */
  ul.left-zone.nav.navbar-nav.navbar-left.col-xs-4 {
    width: 70px;
    position: absolute;
    top: 0;
    right: 50px;
    z-index: 100;
    background: none;
  }
  /* line 1237, app/assets/stylesheets/application.css.scss */
  em.icon-bell {
    color: #ffffff;
  }
  /* line 1240, app/assets/stylesheets/application.css.scss */
  .topnavbar .navbar-header {
    background: #1c2260 !important;
  }
  /* line 1243, app/assets/stylesheets/application.css.scss */
  .pull-right {
    float: none !important;
    margin-bottom: 1em;
  }
  /* line 1247, app/assets/stylesheets/application.css.scss */
  .right-zone li, .right-zone li a {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding: 0px !important;
  }
  /* line 1252, app/assets/stylesheets/application.css.scss */
  .right-zone li .sign-in-out {
    margin-top: 10px;
  }
  /* line 1255, app/assets/stylesheets/application.css.scss */
  .right-zone.nav.navbar-nav.navbar-right.col-xs-8 {
    margin: 5px 0px;
    padding: 0px;
  }
  /* line 1259, app/assets/stylesheets/application.css.scss */
  .navbar-header .pt-15.pb-15.pr-10.visible-xs.text-white.font-modern span {
    padding-top: 10px;
    display: inline-block;
  }
}

/* Small Devices, .visible-sm- */
/* Medium Devices, .visible-md- */
/* Large Devices, .visible-lg- */
/*blank_page */
/* line 1276, app/assets/stylesheets/application.css.scss */
.blank_page .wrapper .aside {
  width: 50%;
  height: 100%;
  background: url(/../assets/brands/intro_v2_bg.svg) no-repeat #396cd8 center center;
  background-size: cover;
  display: inline-flex;
}

/* line 1283, app/assets/stylesheets/application.css.scss */
.blank_page .wrapper .aside .intro_ob {
  width: 60%;
}

/* line 1286, app/assets/stylesheets/application.css.scss */
.blank_page .wrapper section {
  margin-left: 50%;
  height: 100%;
}

/* line 1290, app/assets/stylesheets/application.css.scss */
.blank_page footer {
  padding-left: 30px;
}

@media (max-width: 767px) {
  /* line 1295, app/assets/stylesheets/application.css.scss */
  .blank_page .wrapper .aside {
    display: none;
  }
  /* line 1298, app/assets/stylesheets/application.css.scss */
  .blank_page .wrapper .aside-2 {
    text-align: center;
  }
  /* line 1301, app/assets/stylesheets/application.css.scss */
  .blank_page .wrapper .aside-2 img {
    width: 60%;
    padding: 2em 0;
  }
  /* line 1305, app/assets/stylesheets/application.css.scss */
  .blank_page .wrapper section {
    margin-left: 0px;
  }
  /* line 1308, app/assets/stylesheets/application.css.scss */
  .blank_page footer {
    margin-left: 0px;
    text-align: center;
  }
}

/*Theme */
/*color1: 3d45c0 */
/*color2: 00ff99 */
/* line 1318, app/assets/stylesheets/application.css.scss */
.text-primary {
  color: #3d45c0;
  /*color: rgba(17, 43, 74, 0.84)*/
}

/* line 1322, app/assets/stylesheets/application.css.scss */
.text-secondary {
  color: #15b373;
}

/* line 1325, app/assets/stylesheets/application.css.scss */
nav.navbar.topnavbar {
  position: fixed;
  width: 100%;
}

/* line 1329, app/assets/stylesheets/application.css.scss */
.topnavbar .nav-wrapper {
  /*background: #3d45c0!important;*/
  background: #ffffff !important;
}

/* line 1333, app/assets/stylesheets/application.css.scss */
.sidebar .nav > li > a:hover,
.sidebar .nav > li.active > a,
.sidebar .nav > li.active > a > em {
  color: #6ded99 !important;
}

/* line 1338, app/assets/stylesheets/application.css.scss */
.sidebar .nav > li.active {
  /*border-left-color: #6ded99!important;*/
  border: none !important;
}

/* line 1342, app/assets/stylesheets/application.css.scss */
.btn-primary {
  background-color: #3d45c0 !important;
}

/* line 1345, app/assets/stylesheets/application.css.scss */
.bg-primary-light-2 {
  background-color: #e3e5ff;
}

/* line 1349, app/assets/stylesheets/application.css.scss */
.bg-primary-dark2 {
  background-color: #114fba !important;
}

/* line 1352, app/assets/stylesheets/application.css.scss */
.bg-primary-dark2-border {
  background-color: #1767cb !important;
  border: 1px solid #3d45c0;
}

/* line 1356, app/assets/stylesheets/application.css.scss */
.bg-warning {
  background-color: #ff902b !important;
}

/* line 1359, app/assets/stylesheets/application.css.scss */
.btn-info {
  background-color: #00ff99 !important;
}

/* line 1362, app/assets/stylesheets/application.css.scss */
.bg-secondary {
  background-color: #15b373 !important;
  color: #ffffff;
}

/* line 1366, app/assets/stylesheets/application.css.scss */
.bg-secondary-1 {
  background-color: #6851b4 !important;
}

/* line 1369, app/assets/stylesheets/application.css.scss */
.bg-secondary-2 {
  background-color: #433082 !important;
}

/* line 1372, app/assets/stylesheets/application.css.scss */
.bg-secondary-3 {
  background-color: #515ab4 !important;
}

/* line 1375, app/assets/stylesheets/application.css.scss */
.bg-secondary-4 {
  background-color: #2c3697 !important;
}

/* line 1378, app/assets/stylesheets/application.css.scss */
.bg-secondary-5 {
  background-color: #51b4b3 !important;
}

/* line 1381, app/assets/stylesheets/application.css.scss */
.bg-secondary-6 {
  background-color: #238483 !important;
}

/* line 1384, app/assets/stylesheets/application.css.scss */
.bg-secondary-dark {
  background-color: #12d989 !important;
}

/* line 1387, app/assets/stylesheets/application.css.scss */
.bg-third {
  color: #ffffff;
  background-color: #734adc !important;
}

/* line 1391, app/assets/stylesheets/application.css.scss */
.bg-third-dark {
  background-color: #855cec !important;
}

/* line 1394, app/assets/stylesheets/application.css.scss */
.bg-fourth {
  color: #ffffff;
  background-color: #2b9fc9 !important;
}

/* line 1398, app/assets/stylesheets/application.css.scss */
.bg-fourth-dark {
  background-color: #5bc6ec !important;
}

/* line 1401, app/assets/stylesheets/application.css.scss */
.bg-none {
  background: none;
}

/* line 1405, app/assets/stylesheets/application.css.scss */
.nav-tabs > li > a {
  font-family: 'Kanit';
}

/* Dashboard */
/* line 1411, app/assets/stylesheets/application.css.scss */
.dashboards .text-uppercase.font-modern.l-height-xs, .dashboards .font-modern.l-height-xs.initialism {
  line-height: 1em;
}

/* line 1414, app/assets/stylesheets/application.css.scss */
.dashboards .h2.mt0 {
  font-size: 36px;
  margin-bottom: 0;
}

/* line 1418, app/assets/stylesheets/application.css.scss */
.dashboards .col-xs-8.pv-lg {
  padding: 10px !important;
}

/* line 1421, app/assets/stylesheets/application.css.scss */
.btn-quick-link {
  padding: 10px;
  margin: 5px 0;
  border-radius: 10px;
  border: none;
  border-bottom: 5px solid #ddd;
  width: 100%;
  display: inline-block;
  color: #fff;
  min-height: 118px;
}

/* line 1432, app/assets/stylesheets/application.css.scss */
.btn-quick-link:hover {
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.35) !important;
  color: #ffffff;
  text-decoration: none;
}

/* line 1438, app/assets/stylesheets/application.css.scss */
.wrapper > section {
  z-index: 10;
}

/* line 1441, app/assets/stylesheets/application.css.scss */
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: none;
}

/* line 1444, app/assets/stylesheets/application.css.scss */
.datetime select {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 16px;
  font-size: 15px;
  line-height: 1.528571429;
  color: #3a3f51;
  background-color: #fff;
  background-image: none;
  border: 1px solid #a7cbd6;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/* line 1460, app/assets/stylesheets/application.css.scss */
.editable-container.editable-popup {
  padding: 5px;
}

/* line 1463, app/assets/stylesheets/application.css.scss */
span.editable.editable-click,
a.editable.editable-click {
  padding: 3px 5px;
  background-color: #f1b95d;
  border-radius: 5px;
}

/* line 1469, app/assets/stylesheets/application.css.scss */
label.c-radio {
  margin: 0 15px;
}

/* line 1472, app/assets/stylesheets/application.css.scss */
.c-radio span {
  margin-left: 0px;
}

/* line 1475, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio {
  margin-right: 5px;
}

/* line 1478, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio span {
  margin: 0 !important;
  width: 30px;
  height: 30px;
  border: 0px solid #ffffff;
}

/* line 1484, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span {
  background-color: #999999 !important;
  border: 5px solid #ccc;
}

/* line 1488, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-danger {
  background-color: #f05050 !important;
}

/* line 1491, app/assets/stylesheets/application.css.scss */
.c-checkbox span, .c-radio span.bg-primary {
  background-color: #5d9cec !important;
}

/* line 1494, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-primary {
  background-color: #5d9cec !important;
}

/* line 1497, app/assets/stylesheets/application.css.scss */
.c-checkbox span, .c-radio span.bg-info {
  background-color: #3d45c0 !important;
}

/* line 1500, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-info {
  background-color: #3d45c0 !important;
}

/* line 1503, app/assets/stylesheets/application.css.scss */
.c-checkbox span, .c-radio span.bg-success {
  background-color: #27c24c !important;
}

/* line 1506, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-success {
  background-color: #27c24c !important;
}

/* line 1509, app/assets/stylesheets/application.css.scss */
.c-checkbox span {
  background-color: #999999 !important;
}

/* line 1512, app/assets/stylesheets/application.css.scss */
.c-radio span.bg-warning {
  background-color: #ff902b !important;
}

/* line 1515, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-warning {
  background-color: #ff902b !important;
}

/* line 1518, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-green {
  background-color: #37bc9b !important;
}

/* line 1521, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-pink {
  background-color: #f532e5 !important;
}

/* line 1524, app/assets/stylesheets/application.css.scss */
.c-radio-color .c-radio input[type=radio]:checked + span.bg-purple {
  background-color: #7266ba !important;
}

/* line 1527, app/assets/stylesheets/application.css.scss */
.c-radio-icon-check {
  text-align: center;
}

/* line 1530, app/assets/stylesheets/application.css.scss */
.c-radio-icon-check input[type=radio] + span {
  width: 35px;
  height: 35px;
}

/* line 1534, app/assets/stylesheets/application.css.scss */
.c-radio-icon-check input[type=radio] + span:before {
  line-height: 35px;
}

/* line 1537, app/assets/stylesheets/application.css.scss */
.btn-info {
  background-color: #0fbb76 !important;
}

/* line 1540, app/assets/stylesheets/application.css.scss */
.fc-time {
  display: none;
}

/*
select:invalid {
height: 0px !important;
opacity: 0 !important;
position: absolute !important;
display: flex !important;

}
select:invalid[multiple] {
margin-top: 15px !important;
}
*/
/* line 1556, app/assets/stylesheets/application.css.scss */
.panel-default {
  border-color: #cfdbe263;
}

/* line 1559, app/assets/stylesheets/application.css.scss */
.panel.panel-default {
  border-top-width: 0px;
}

/* line 1562, app/assets/stylesheets/application.css.scss */
.widget-subject h5 {
  min-height: 40px;
}

/* page */
/* line 1568, app/assets/stylesheets/application.css.scss */
figure.attachment.attachment--preview img {
  max-width: 100%;
  height: auto;
}

/* line 1572, app/assets/stylesheets/application.css.scss */
.classschedule_studyperiods table thead tr th {
  padding: 10px 0;
  border: 1px solid #e0e0e0;
}

/* line 1576, app/assets/stylesheets/application.css.scss */
.classschedule_studyperiods table thead tr th .bb, .classschedule_studyperiods table thead tr th .b, .classschedule_studyperiods table thead tr th .ba {
  border-bottom: 1px solid #e0e0e0;
}

/* line 1579, app/assets/stylesheets/application.css.scss */
.classschedule_studyperiods table tbody tr td {
  padding: 10px 5px;
  height: 100px;
}

/* line 1583, app/assets/stylesheets/application.css.scss */
.classschedule_studyperiods table h6 {
  font-size: 0.7em;
}

/* line 1586, app/assets/stylesheets/application.css.scss */
.classschedule_studyperiods .widget-subject h6 {
  font-size: 0.8em;
}

/* line 1589, app/assets/stylesheets/application.css.scss */
td.active {
  background-color: #12d989 !important;
}

/* line 1592, app/assets/stylesheets/application.css.scss */
.classschedule_studyperiods table tbody tr td span.text-h {
  font-size: 0.95em;
  line-height: 1.4em;
  margin-bottom: 2px;
  display: block;
}

/* line 1598, app/assets/stylesheets/application.css.scss */
.classschedule_studyperiods table tbody tr td span.text-sub {
  font-size: 0.8em;
  color: #999999;
  display: block;
  line-height: 1.2em;
  margin-top: 5px;
}

/* badge-color- */
/* line 1607, app/assets/stylesheets/application.css.scss */
.badge-color-1-, .badge-color-2-, .badge-color-3- {
  color: #fff !important;
  background-color: #555 !important;
}

/* line 1611, app/assets/stylesheets/application.css.scss */
.badge-color-1-0 {
  color: #fff !important;
  background-color: #999 !important;
}

/* line 1615, app/assets/stylesheets/application.css.scss */
.badge-color-1-1 {
  color: #fff !important;
  background-color: #beecac !important;
}

/* line 1619, app/assets/stylesheets/application.css.scss */
.badge-color-1-1_5 {
  color: #fff !important;
  background-color: #9ee283 !important;
}

/* line 1623, app/assets/stylesheets/application.css.scss */
.badge-color-1-2 {
  color: #fff !important;
  background-color: #7ed85a !important;
}

/* line 1627, app/assets/stylesheets/application.css.scss */
.badge-color-1-2_5 {
  color: #fff !important;
  background-color: #5dcf30 !important;
}

/* line 1631, app/assets/stylesheets/application.css.scss */
.badge-color-1-3 {
  color: #fff !important;
  background-color: #4ba527 !important;
}

/* line 1635, app/assets/stylesheets/application.css.scss */
.badge-color-1-3_5 {
  color: #fff !important;
  background-color: #387c1d !important;
}

/* line 1639, app/assets/stylesheets/application.css.scss */
.badge-color-1-4 {
  color: #fff !important;
  background-color: #2f6718 !important;
}

/* line 1644, app/assets/stylesheets/application.css.scss */
.badge-color-2-0 {
  color: #fff !important;
  background-color: #999 !important;
}

/* line 1648, app/assets/stylesheets/application.css.scss */
.badge-color-2-1 {
  color: #fff !important;
  background-color: #bfadeb !important;
}

/* line 1652, app/assets/stylesheets/application.css.scss */
.badge-color-2-1_5 {
  color: #fff !important;
  background-color: #9f85e0 !important;
}

/* line 1656, app/assets/stylesheets/application.css.scss */
.badge-color-2-2 {
  color: #fff !important;
  background-color: #7e5cd6 !important;
}

/* line 1660, app/assets/stylesheets/application.css.scss */
.badge-color-2-2_5 {
  color: #fff !important;
  background-color: #5e33cc !important;
}

/* line 1664, app/assets/stylesheets/application.css.scss */
.badge-color-2-3 {
  color: #fff !important;
  background-color: #4b29a3 !important;
}

/* line 1668, app/assets/stylesheets/application.css.scss */
.badge-color-2-3_5 {
  color: #fff !important;
  background-color: #391f7a !important;
}

/* line 1672, app/assets/stylesheets/application.css.scss */
.badge-color-2-4 {
  color: #fff !important;
  background-color: #2f1a66 !important;
}

/* line 1677, app/assets/stylesheets/application.css.scss */
.badge-color-3-0 {
  color: #fff !important;
  background-color: #999 !important;
}

/* line 1681, app/assets/stylesheets/application.css.scss */
.badge-color-3-1 {
  color: #fff !important;
  background-color: #a0c3f8 !important;
}

/* line 1685, app/assets/stylesheets/application.css.scss */
.badge-color-3-1_5 {
  color: #fff !important;
  background-color: #71a5f4 !important;
}

/* line 1689, app/assets/stylesheets/application.css.scss */
.badge-color-3-2 {
  color: #fff !important;
  background-color: #4187f1 !important;
}

/* line 1693, app/assets/stylesheets/application.css.scss */
.badge-color-3-2_5 {
  color: #fff !important;
  background-color: #126aed !important;
}

/* line 1697, app/assets/stylesheets/application.css.scss */
.badge-color-3-3 {
  color: #fff !important;
  background-color: #0e54be !important;
}

/* line 1701, app/assets/stylesheets/application.css.scss */
.badge-color-3-3_5 {
  color: #fff !important;
  background-color: #0b3f8e !important;
}

/* line 1705, app/assets/stylesheets/application.css.scss */
.badge-color-3-4 {
  color: #fff !important;
  background-color: #093577 !important;
}

/* alert */
/* line 1711, app/assets/stylesheets/application.css.scss */
.alert-info {
  background-color: #6774df !important;
  border-color: #6774df !important;
  color: #fff;
}

/* image */
/* line 1718, app/assets/stylesheets/application.css.scss */
.img-thumbnail.img-circle {
  padding: 0px;
}

/* content */
/* line 1723, app/assets/stylesheets/application.css.scss */
dl.dl-horizontal {
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 10px;
}

/* line 1728, app/assets/stylesheets/application.css.scss */
.dl-horizontal.dl-large dt {
  width: 500px;
}

/* table */
/* line 1733, app/assets/stylesheets/application.css.scss */
.table > tbody > tr > td {
  vertical-align: top;
}

/* line 1736, app/assets/stylesheets/application.css.scss */
.table.table-small {
  font-size: 12px;
  line-height: 1.2em;
}

/* line 1740, app/assets/stylesheets/application.css.scss */
.table.table-small > thead > tr > th,
.table.table-small > tbody > tr > td {
  padding: 2px;
}

/* line 1744, app/assets/stylesheets/application.css.scss */
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable td:last-child, table.table-bordered.dataTable td:last-child {
  border-right-width: 1px !important;
}

/* line 1747, app/assets/stylesheets/application.css.scss */
.table > caption + thead > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > th, .table > thead:first-child > tr:first-child > td {
  border-top: 1px solid #eeeeee !important;
}

/* line 1750, app/assets/stylesheets/application.css.scss */
table.table-bordered.dataTable th, table.table-bordered.dataTable td {
  border-left-width: 1px !important;
}

/* line 1753, app/assets/stylesheets/application.css.scss */
table.table-bordered.dataTable tbody th, table.table-bordered.dataTable tbody td {
  border-bottom-width: 1px !important;
}

/* Text Cloud */
/* line 1758, app/assets/stylesheets/application.css.scss */
.tag_cloud a {
  margin: 2px 5px;
  background-color: #ecf5ff;
  padding: 5px 5px;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Kanit';
}

/* line 1766, app/assets/stylesheets/application.css.scss */
.card-body.tag_cloud {
  display: table-cell;
  vertical-align: middle;
}

/* line 1770, app/assets/stylesheets/application.css.scss */
.css1 {
  font-size: 0.8em;
}

/* line 1771, app/assets/stylesheets/application.css.scss */
.css2 {
  font-size: 0.9em;
}

/* line 1772, app/assets/stylesheets/application.css.scss */
.css3 {
  font-size: 1.1em;
  line-height: 1.1em;
}

/* line 1773, app/assets/stylesheets/application.css.scss */
.css4 {
  font-size: 1.3em;
  line-height: 1.2em;
}

/* line 1774, app/assets/stylesheets/application.css.scss */
.css5 {
  font-size: 1.6em;
  line-height: 1.2em;
}

/* Responsive */
/* Extra Small Devices, .visible-xs- */
@media (max-width: 767px) {
  /* line 1779, app/assets/stylesheets/application.css.scss */
  .ob-up {
    position: relative;
    top: 0;
  }
  /* line 1783, app/assets/stylesheets/application.css.scss */
  .blank_page .wrapper .aside .intro_ob {
    width: 80%;
  }
  /* line 1786, app/assets/stylesheets/application.css.scss */
  .layout {
    padding-top: 110px;
  }
}

/* Small Devices, .visible-sm- */
@media (min-width: 768px) and (max-width: 991px) {
  /* line 1793, app/assets/stylesheets/application.css.scss */
  .ob-up {
    position: relative;
    top: 0;
  }
  /* line 1797, app/assets/stylesheets/application.css.scss */
  .blank_page .wrapper .aside .intro_ob {
    width: 80%;
  }
}

/* Medium Devices, .visible-md- */
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 1804, app/assets/stylesheets/application.css.scss */
  .ob-up {
    position: relative;
    top: 0;
  }
  /* line 1808, app/assets/stylesheets/application.css.scss */
  .blank_page .wrapper .aside .intro_ob {
    width: 80%;
  }
}

/* datatable */
/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable td, table.dataTable th {
  box-sizing: content-box;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable td.dataTables_empty, table.dataTable th.dataTables_empty {
  text-align: center;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_length select {
  width: auto;
  display: inline-block;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
  white-space: nowrap;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
  justify-content: flex-end;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
  padding-right: 30px;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead > tr > th:active, table.dataTable thead > tr > td:active {
  outline: none;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\2193";
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:after {
  opacity: 1;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
  opacity: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_scrollBody table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_scrollBody table thead .sorting:before, div.dataTables_scrollBody table thead .sorting_asc:before, div.dataTables_scrollBody table thead .sorting_desc:before, div.dataTables_scrollBody table thead .sorting:after, div.dataTables_scrollBody table thead .sorting_asc:after, div.dataTables_scrollBody table thead .sorting_desc:after {
  display: none;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_scrollBody table tbody tr:first-child th, div.dataTables_scrollBody table tbody tr:first-child td {
  border-top: none;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_scrollFoot > .dataTables_scrollFootInner {
  box-sizing: content-box;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 767px) {
  /* line 1815, app/assets/stylesheets/application.css.scss */
  div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable.table-sm > thead > tr > th {
  padding-right: 20px;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable.table-sm .sorting:before, table.dataTable.table-sm .sorting_asc:before, table.dataTable.table-sm .sorting_desc:before {
  top: 5px;
  right: 0.85em;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.dataTable.table-sm .sorting:after, table.dataTable.table-sm .sorting_asc:after, table.dataTable.table-sm .sorting_desc:after {
  top: 5px;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.table-bordered.dataTable th, table.table-bordered.dataTable td {
  border-left-width: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable td:last-child, table.table-bordered.dataTable td:last-child {
  border-right-width: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
table.table-bordered.dataTable tbody th, table.table-bordered.dataTable tbody td {
  border-bottom-width: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
  padding-left: 0;
}

/* line 1815, app/assets/stylesheets/application.css.scss */
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
  padding-right: 0;
}

/* trix */
/* line 1821, app/assets/stylesheets/application.css.scss */
.trix-button--icon-attach::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItdXBsb2FkLWNsb3VkIj48cG9seWxpbmUgcG9pbnRzPSIxNiAxNiAxMiAxMiA4IDE2Ij48L3BvbHlsaW5lPjxsaW5lIHgxPSIxMiIgeTE9IjEyIiB4Mj0iMTIiIHkyPSIyMSI+PC9saW5lPjxwYXRoIGQ9Ik0yMC4zOSAxOC4zOUE1IDUgMCAwIDAgMTggOWgtMS4yNkE4IDggMCAxIDAgMyAxNi4zIj48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iMTYgMTYgMTIgMTIgOCAxNiI+PC9wb2x5bGluZT48L3N2Zz4=);
}

/* line 1825, app/assets/stylesheets/application.css.scss */
trix-toolbar .trix-dialog--attach {
  max-width: 600px;
}

/* line 1829, app/assets/stylesheets/application.css.scss */
trix-toolbar .trix-dialog__attach-fields {
  display: flex;
  align-items: baseline;
}

/* line 1834, app/assets/stylesheets/application.css.scss */
trix-toolbar .trix-dialog__attach-fields .trix-input {
  flex: 1;
}

/* line 1838, app/assets/stylesheets/application.css.scss */
trix-toolbar .trix-dialog__attach-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

/* course_subject */
/* line 1847, app/assets/stylesheets/application.css.scss */
td.subject {
  font-weight: bold;
}

/* line 1850, app/assets/stylesheets/application.css.scss */
td.sub_subject {
  font-weight: normal !important;
  padding-left: 1.2em;
}

/* line 1854, app/assets/stylesheets/application.css.scss */
td.sub_subject:before {
  content: "- ";
}

/* สำหรับการแจ้งเตือน การไม่กรอก request choosen */
/* line 1860, app/assets/stylesheets/application.css.scss */
select.chosen-select:invalid {
  height: 0px !important;
  opacity: 0 !important;
  position: absolute !important;
  display: flex !important;
}

/* line 1867, app/assets/stylesheets/application.css.scss */
select.chosen-select[multiple]:invalid {
  margin-top: 15px !important;
}

/* end */
/* qrcode */
/* line 1875, app/assets/stylesheets/application.css.scss */
.qrcode table {
  margin: auto;
  border-width: 0;
  border-style: none;
  border-color: #0000ff;
  border-collapse: collapse;
}

/* line 1883, app/assets/stylesheets/application.css.scss */
.qrcode td {
  border-left: solid 3px #000;
  padding: 0;
  margin: 0;
  width: 0px;
  height: 3px;
}

/* line 1890, app/assets/stylesheets/application.css.scss */
.qrcode td.black {
  border-color: #000;
}

/* line 1891, app/assets/stylesheets/application.css.scss */
.qrcode td.white {
  border-color: #fff;
}

/* line 1896, app/assets/stylesheets/application.css.scss */
.selectize-dropdown-content {
  background-color: #ffffff !important;
}

/* responsive */
/* Extra Small Devices, .visible-xs- */
@media (max-width: 767px) {
  /* line 1905, app/assets/stylesheets/application.css.scss */
  body {
    font-size: 16px !important;
  }
  /* line 1908, app/assets/stylesheets/application.css.scss */
  .btn, div.ColVis .ColVis_Button {
    font-size: initial !important;
  }
  /* line 1911, app/assets/stylesheets/application.css.scss */
  h1, .h1 {
    font-size: 2rem !important;
  }
  /* line 1914, app/assets/stylesheets/application.css.scss */
  h2, .h2 {
    font-size: 1.8em !important;
  }
  /* line 1917, app/assets/stylesheets/application.css.scss */
  h3, .h3 {
    font-size: 1.4em !important;
  }
  /* line 1920, app/assets/stylesheets/application.css.scss */
  h4, .h4 {
    font-size: 1.2em !important;
  }
  /* line 1923, app/assets/stylesheets/application.css.scss */
  h5, .h5 {
    font-size: 1em !important;
  }
  /* line 1926, app/assets/stylesheets/application.css.scss */
  h6, .h6 {
    font-size: 0.85em !important;
  }
}

/* Small Devices, .visible-sm- */
/* Medium Devices, .visible-md- */
/* Large Devices, .visible-lg- */
/* end responsive */
