/*!
 * FullCalendar v3.5.1 Stylesheet
 * Docs & License: https://fullcalendar.io/
 * (c) 2017 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;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  /*
  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;
    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: "\02039";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
  }
  
  .fc-icon-right-single-arrow:after {
    content: "\0203A";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
  }
  
  .fc-icon-left-double-arrow:after {
    content: "\000AB";
    font-size: 160%;
    top: -7%;
  }
  
  .fc-icon-right-double-arrow:after {
    content: "\000BB";
    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: "\000D7";
    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;
    /* undo built-in padding */
  }
  
  /* 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;
  }
  
  /* 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: "\000A0-\000A0";
    /* 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;
  }
  
  /*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
  .noUi-target, .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    touch-action: none;
    user-select: none;
    box-sizing: border-box;
  }
  
  .noUi-target {
    position: relative;
    direction: ltr;
  }
  
  .noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  
  .noUi-connect {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
  }
  
  .noUi-origin {
    position: absolute;
    height: 0;
    width: 0;
  }
  
  .noUi-handle {
    position: relative;
    z-index: 1;
  }
  
  .noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
    transition: top .3s,right .3s,bottom .3s,left .3s;
  }
  
  .noUi-state-drag * {
    cursor: inherit !important;
  }
  
  .noUi-base, .noUi-handle {
    transform: translate3d(0, 0, 0);
  }
  
  .noUi-horizontal {
    height: 18px;
  }
  
  .noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    left: -17px;
    top: -6px;
  }
  
  .noUi-vertical {
    width: 18px;
  }
  
  .noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px;
  }
  
  .noUi-target {
    background: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB;
  }
  
  .noUi-connect {
    background: #3FB8AF;
    box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
    transition: background 450ms;
  }
  
  .noUi-draggable {
    cursor: ew-resize;
  }
  
  .noUi-vertical .noUi-draggable {
    cursor: ns-resize;
  }
  
  .noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB;
  }
  
  .noUi-active {
    box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB;
  }
  
  .noUi-handle:after, .noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #E8E7E6;
    left: 14px;
    top: 6px;
  }
  
  .noUi-handle:after {
    left: 17px;
  }
  
  .noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
  }
  
  .noUi-vertical .noUi-handle:after {
    top: 17px;
  }
  
  [disabled] .noUi-connect {
    background: #B8B8B8;
  }
  
  [disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
    cursor: not-allowed;
  }
  
  .noUi-pips, .noUi-pips * {
    box-sizing: border-box;
  }
  
  .noUi-pips {
    position: absolute;
    color: #999;
  }
  
  .noUi-value {
    position: absolute;
    text-align: center;
  }
  
  .noUi-value-sub {
    color: #ccc;
    font-size: 10px;
  }
  
  .noUi-marker {
    position: absolute;
    background: #CCC;
  }
  
  .noUi-marker-large, .noUi-marker-sub {
    background: #AAA;
  }
  
  .noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
  }
  
  .noUi-value-horizontal {
    transform: translate3d(-50%, 50%, 0);
  }
  
  .noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
  }
  
  .noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
  }
  
  .noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
  }
  
  .noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
  }
  
  .noUi-value-vertical {
    transform: translate3d(0, 50%, 0);
    padding-left: 25px;
  }
  
  .noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
  }
  
  .noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
  }
  
  .noUi-marker-vertical.noUi-marker-large {
    width: 15px;
  }
  
  .noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
  }
  
  .noUi-horizontal .noUi-tooltip {
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
  }
  
  .noUi-vertical .noUi-tooltip {
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
  }
  
  @charset "UTF-8";
  /*!
   * Bootstrap v3.3.7 (http://getbootstrap.com)
   * Copyright 2011-2015 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 */
  html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    margin: 0;
  }
  
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  menu,
  nav,
  section,
  summary {
    display: block;
  }
  
  audio,
  canvas,
  progress,
  video {
    display: inline-block;
    vertical-align: baseline;
  }
  
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  
  [hidden],
  template {
    display: none;
  }
  
  a {
    background-color: transparent;
  }
  
  a:active,
  a:hover {
    outline: 0;
  }
  
  abbr[title] {
    border-bottom: 1px dotted;
  }
  
  b,
  strong {
    font-weight: bold;
  }
  
  dfn {
    font-style: italic;
  }
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  mark {
    background: #ff0;
    color: #000;
  }
  
  small {
    font-size: 80%;
  }
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sup {
    top: -0.5em;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  img {
    border: 0;
  }
  
  svg:not(:root) {
    overflow: hidden;
  }
  
  figure {
    margin: 1em 40px;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
  }
  
  pre {
    overflow: auto;
  }
  
  code,
  kbd,
  pre,
  samp {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  
  button,
  input,
  optgroup,
  select,
  textarea {
    color: inherit;
    font: inherit;
    margin: 0;
  }
  
  button {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  button,
  html input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
  }
  
  button[disabled],
  html input[disabled] {
    cursor: default;
  }
  
  button::-moz-focus-inner,
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  
  input {
    line-height: normal;
  }
  
  input[type="checkbox"],
  input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
  }
  
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
  }
  
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  }
  
  legend {
    border: 0;
    padding: 0;
  }
  
  textarea {
    overflow: auto;
  }
  
  optgroup {
    font-weight: bold;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  td,
  th {
    padding: 0;
  }
  
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/build//css/main-d3053fb0c1.css */
  @media print {
    *,
    *:before,
    *:after {
      background: transparent !important;
      color: #000 !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }
    a,
    a:visited {
      text-decoration: underline;
    }
    a[href]:after {
      content: " (" attr(href) ")";
    }
    abbr[title]:after {
      content: " (" attr(title) ")";
    }
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
      content: "";
    }
    pre,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
    }
    thead {
      display: table-header-group;
    }
    tr,
    img {
      page-break-inside: avoid;
    }
    img {
      max-width: 100% !important;
    }
    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3;
    }
    h2,
    h3 {
      page-break-after: avoid;
    }
    .navbar {
      display: none;
    }
    .btn > .caret,
    .dropup > .btn > .caret {
      border-top-color: #000 !important;
    }
    .label {
      border: 1px solid #000;
    }
    .table {
      border-collapse: collapse !important;
    }
    .table td,
    .table th {
      background-color: #fff !important;
    }
    .table-bordered th,
    .table-bordered td {
      border: 1px solid #ddd !important;
    }
  }
  
  @font-face {
    font-family: 'Glyphicons Halflings';
    src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
    src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
  }
  
  .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;
  }
  
  .glyphicon-asterisk:before {
    content: "\002a";
  }
  
  .glyphicon-plus:before {
    content: "\002b";
  }
  
  .glyphicon-euro:before,
  .glyphicon-eur:before {
    content: "\20ac";
  }
  
  .glyphicon-minus:before {
    content: "\2212";
  }
  
  .glyphicon-cloud:before {
    content: "\2601";
  }
  
  .glyphicon-envelope:before {
    content: "\2709";
  }
  
  .glyphicon-pencil:before {
    content: "\270f";
  }
  
  .glyphicon-glass:before {
    content: "\e001";
  }
  
  .glyphicon-music:before {
    content: "\e002";
  }
  
  .glyphicon-search:before {
    content: "\e003";
  }
  
  .glyphicon-heart:before {
    content: "\e005";
  }
  
  .glyphicon-star:before {
    content: "\e006";
  }
  
  .glyphicon-star-empty:before {
    content: "\e007";
  }
  
  .glyphicon-user:before {
    content: "\e008";
  }
  
  .glyphicon-film:before {
    content: "\e009";
  }
  
  .glyphicon-th-large:before {
    content: "\e010";
  }
  
  .glyphicon-th:before {
    content: "\e011";
  }
  
  .glyphicon-th-list:before {
    content: "\e012";
  }
  
  .glyphicon-ok:before {
    content: "\e013";
  }
  
  .glyphicon-remove:before {
    content: "\e014";
  }
  
  .glyphicon-zoom-in:before {
    content: "\e015";
  }
  
  .glyphicon-zoom-out:before {
    content: "\e016";
  }
  
  .glyphicon-off:before {
    content: "\e017";
  }
  
  .glyphicon-signal:before {
    content: "\e018";
  }
  
  .glyphicon-cog:before {
    content: "\e019";
  }
  
  .glyphicon-trash:before {
    content: "\e020";
  }
  
  .glyphicon-home:before {
    content: "\e021";
  }
  
  .glyphicon-file:before {
    content: "\e022";
  }
  
  .glyphicon-time:before {
    content: "\e023";
  }
  
  .glyphicon-road:before {
    content: "\e024";
  }
  
  .glyphicon-download-alt:before {
    content: "\e025";
  }
  
  .glyphicon-download:before {
    content: "\e026";
  }
  
  .glyphicon-upload:before {
    content: "\e027";
  }
  
  .glyphicon-inbox:before {
    content: "\e028";
  }
  
  .glyphicon-play-circle:before {
    content: "\e029";
  }
  
  .glyphicon-repeat:before {
    content: "\e030";
  }
  
  .glyphicon-refresh:before {
    content: "\e031";
  }
  
  .glyphicon-list-alt:before {
    content: "\e032";
  }
  
  .glyphicon-lock:before {
    content: "\e033";
  }
  
  .glyphicon-flag:before {
    content: "\e034";
  }
  
  .glyphicon-headphones:before {
    content: "\e035";
  }
  
  .glyphicon-volume-off:before {
    content: "\e036";
  }
  
  .glyphicon-volume-down:before {
    content: "\e037";
  }
  
  .glyphicon-volume-up:before {
    content: "\e038";
  }
  
  .glyphicon-qrcode:before {
    content: "\e039";
  }
  
  .glyphicon-barcode:before {
    content: "\e040";
  }
  
  .glyphicon-tag:before {
    content: "\e041";
  }
  
  .glyphicon-tags:before {
    content: "\e042";
  }
  
  .glyphicon-book:before {
    content: "\e043";
  }
  
  .glyphicon-bookmark:before {
    content: "\e044";
  }
  
  .glyphicon-print:before {
    content: "\e045";
  }
  
  .glyphicon-camera:before {
    content: "\e046";
  }
  
  .glyphicon-font:before {
    content: "\e047";
  }
  
  .glyphicon-bold:before {
    content: "\e048";
  }
  
  .glyphicon-italic:before {
    content: "\e049";
  }
  
  .glyphicon-text-height:before {
    content: "\e050";
  }
  
  .glyphicon-text-width:before {
    content: "\e051";
  }
  
  .glyphicon-align-left:before {
    content: "\e052";
  }
  
  .glyphicon-align-center:before {
    content: "\e053";
  }
  
  .glyphicon-align-right:before {
    content: "\e054";
  }
  
  .glyphicon-align-justify:before {
    content: "\e055";
  }
  
  .glyphicon-list:before {
    content: "\e056";
  }
  
  .glyphicon-indent-left:before {
    content: "\e057";
  }
  
  .glyphicon-indent-right:before {
    content: "\e058";
  }
  
  .glyphicon-facetime-video:before {
    content: "\e059";
  }
  
  .glyphicon-picture:before {
    content: "\e060";
  }
  
  .glyphicon-map-marker:before {
    content: "\e062";
  }
  
  .glyphicon-adjust:before {
    content: "\e063";
  }
  
  .glyphicon-tint:before {
    content: "\e064";
  }
  
  .glyphicon-edit:before {
    content: "\e065";
  }
  
  .glyphicon-share:before {
    content: "\e066";
  }
  
  .glyphicon-check:before {
    content: "\e067";
  }
  
  .glyphicon-move:before {
    content: "\e068";
  }
  
  .glyphicon-step-backward:before {
    content: "\e069";
  }
  
  .glyphicon-fast-backward:before {
    content: "\e070";
  }
  
  .glyphicon-backward:before {
    content: "\e071";
  }
  
  .glyphicon-play:before {
    content: "\e072";
  }
  
  .glyphicon-pause:before {
    content: "\e073";
  }
  
  .glyphicon-stop:before {
    content: "\e074";
  }
  
  .glyphicon-forward:before {
    content: "\e075";
  }
  
  .glyphicon-fast-forward:before {
    content: "\e076";
  }
  
  .glyphicon-step-forward:before {
    content: "\e077";
  }
  
  .glyphicon-eject:before {
    content: "\e078";
  }
  
  .glyphicon-chevron-left:before {
    content: "\e079";
  }
  
  .glyphicon-chevron-right:before {
    content: "\e080";
  }
  
  .glyphicon-plus-sign:before {
    content: "\e081";
  }
  
  .glyphicon-minus-sign:before {
    content: "\e082";
  }
  
  .glyphicon-remove-sign:before {
    content: "\e083";
  }
  
  .glyphicon-ok-sign:before {
    content: "\e084";
  }
  
  .glyphicon-question-sign:before {
    content: "\e085";
  }
  
  .glyphicon-info-sign:before {
    content: "\e086";
  }
  
  .glyphicon-screenshot:before {
    content: "\e087";
  }
  
  .glyphicon-remove-circle:before {
    content: "\e088";
  }
  
  .glyphicon-ok-circle:before {
    content: "\e089";
  }
  
  .glyphicon-ban-circle:before {
    content: "\e090";
  }
  
  .glyphicon-arrow-left:before {
    content: "\e091";
  }
  
  .glyphicon-arrow-right:before {
    content: "\e092";
  }
  
  .glyphicon-arrow-up:before {
    content: "\e093";
  }
  
  .glyphicon-arrow-down:before {
    content: "\e094";
  }
  
  .glyphicon-share-alt:before {
    content: "\e095";
  }
  
  .glyphicon-resize-full:before {
    content: "\e096";
  }
  
  .glyphicon-resize-small:before {
    content: "\e097";
  }
  
  .glyphicon-exclamation-sign:before {
    content: "\e101";
  }
  
  .glyphicon-gift:before {
    content: "\e102";
  }
  
  .glyphicon-leaf:before {
    content: "\e103";
  }
  
  .glyphicon-fire:before {
    content: "\e104";
  }
  
  .glyphicon-eye-open:before {
    content: "\e105";
  }
  
  .glyphicon-eye-close:before {
    content: "\e106";
  }
  
  .glyphicon-warning-sign:before {
    content: "\e107";
  }
  
  .glyphicon-plane:before {
    content: "\e108";
  }
  
  .glyphicon-calendar:before {
    content: "\e109";
  }
  
  .glyphicon-random:before {
    content: "\e110";
  }
  
  .glyphicon-comment:before {
    content: "\e111";
  }
  
  .glyphicon-magnet:before {
    content: "\e112";
  }
  
  .glyphicon-chevron-up:before {
    content: "\e113";
  }
  
  .glyphicon-chevron-down:before {
    content: "\e114";
  }
  
  .glyphicon-retweet:before {
    content: "\e115";
  }
  
  .glyphicon-shopping-cart:before {
    content: "\e116";
  }
  
  .glyphicon-folder-close:before {
    content: "\e117";
  }
  
  .glyphicon-folder-open:before {
    content: "\e118";
  }
  
  .glyphicon-resize-vertical:before {
    content: "\e119";
  }
  
  .glyphicon-resize-horizontal:before {
    content: "\e120";
  }
  
  .glyphicon-hdd:before {
    content: "\e121";
  }
  
  .glyphicon-bullhorn:before {
    content: "\e122";
  }
  
  .glyphicon-bell:before {
    content: "\e123";
  }
  
  .glyphicon-certificate:before {
    content: "\e124";
  }
  
  .glyphicon-thumbs-up:before {
    content: "\e125";
  }
  
  .glyphicon-thumbs-down:before {
    content: "\e126";
  }
  
  .glyphicon-hand-right:before {
    content: "\e127";
  }
  
  .glyphicon-hand-left:before {
    content: "\e128";
  }
  
  .glyphicon-hand-up:before {
    content: "\e129";
  }
  
  .glyphicon-hand-down:before {
    content: "\e130";
  }
  
  .glyphicon-circle-arrow-right:before {
    content: "\e131";
  }
  
  .glyphicon-circle-arrow-left:before {
    content: "\e132";
  }
  
  .glyphicon-circle-arrow-up:before {
    content: "\e133";
  }
  
  .glyphicon-circle-arrow-down:before {
    content: "\e134";
  }
  
  .glyphicon-globe:before {
    content: "\e135";
  }
  
  .glyphicon-wrench:before {
    content: "\e136";
  }
  
  .glyphicon-tasks:before {
    content: "\e137";
  }
  
  .glyphicon-filter:before {
    content: "\e138";
  }
  
  .glyphicon-briefcase:before {
    content: "\e139";
  }
  
  .glyphicon-fullscreen:before {
    content: "\e140";
  }
  
  .glyphicon-dashboard:before {
    content: "\e141";
  }
  
  .glyphicon-paperclip:before {
    content: "\e142";
  }
  
  .glyphicon-heart-empty:before {
    content: "\e143";
  }
  
  .glyphicon-link:before {
    content: "\e144";
  }
  
  .glyphicon-phone:before {
    content: "\e145";
  }
  
  .glyphicon-pushpin:before {
    content: "\e146";
  }
  
  .glyphicon-usd:before {
    content: "\e148";
  }
  
  .glyphicon-gbp:before {
    content: "\e149";
  }
  
  .glyphicon-sort:before {
    content: "\e150";
  }
  
  .glyphicon-sort-by-alphabet:before {
    content: "\e151";
  }
  
  .glyphicon-sort-by-alphabet-alt:before {
    content: "\e152";
  }
  
  .glyphicon-sort-by-order:before {
    content: "\e153";
  }
  
  .glyphicon-sort-by-order-alt:before {
    content: "\e154";
  }
  
  .glyphicon-sort-by-attributes:before {
    content: "\e155";
  }
  
  .glyphicon-sort-by-attributes-alt:before {
    content: "\e156";
  }
  
  .glyphicon-unchecked:before {
    content: "\e157";
  }
  
  .glyphicon-expand:before {
    content: "\e158";
  }
  
  .glyphicon-collapse-down:before {
    content: "\e159";
  }
  
  .glyphicon-collapse-up:before {
    content: "\e160";
  }
  
  .glyphicon-log-in:before {
    content: "\e161";
  }
  
  .glyphicon-flash:before {
    content: "\e162";
  }
  
  .glyphicon-log-out:before {
    content: "\e163";
  }
  
  .glyphicon-new-window:before {
    content: "\e164";
  }
  
  .glyphicon-record:before {
    content: "\e165";
  }
  
  .glyphicon-save:before {
    content: "\e166";
  }
  
  .glyphicon-open:before {
    content: "\e167";
  }
  
  .glyphicon-saved:before {
    content: "\e168";
  }
  
  .glyphicon-import:before {
    content: "\e169";
  }
  
  .glyphicon-export:before {
    content: "\e170";
  }
  
  .glyphicon-send:before {
    content: "\e171";
  }
  
  .glyphicon-floppy-disk:before {
    content: "\e172";
  }
  
  .glyphicon-floppy-saved:before {
    content: "\e173";
  }
  
  .glyphicon-floppy-remove:before {
    content: "\e174";
  }
  
  .glyphicon-floppy-save:before {
    content: "\e175";
  }
  
  .glyphicon-floppy-open:before {
    content: "\e176";
  }
  
  .glyphicon-credit-card:before {
    content: "\e177";
  }
  
  .glyphicon-transfer:before {
    content: "\e178";
  }
  
  .glyphicon-cutlery:before {
    content: "\e179";
  }
  
  .glyphicon-header:before {
    content: "\e180";
  }
  
  .glyphicon-compressed:before {
    content: "\e181";
  }
  
  .glyphicon-earphone:before {
    content: "\e182";
  }
  
  .glyphicon-phone-alt:before {
    content: "\e183";
  }
  
  .glyphicon-tower:before {
    content: "\e184";
  }
  
  .glyphicon-stats:before {
    content: "\e185";
  }
  
  .glyphicon-sd-video:before {
    content: "\e186";
  }
  
  .glyphicon-hd-video:before {
    content: "\e187";
  }
  
  .glyphicon-subtitles:before {
    content: "\e188";
  }
  
  .glyphicon-sound-stereo:before {
    content: "\e189";
  }
  
  .glyphicon-sound-dolby:before {
    content: "\e190";
  }
  
  .glyphicon-sound-5-1:before {
    content: "\e191";
  }
  
  .glyphicon-sound-6-1:before {
    content: "\e192";
  }
  
  .glyphicon-sound-7-1:before {
    content: "\e193";
  }
  
  .glyphicon-copyright-mark:before {
    content: "\e194";
  }
  
  .glyphicon-registration-mark:before {
    content: "\e195";
  }
  
  .glyphicon-cloud-download:before {
    content: "\e197";
  }
  
  .glyphicon-cloud-upload:before {
    content: "\e198";
  }
  
  .glyphicon-tree-conifer:before {
    content: "\e199";
  }
  
  .glyphicon-tree-deciduous:before {
    content: "\e200";
  }
  
  .glyphicon-cd:before {
    content: "\e201";
  }
  
  .glyphicon-save-file:before {
    content: "\e202";
  }
  
  .glyphicon-open-file:before {
    content: "\e203";
  }
  
  .glyphicon-level-up:before {
    content: "\e204";
  }
  
  .glyphicon-copy:before {
    content: "\e205";
  }
  
  .glyphicon-paste:before {
    content: "\e206";
  }
  
  .glyphicon-alert:before {
    content: "\e209";
  }
  
  .glyphicon-equalizer:before {
    content: "\e210";
  }
  
  .glyphicon-king:before {
    content: "\e211";
  }
  
  .glyphicon-queen:before {
    content: "\e212";
  }
  
  .glyphicon-pawn:before {
    content: "\e213";
  }
  
  .glyphicon-bishop:before {
    content: "\e214";
  }
  
  .glyphicon-knight:before {
    content: "\e215";
  }
  
  .glyphicon-baby-formula:before {
    content: "\e216";
  }
  
  .glyphicon-tent:before {
    content: "\26fa";
  }
  
  .glyphicon-blackboard:before {
    content: "\e218";
  }
  
  .glyphicon-bed:before {
    content: "\e219";
  }
  
  .glyphicon-apple:before {
    content: "\f8ff";
  }
  
  .glyphicon-erase:before {
    content: "\e221";
  }
  
  .glyphicon-hourglass:before {
    content: "\231b";
  }
  
  .glyphicon-lamp:before {
    content: "\e223";
  }
  
  .glyphicon-duplicate:before {
    content: "\e224";
  }
  
  .glyphicon-piggy-bank:before {
    content: "\e225";
  }
  
  .glyphicon-scissors:before {
    content: "\e226";
  }
  
  .glyphicon-bitcoin:before {
    content: "\e227";
  }
  
  .glyphicon-btc:before {
    content: "\e227";
  }
  
  .glyphicon-xbt:before {
    content: "\e227";
  }
  
  .glyphicon-yen:before {
    content: "\00a5";
  }
  
  .glyphicon-jpy:before {
    content: "\00a5";
  }
  
  .glyphicon-ruble:before {
    content: "\20bd";
  }
  
  .glyphicon-rub:before {
    content: "\20bd";
  }
  
  .glyphicon-scale:before {
    content: "\e230";
  }
  
  .glyphicon-ice-lolly:before {
    content: "\e231";
  }
  
  .glyphicon-ice-lolly-tasted:before {
    content: "\e232";
  }
  
  .glyphicon-education:before {
    content: "\e233";
  }
  
  .glyphicon-option-horizontal:before {
    content: "\e234";
  }
  
  .glyphicon-option-vertical:before {
    content: "\e235";
  }
  
  .glyphicon-menu-hamburger:before {
    content: "\e236";
  }
  
  .glyphicon-modal-window:before {
    content: "\e237";
  }
  
  .glyphicon-oil:before {
    content: "\e238";
  }
  
  .glyphicon-grain:before {
    content: "\e239";
  }
  
  .glyphicon-sunglasses:before {
    content: "\e240";
  }
  
  .glyphicon-text-size:before {
    content: "\e241";
  }
  
  .glyphicon-text-color:before {
    content: "\e242";
  }
  
  .glyphicon-text-background:before {
    content: "\e243";
  }
  
  .glyphicon-object-align-top:before {
    content: "\e244";
  }
  
  .glyphicon-object-align-bottom:before {
    content: "\e245";
  }
  
  .glyphicon-object-align-horizontal:before {
    content: "\e246";
  }
  
  .glyphicon-object-align-left:before {
    content: "\e247";
  }
  
  .glyphicon-object-align-vertical:before {
    content: "\e248";
  }
  
  .glyphicon-object-align-right:before {
    content: "\e249";
  }
  
  .glyphicon-triangle-right:before {
    content: "\e250";
  }
  
  .glyphicon-triangle-left:before {
    content: "\e251";
  }
  
  .glyphicon-triangle-bottom:before {
    content: "\e252";
  }
  
  .glyphicon-triangle-top:before {
    content: "\e253";
  }
  
  .glyphicon-console:before {
    content: "\e254";
  }
  
  .glyphicon-superscript:before {
    content: "\e255";
  }
  
  .glyphicon-subscript:before {
    content: "\e256";
  }
  
  .glyphicon-menu-left:before {
    content: "\e257";
  }
  
  .glyphicon-menu-right:before {
    content: "\e258";
  }
  
  .glyphicon-menu-down:before {
    content: "\e259";
  }
  
  .glyphicon-menu-up:before {
    content: "\e260";
  }
  
  * {
    box-sizing: border-box;
  }
  
  *:before,
  *:after {
    box-sizing: border-box;
  }
  
  html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  body {
    font-family: "poppins";
    font-size: 16px;
    line-height: 1.428571429;
    color: #656d78;
    background-color: #fff;
  }
  
  input,
  button,
  select,
  textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  a {
    color: #0fccd8;
    text-decoration: none;
  }
  
  a:hover, a:focus {
    color: #0badb7;
    text-decoration: none;
  }
  
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
  }
  
  figure {
    margin: 0;
  }
  
  img {
    vertical-align: middle;
  }
  
  .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  .img-rounded {
    border-radius: 6px;
  }
  
  .img-thumbnail {
    padding: 4px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
  }
  
  .img-circle {
    border-radius: 50%;
  }
  
  hr {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 0;
    border-top: 1px solid #f8f8f8;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  .sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
  }
  
  [role="button"] {
    cursor: pointer;
  }
  
  h1, h2, h3, h4, h5, h6,
  .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 600;
    line-height: 1.266666666;
    color: #363b42;
  }
  
  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: #656d78;
  }
  
  h1, .h1,
  h2, .h2,
  h3, .h3 {
    margin-top: 22px;
    margin-bottom: 11px;
  }
  
  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%;
  }
  
  h4, .h4,
  h5, .h5,
  h6, .h6 {
    margin-top: 11px;
    margin-bottom: 11px;
  }
  
  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%;
  }
  
  h1, .h1 {
    font-size: 36px;
  }
  
  h2, .h2 {
    font-size: 24px;
  }
  
  h3, .h3 {
    font-size: 22px;
  }
  
  h4, .h4 {
    font-size: 20px;
  }
  
  h5, .h5 {
    font-size: 18px;
  }
  
  h6, .h6 {
    font-size: 16px;
  }
  
  p {
    margin: 0 0 11px;
  }
  
  .lead {
    margin-bottom: 22px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
  }
  
  @media (min-width: 768px) {
    .lead {
      font-size: 24px;
    }
  }
  
  small,
  .small {
    font-size: 87%;
  }
  
  mark,
  .mark {
    background-color: #fcf8e3;
    padding: .2em;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-center, .ip-hero-section .container .iphs-content,
  .ip-hero-section .container-fluid .iphs-content, .page-bottom-sec {
    text-align: center;
  }
  
  .text-justify {
    text-align: justify;
  }
  
  .text-nowrap {
    white-space: nowrap;
  }
  
  .text-lowercase {
    text-transform: lowercase;
  }
  
  .text-uppercase, .initialism {
    text-transform: uppercase;
  }
  
  .text-capitalize {
    text-transform: capitalize;
  }
  
  .text-muted {
    color: #656d78;
  }
  
  .text-primary {
    color: #0fccd8;
  }
  
  a.text-primary:hover,
  a.text-primary:focus {
    color: #0c9fa8;
  }
  
  .text-success {
    color: #3c763d;
  }
  
  a.text-success:hover,
  a.text-success:focus {
    color: #2b542c;
  }
  
  .text-info {
    color: #31708f;
  }
  
  a.text-info:hover,
  a.text-info:focus {
    color: #245269;
  }
  
  .text-warning {
    color: #8a6d3b;
  }
  
  a.text-warning:hover,
  a.text-warning:focus {
    color: #66512c;
  }
  
  .text-danger {
    color: #a94442;
  }
  
  a.text-danger:hover,
  a.text-danger:focus {
    color: #843534;
  }
  
  .bg-primary {
    color: #fff;
  }
  
  .bg-primary {
    background-color: #0fccd8;
  }
  
  a.bg-primary:hover,
  a.bg-primary:focus {
    background-color: #0c9fa8;
  }
  
  .bg-success {
    background-color: #dff0d8;
  }
  
  a.bg-success:hover,
  a.bg-success:focus {
    background-color: #c1e2b3;
  }
  
  .bg-info {
    background-color: #d9edf7;
  }
  
  a.bg-info:hover,
  a.bg-info:focus {
    background-color: #afd9ee;
  }
  
  .bg-warning {
    background-color: #fcf8e3;
  }
  
  a.bg-warning:hover,
  a.bg-warning:focus {
    background-color: #f7ecb5;
  }
  
  .bg-danger {
    background-color: #f2dede;
  }
  
  a.bg-danger:hover,
  a.bg-danger:focus {
    background-color: #e4b9b9;
  }
  
  .page-header {
    padding-bottom: 10px;
    margin: 44px 0 22px;
    border-bottom: 1px solid #f8f8f8;
  }
  
  ul,
  ol {
    margin-top: 0;
    margin-bottom: 11px;
  }
  
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0;
  }
  
  .list-unstyled {
    padding-left: 0;
    list-style: none;
  }
  
  .list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
  }
  
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  dl {
    margin-top: 0;
    margin-bottom: 22px;
  }
  
  dt,
  dd {
    line-height: 1.428571429;
  }
  
  dt {
    font-weight: bold;
  }
  
  dd {
    margin-left: 0;
  }
  
  .dl-horizontal dd:before, .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  
  .dl-horizontal dd:after {
    clear: both;
  }
  
  @media (min-width: 768px) {
    .dl-horizontal dt {
      float: left;
      width: 160px;
      clear: left;
      text-align: right;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .dl-horizontal dd {
      margin-left: 180px;
    }
  }
  
  abbr[title],
  abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #656d78;
  }
  
  .initialism {
    font-size: 90%;
  }
  
  blockquote {
    padding: 11px 22px;
    margin: 0 0 22px;
    font-size: 20px;
    border-left: 5px solid #f8f8f8;
  }
  
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0;
  }
  
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.428571429;
    color: #656d78;
  }
  
  blockquote footer:before,
  blockquote small:before,
  blockquote .small:before {
    content: '\2014 \00A0';
  }
  
  .blockquote-reverse,
  blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #f8f8f8;
    border-left: 0;
    text-align: right;
  }
  
  .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: '';
  }
  
  .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';
  }
  
  address {
    margin-bottom: 22px;
    font-style: normal;
    line-height: 1.428571429;
  }
  
  code,
  kbd,
  pre,
  samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  }
  
  code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
  }
  
  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);
  }
  
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none;
  }
  
  pre {
    display: block;
    padding: 10.5px;
    margin: 0 0 11px;
    font-size: 15px;
    line-height: 1.428571429;
    word-break: break-all;
    word-wrap: break-word;
    color: #363b42;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
  }
  
  .pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
  }
  
  .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .container:before, .container:after {
    content: " ";
    display: table;
  }
  
  .container:after {
    clear: both;
  }
  
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }
  
  .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table;
  }
  
  .container-fluid:after {
    clear: both;
  }
  
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .row:before, .row:after {
    content: " ";
    display: table;
  }
  
  .row:after {
    clear: both;
  }
  
  .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;
  }
  
  .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;
  }
  
  .col-xs-1 {
    width: 8.3333333333%;
  }
  
  .col-xs-2 {
    width: 16.6666666667%;
  }
  
  .col-xs-3 {
    width: 25%;
  }
  
  .col-xs-4 {
    width: 33.3333333333%;
  }
  
  .col-xs-5 {
    width: 41.6666666667%;
  }
  
  .col-xs-6 {
    width: 50%;
  }
  
  .col-xs-7 {
    width: 58.3333333333%;
  }
  
  .col-xs-8 {
    width: 66.6666666667%;
  }
  
  .col-xs-9 {
    width: 75%;
  }
  
  .col-xs-10 {
    width: 83.3333333333%;
  }
  
  .col-xs-11 {
    width: 91.6666666667%;
  }
  
  .col-xs-12 {
    width: 100%;
  }
  
  .col-xs-pull-0 {
    right: auto;
  }
  
  .col-xs-pull-1 {
    right: 8.3333333333%;
  }
  
  .col-xs-pull-2 {
    right: 16.6666666667%;
  }
  
  .col-xs-pull-3 {
    right: 25%;
  }
  
  .col-xs-pull-4 {
    right: 33.3333333333%;
  }
  
  .col-xs-pull-5 {
    right: 41.6666666667%;
  }
  
  .col-xs-pull-6 {
    right: 50%;
  }
  
  .col-xs-pull-7 {
    right: 58.3333333333%;
  }
  
  .col-xs-pull-8 {
    right: 66.6666666667%;
  }
  
  .col-xs-pull-9 {
    right: 75%;
  }
  
  .col-xs-pull-10 {
    right: 83.3333333333%;
  }
  
  .col-xs-pull-11 {
    right: 91.6666666667%;
  }
  
  .col-xs-pull-12 {
    right: 100%;
  }
  
  .col-xs-push-0 {
    left: auto;
  }
  
  .col-xs-push-1 {
    left: 8.3333333333%;
  }
  
  .col-xs-push-2 {
    left: 16.6666666667%;
  }
  
  .col-xs-push-3 {
    left: 25%;
  }
  
  .col-xs-push-4 {
    left: 33.3333333333%;
  }
  
  .col-xs-push-5 {
    left: 41.6666666667%;
  }
  
  .col-xs-push-6 {
    left: 50%;
  }
  
  .col-xs-push-7 {
    left: 58.3333333333%;
  }
  
  .col-xs-push-8 {
    left: 66.6666666667%;
  }
  
  .col-xs-push-9 {
    left: 75%;
  }
  
  .col-xs-push-10 {
    left: 83.3333333333%;
  }
  
  .col-xs-push-11 {
    left: 91.6666666667%;
  }
  
  .col-xs-push-12 {
    left: 100%;
  }
  
  .col-xs-offset-0 {
    margin-left: 0%;
  }
  
  .col-xs-offset-1 {
    margin-left: 8.3333333333%;
  }
  
  .col-xs-offset-2 {
    margin-left: 16.6666666667%;
  }
  
  .col-xs-offset-3 {
    margin-left: 25%;
  }
  
  .col-xs-offset-4 {
    margin-left: 33.3333333333%;
  }
  
  .col-xs-offset-5 {
    margin-left: 41.6666666667%;
  }
  
  .col-xs-offset-6 {
    margin-left: 50%;
  }
  
  .col-xs-offset-7 {
    margin-left: 58.3333333333%;
  }
  
  .col-xs-offset-8 {
    margin-left: 66.6666666667%;
  }
  
  .col-xs-offset-9 {
    margin-left: 75%;
  }
  
  .col-xs-offset-10 {
    margin-left: 83.3333333333%;
  }
  
  .col-xs-offset-11 {
    margin-left: 91.6666666667%;
  }
  
  .col-xs-offset-12 {
    margin-left: 100%;
  }
  
  @media (min-width: 768px) {
    .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;
    }
    .col-sm-1 {
      width: 8.3333333333%;
    }
    .col-sm-2 {
      width: 16.6666666667%;
    }
    .col-sm-3 {
      width: 25%;
    }
    .col-sm-4 {
      width: 33.3333333333%;
    }
    .col-sm-5 {
      width: 41.6666666667%;
    }
    .col-sm-6 {
      width: 50%;
    }
    .col-sm-7 {
      width: 58.3333333333%;
    }
    .col-sm-8 {
      width: 66.6666666667%;
    }
    .col-sm-9 {
      width: 75%;
    }
    .col-sm-10 {
      width: 83.3333333333%;
    }
    .col-sm-11 {
      width: 91.6666666667%;
    }
    .col-sm-12 {
      width: 100%;
    }
    .col-sm-pull-0 {
      right: auto;
    }
    .col-sm-pull-1 {
      right: 8.3333333333%;
    }
    .col-sm-pull-2 {
      right: 16.6666666667%;
    }
    .col-sm-pull-3 {
      right: 25%;
    }
    .col-sm-pull-4 {
      right: 33.3333333333%;
    }
    .col-sm-pull-5 {
      right: 41.6666666667%;
    }
    .col-sm-pull-6 {
      right: 50%;
    }
    .col-sm-pull-7 {
      right: 58.3333333333%;
    }
    .col-sm-pull-8 {
      right: 66.6666666667%;
    }
    .col-sm-pull-9 {
      right: 75%;
    }
    .col-sm-pull-10 {
      right: 83.3333333333%;
    }
    .col-sm-pull-11 {
      right: 91.6666666667%;
    }
    .col-sm-pull-12 {
      right: 100%;
    }
    .col-sm-push-0 {
      left: auto;
    }
    .col-sm-push-1 {
      left: 8.3333333333%;
    }
    .col-sm-push-2 {
      left: 16.6666666667%;
    }
    .col-sm-push-3 {
      left: 25%;
    }
    .col-sm-push-4 {
      left: 33.3333333333%;
    }
    .col-sm-push-5 {
      left: 41.6666666667%;
    }
    .col-sm-push-6 {
      left: 50%;
    }
    .col-sm-push-7 {
      left: 58.3333333333%;
    }
    .col-sm-push-8 {
      left: 66.6666666667%;
    }
    .col-sm-push-9 {
      left: 75%;
    }
    .col-sm-push-10 {
      left: 83.3333333333%;
    }
    .col-sm-push-11 {
      left: 91.6666666667%;
    }
    .col-sm-push-12 {
      left: 100%;
    }
    .col-sm-offset-0 {
      margin-left: 0%;
    }
    .col-sm-offset-1 {
      margin-left: 8.3333333333%;
    }
    .col-sm-offset-2 {
      margin-left: 16.6666666667%;
    }
    .col-sm-offset-3 {
      margin-left: 25%;
    }
    .col-sm-offset-4 {
      margin-left: 33.3333333333%;
    }
    .col-sm-offset-5 {
      margin-left: 41.6666666667%;
    }
    .col-sm-offset-6 {
      margin-left: 50%;
    }
    .col-sm-offset-7 {
      margin-left: 58.3333333333%;
    }
    .col-sm-offset-8 {
      margin-left: 66.6666666667%;
    }
    .col-sm-offset-9 {
      margin-left: 75%;
    }
    .col-sm-offset-10 {
      margin-left: 83.3333333333%;
    }
    .col-sm-offset-11 {
      margin-left: 91.6666666667%;
    }
    .col-sm-offset-12 {
      margin-left: 100%;
    }
  }
  
  @media (min-width: 992px) {
    .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;
    }
    .col-md-1 {
      width: 8.3333333333%;
    }
    .col-md-2 {
      width: 16.6666666667%;
    }
    .col-md-3 {
      width: 25%;
    }
    .col-md-4 {
      width: 33.3333333333%;
    }
    .col-md-5 {
      width: 41.6666666667%;
    }
    .col-md-6 {
      width: 50%;
    }
    .col-md-7 {
      width: 58.3333333333%;
    }
    .col-md-8 {
      width: 66.6666666667%;
    }
    .col-md-9 {
      width: 75%;
    }
    .col-md-10 {
      width: 83.3333333333%;
    }
    .col-md-11 {
      width: 91.6666666667%;
    }
    .col-md-12 {
      width: 100%;
    }
    .col-md-pull-0 {
      right: auto;
    }
    .col-md-pull-1 {
      right: 8.3333333333%;
    }
    .col-md-pull-2 {
      right: 16.6666666667%;
    }
    .col-md-pull-3 {
      right: 25%;
    }
    .col-md-pull-4 {
      right: 33.3333333333%;
    }
    .col-md-pull-5 {
      right: 41.6666666667%;
    }
    .col-md-pull-6 {
      right: 50%;
    }
    .col-md-pull-7 {
      right: 58.3333333333%;
    }
    .col-md-pull-8 {
      right: 66.6666666667%;
    }
    .col-md-pull-9 {
      right: 75%;
    }
    .col-md-pull-10 {
      right: 83.3333333333%;
    }
    .col-md-pull-11 {
      right: 91.6666666667%;
    }
    .col-md-pull-12 {
      right: 100%;
    }
    .col-md-push-0 {
      left: auto;
    }
    .col-md-push-1 {
      left: 8.3333333333%;
    }
    .col-md-push-2 {
      left: 16.6666666667%;
    }
    .col-md-push-3 {
      left: 25%;
    }
    .col-md-push-4 {
      left: 33.3333333333%;
    }
    .col-md-push-5 {
      left: 41.6666666667%;
    }
    .col-md-push-6 {
      left: 50%;
    }
    .col-md-push-7 {
      left: 58.3333333333%;
    }
    .col-md-push-8 {
      left: 66.6666666667%;
    }
    .col-md-push-9 {
      left: 75%;
    }
    .col-md-push-10 {
      left: 83.3333333333%;
    }
    .col-md-push-11 {
      left: 91.6666666667%;
    }
    .col-md-push-12 {
      left: 100%;
    }
    .col-md-offset-0 {
      margin-left: 0%;
    }
    .col-md-offset-1 {
      margin-left: 8.3333333333%;
    }
    .col-md-offset-2 {
      margin-left: 16.6666666667%;
    }
    .col-md-offset-3 {
      margin-left: 25%;
    }
    .col-md-offset-4 {
      margin-left: 33.3333333333%;
    }
    .col-md-offset-5 {
      margin-left: 41.6666666667%;
    }
    .col-md-offset-6 {
      margin-left: 50%;
    }
    .col-md-offset-7 {
      margin-left: 58.3333333333%;
    }
    .col-md-offset-8 {
      margin-left: 66.6666666667%;
    }
    .col-md-offset-9 {
      margin-left: 75%;
    }
    .col-md-offset-10 {
      margin-left: 83.3333333333%;
    }
    .col-md-offset-11 {
      margin-left: 91.6666666667%;
    }
    .col-md-offset-12 {
      margin-left: 100%;
    }
  }
  
  @media (min-width: 1200px) {
    .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;
    }
    .col-lg-1 {
      width: 8.3333333333%;
    }
    .col-lg-2 {
      width: 16.6666666667%;
    }
    .col-lg-3 {
      width: 25%;
    }
    .col-lg-4 {
      width: 33.3333333333%;
    }
    .col-lg-5 {
      width: 41.6666666667%;
    }
    .col-lg-6 {
      width: 50%;
    }
    .col-lg-7 {
      width: 58.3333333333%;
    }
    .col-lg-8 {
      width: 66.6666666667%;
    }
    .col-lg-9 {
      width: 75%;
    }
    .col-lg-10 {
      width: 83.3333333333%;
    }
    .col-lg-11 {
      width: 91.6666666667%;
    }
    .col-lg-12 {
      width: 100%;
    }
    .col-lg-pull-0 {
      right: auto;
    }
    .col-lg-pull-1 {
      right: 8.3333333333%;
    }
    .col-lg-pull-2 {
      right: 16.6666666667%;
    }
    .col-lg-pull-3 {
      right: 25%;
    }
    .col-lg-pull-4 {
      right: 33.3333333333%;
    }
    .col-lg-pull-5 {
      right: 41.6666666667%;
    }
    .col-lg-pull-6 {
      right: 50%;
    }
    .col-lg-pull-7 {
      right: 58.3333333333%;
    }
    .col-lg-pull-8 {
      right: 66.6666666667%;
    }
    .col-lg-pull-9 {
      right: 75%;
    }
    .col-lg-pull-10 {
      right: 83.3333333333%;
    }
    .col-lg-pull-11 {
      right: 91.6666666667%;
    }
    .col-lg-pull-12 {
      right: 100%;
    }
    .col-lg-push-0 {
      left: auto;
    }
    .col-lg-push-1 {
      left: 8.3333333333%;
    }
    .col-lg-push-2 {
      left: 16.6666666667%;
    }
    .col-lg-push-3 {
      left: 25%;
    }
    .col-lg-push-4 {
      left: 33.3333333333%;
    }
    .col-lg-push-5 {
      left: 41.6666666667%;
    }
    .col-lg-push-6 {
      left: 50%;
    }
    .col-lg-push-7 {
      left: 58.3333333333%;
    }
    .col-lg-push-8 {
      left: 66.6666666667%;
    }
    .col-lg-push-9 {
      left: 75%;
    }
    .col-lg-push-10 {
      left: 83.3333333333%;
    }
    .col-lg-push-11 {
      left: 91.6666666667%;
    }
    .col-lg-push-12 {
      left: 100%;
    }
    .col-lg-offset-0 {
      margin-left: 0%;
    }
    .col-lg-offset-1 {
      margin-left: 8.3333333333%;
    }
    .col-lg-offset-2 {
      margin-left: 16.6666666667%;
    }
    .col-lg-offset-3 {
      margin-left: 25%;
    }
    .col-lg-offset-4 {
      margin-left: 33.3333333333%;
    }
    .col-lg-offset-5 {
      margin-left: 41.6666666667%;
    }
    .col-lg-offset-6 {
      margin-left: 50%;
    }
    .col-lg-offset-7 {
      margin-left: 58.3333333333%;
    }
    .col-lg-offset-8 {
      margin-left: 66.6666666667%;
    }
    .col-lg-offset-9 {
      margin-left: 75%;
    }
    .col-lg-offset-10 {
      margin-left: 83.3333333333%;
    }
    .col-lg-offset-11 {
      margin-left: 91.6666666667%;
    }
    .col-lg-offset-12 {
      margin-left: 100%;
    }
  }
  
  table {
    background-color: transparent;
  }
  
  caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #656d78;
    text-align: left;
  }
  
  th {
    text-align: left;
  }
  
  .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }
  
  .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.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
  }
  
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
  }
  
  .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;
  }
  
  .table > tbody + tbody {
    border-top: 2px solid #ddd;
  }
  
  .table .table {
    background-color: #fff;
  }
  
  .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;
  }
  
  .table-bordered {
    border: 1px solid #ddd;
  }
  
  .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 #ddd;
  }
  
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px;
  }
  
  .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
  }
  
  .table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
  }
  
  table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
  }
  
  table td[class*="col-"],
  table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
  }
  
  .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: #f5f5f5;
  }
  
  .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: #e8e8e8;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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: #f2dede;
  }
  
  .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: #ebcccc;
  }
  
  .table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
  }
  
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 16.5px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd;
    }
    .table-responsive > .table {
      margin-bottom: 0;
    }
    .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;
    }
    .table-responsive > .table-bordered {
      border: 0;
    }
    .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;
    }
    .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;
    }
    .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;
    }
  }
  
  fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
  }
  
  legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 22px;
    font-size: 24px;
    line-height: inherit;
    color: #363b42;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
  }
  
  label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input[type="search"] {
    box-sizing: border-box;
  }
  
  input[type="radio"],
  input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
  }
  
  input[type="file"] {
    display: block;
  }
  
  input[type="range"] {
    display: block;
    width: 100%;
  }
  
  select[multiple],
  select[size] {
    height: auto;
  }
  
  input[type="file"]:focus,
  input[type="radio"]:focus,
  input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
  }
  
  output {
    display: block;
    padding-top: 7px;
    font-size: 16px;
    line-height: 1.428571429;
    color: #363b42;
  }
  
  .form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.428571429;
    color: #363b42;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    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;
  }
  
  .form-control: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);
  }
  
  .form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
  }
  
  .form-control:-ms-input-placeholder {
    color: #999;
  }
  
  .form-control::-webkit-input-placeholder {
    color: #999;
  }
  
  .form-control::-ms-expand {
    border: 0;
    background-color: transparent;
  }
  
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    background-color: #f8f8f8;
    opacity: 1;
  }
  
  .form-control[disabled],
  fieldset[disabled] .form-control {
    cursor: not-allowed;
  }
  
  textarea.form-control {
    height: auto;
  }
  
  input[type="search"] {
    -webkit-appearance: none;
  }
  
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
      line-height: 40px;
    }
    input[type="date"].input-sm, .input-group-sm > input.form-control[type="date"],
    .input-group-sm > input.input-group-addon[type="date"],
    .input-group-sm > .input-group-btn > input.btn[type="date"],
    .input-group-sm input[type="date"],
    input[type="time"].input-sm,
    .input-group-sm > input.form-control[type="time"],
    .input-group-sm > input.input-group-addon[type="time"],
    .input-group-sm > .input-group-btn > input.btn[type="time"],
    .input-group-sm
    input[type="time"],
    input[type="datetime-local"].input-sm,
    .input-group-sm > input.form-control[type="datetime-local"],
    .input-group-sm > input.input-group-addon[type="datetime-local"],
    .input-group-sm > .input-group-btn > input.btn[type="datetime-local"],
    .input-group-sm
    input[type="datetime-local"],
    input[type="month"].input-sm,
    .input-group-sm > input.form-control[type="month"],
    .input-group-sm > input.input-group-addon[type="month"],
    .input-group-sm > .input-group-btn > input.btn[type="month"],
    .input-group-sm
    input[type="month"] {
      line-height: 33px;
    }
    input[type="date"].input-lg, .input-group-lg > input.form-control[type="date"],
    .input-group-lg > input.input-group-addon[type="date"],
    .input-group-lg > .input-group-btn > input.btn[type="date"],
    .input-group-lg input[type="date"],
    input[type="time"].input-lg,
    .input-group-lg > input.form-control[type="time"],
    .input-group-lg > input.input-group-addon[type="time"],
    .input-group-lg > .input-group-btn > input.btn[type="time"],
    .input-group-lg
    input[type="time"],
    input[type="datetime-local"].input-lg,
    .input-group-lg > input.form-control[type="datetime-local"],
    .input-group-lg > input.input-group-addon[type="datetime-local"],
    .input-group-lg > .input-group-btn > input.btn[type="datetime-local"],
    .input-group-lg
    input[type="datetime-local"],
    input[type="month"].input-lg,
    .input-group-lg > input.form-control[type="month"],
    .input-group-lg > input.input-group-addon[type="month"],
    .input-group-lg > .input-group-btn > input.btn[type="month"],
    .input-group-lg
    input[type="month"] {
      line-height: 49px;
    }
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .radio,
  .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .radio label,
  .checkbox label {
    min-height: 22px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
  }
  
  .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;
  }
  
  .radio + .radio,
  .checkbox + .checkbox {
    margin-top: -5px;
  }
  
  .radio-inline,
  .checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
  }
  
  .radio-inline + .radio-inline,
  .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
  }
  
  input[type="radio"][disabled], input[type="radio"].disabled,
  fieldset[disabled] input[type="radio"],
  input[type="checkbox"][disabled],
  input[type="checkbox"].disabled,
  fieldset[disabled]
  input[type="checkbox"] {
    cursor: not-allowed;
  }
  
  .radio-inline.disabled,
  fieldset[disabled] .radio-inline,
  .checkbox-inline.disabled,
  fieldset[disabled]
  .checkbox-inline {
    cursor: not-allowed;
  }
  
  .radio.disabled label,
  fieldset[disabled] .radio label,
  .checkbox.disabled label,
  fieldset[disabled]
  .checkbox label {
    cursor: not-allowed;
  }
  
  .form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 38px;
  }
  
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0;
  }
  
  .input-sm, .input-group-sm > .form-control,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .btn {
    height: 33px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 3px;
  }
  
  select.input-sm, .input-group-sm > select.form-control,
  .input-group-sm > select.input-group-addon,
  .input-group-sm > .input-group-btn > select.btn {
    height: 33px;
    line-height: 33px;
  }
  
  textarea.input-sm, .input-group-sm > textarea.form-control,
  .input-group-sm > textarea.input-group-addon,
  .input-group-sm > .input-group-btn > textarea.btn,
  select[multiple].input-sm,
  .input-group-sm > select.form-control[multiple],
  .input-group-sm > select.input-group-addon[multiple],
  .input-group-sm > .input-group-btn > select.btn[multiple] {
    height: auto;
  }
  
  .form-group-sm .form-control {
    height: 33px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 3px;
  }
  
  .form-group-sm select.form-control {
    height: 33px;
    line-height: 33px;
  }
  
  .form-group-sm textarea.form-control,
  .form-group-sm select[multiple].form-control {
    height: auto;
  }
  
  .form-group-sm .form-control-static {
    height: 33px;
    min-height: 36px;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .input-lg, .input-group-lg > .form-control,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .btn {
    height: 49px;
    padding: 10px 16px;
    font-size: 20px;
    line-height: 1.3333333;
    border-radius: 6px;
  }
  
  select.input-lg, .input-group-lg > select.form-control,
  .input-group-lg > select.input-group-addon,
  .input-group-lg > .input-group-btn > select.btn {
    height: 49px;
    line-height: 49px;
  }
  
  textarea.input-lg, .input-group-lg > textarea.form-control,
  .input-group-lg > textarea.input-group-addon,
  .input-group-lg > .input-group-btn > textarea.btn,
  select[multiple].input-lg,
  .input-group-lg > select.form-control[multiple],
  .input-group-lg > select.input-group-addon[multiple],
  .input-group-lg > .input-group-btn > select.btn[multiple] {
    height: auto;
  }
  
  .form-group-lg .form-control {
    height: 49px;
    padding: 10px 16px;
    font-size: 20px;
    line-height: 1.3333333;
    border-radius: 6px;
  }
  
  .form-group-lg select.form-control {
    height: 49px;
    line-height: 49px;
  }
  
  .form-group-lg textarea.form-control,
  .form-group-lg select[multiple].form-control {
    height: auto;
  }
  
  .form-group-lg .form-control-static {
    height: 49px;
    min-height: 42px;
    padding: 11px 16px;
    font-size: 20px;
    line-height: 1.3333333;
  }
  
  .has-feedback {
    position: relative;
  }
  
  .has-feedback .form-control {
    padding-right: 50px;
  }
  
  .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    pointer-events: none;
  }
  
  .input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
  .input-group-lg + .form-control-feedback,
  .form-group-lg .form-control + .form-control-feedback {
    width: 49px;
    height: 49px;
    line-height: 49px;
  }
  
  .input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
  .input-group-sm + .form-control-feedback,
  .form-group-sm .form-control + .form-control-feedback {
    width: 33px;
    height: 33px;
    line-height: 33px;
  }
  
  .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: #3c763d;
  }
  
  .has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  }
  
  .has-success .form-control:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  }
  
  .has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8;
  }
  
  .has-success .form-control-feedback {
    color: #3c763d;
  }
  
  .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: #8a6d3b;
  }
  
  .has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  }
  
  .has-warning .form-control:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  }
  
  .has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3;
  }
  
  .has-warning .form-control-feedback {
    color: #8a6d3b;
  }
  
  .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: #a94442;
  }
  
  .has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  }
  
  .has-error .form-control:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  }
  
  .has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede;
  }
  
  .has-error .form-control-feedback {
    color: #a94442;
  }
  
  .has-feedback label ~ .form-control-feedback {
    top: 27px;
  }
  
  .has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
  }
  
  .help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #a7adb5;
  }
  
  @media (min-width: 768px) {
    .form-inline .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle;
    }
    .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle;
    }
    .form-inline .form-control-static {
      display: inline-block;
    }
    .form-inline .input-group {
      display: inline-table;
      vertical-align: middle;
    }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto;
    }
    .form-inline .input-group > .form-control {
      width: 100%;
    }
    .form-inline .control-label {
      margin-bottom: 0;
      vertical-align: middle;
    }
    .form-inline .radio,
    .form-inline .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle;
    }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0;
    }
    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0;
    }
    .form-inline .has-feedback .form-control-feedback {
      top: 0;
    }
  }
  
  .form-horizontal .radio,
  .form-horizontal .checkbox,
  .form-horizontal .radio-inline,
  .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
  }
  
  .form-horizontal .radio,
  .form-horizontal .checkbox {
    min-height: 29px;
  }
  
  .form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table;
  }
  
  .form-horizontal .form-group:after {
    clear: both;
  }
  
  @media (min-width: 768px) {
    .form-horizontal .control-label {
      text-align: right;
      margin-bottom: 0;
      padding-top: 7px;
    }
  }
  
  .form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
  }
  
  @media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
      padding-top: 11px;
      font-size: 20px;
    }
  }
  
  @media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
      padding-top: 6px;
      font-size: 14px;
    }
  }
  
  .btn {
    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 12px;
    font-size: 16px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
  }
  
  .btn:hover, .btn:focus, .btn.focus {
    color: #333;
    text-decoration: none;
  }
  
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  }
  
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
  }
  
  a.btn.disabled,
  fieldset[disabled] a.btn {
    pointer-events: none;
  }
  
  .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
  }
  
  .btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e5e5;
    border-color: #8c8c8c;
  }
  
  .btn-default:hover {
    color: #333;
    background-color: #e6e5e5;
    border-color: #adadad;
  }
  
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e5e5;
    border-color: #adadad;
  }
  
  .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
  .open > .btn-default.dropdown-toggle:hover,
  .open > .btn-default.dropdown-toggle:focus,
  .open > .btn-default.dropdown-toggle.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
  }
  
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none;
  }
  
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc;
  }
  
  .btn-default .badge {
    color: #fff;
    background-color: #333;
  }
  
  .btn-primary {
    color: #fff;
    background-color: #0fccd8;
    border-color: #0db5c0;
  }
  
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #0c9fa8;
    border-color: #054549;
  }
  
  .btn-primary:hover {
    color: #fff;
    background-color: #0c9fa8;
    border-color: #097f87;
  }
  
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0c9fa8;
    border-color: #097f87;
  }
  
  .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .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: #097f87;
    border-color: #054549;
  }
  
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none;
  }
  
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #0fccd8;
    border-color: #0db5c0;
  }
  
  .btn-primary .badge {
    color: #0fccd8;
    background-color: #fff;
  }
  
  .btn-success {
    color: #fff;
    background-color: #0fd87c;
    border-color: #0dc06e;
  }
  
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #0ca861;
    border-color: #05492a;
  }
  
  .btn-success:hover {
    color: #fff;
    background-color: #0ca861;
    border-color: #09874d;
  }
  
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #0ca861;
    border-color: #09874d;
  }
  
  .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .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: #09874d;
    border-color: #05492a;
  }
  
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none;
  }
  
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #0fd87c;
    border-color: #0dc06e;
  }
  
  .btn-success .badge {
    color: #0fd87c;
    background-color: #fff;
  }
  
  .btn-info {
    color: #fff;
    background-color: #128bd6;
    border-color: #107cbe;
  }
  
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #0e6ca7;
    border-color: #062f49;
  }
  
  .btn-info:hover {
    color: #fff;
    background-color: #0e6ca7;
    border-color: #0b5786;
  }
  
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #0e6ca7;
    border-color: #0b5786;
  }
  
  .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .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: #0b5786;
    border-color: #062f49;
  }
  
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none;
  }
  
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #128bd6;
    border-color: #107cbe;
  }
  
  .btn-info .badge {
    color: #128bd6;
    background-color: #fff;
  }
  
  .btn-warning {
    color: #fff;
    background-color: #d67d12;
    border-color: #be6f10;
  }
  
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #a7620e;
    border-color: #492b06;
  }
  
  .btn-warning:hover {
    color: #fff;
    background-color: #a7620e;
    border-color: #864e0b;
  }
  
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #a7620e;
    border-color: #864e0b;
  }
  
  .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .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: #864e0b;
    border-color: #492b06;
  }
  
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none;
  }
  
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #d67d12;
    border-color: #be6f10;
  }
  
  .btn-warning .badge {
    color: #d67d12;
    background-color: #fff;
  }
  
  .btn-danger {
    color: #fff;
    background-color: #d61212;
    border-color: #be1010;
  }
  
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #a70e0e;
    border-color: #490606;
  }
  
  .btn-danger:hover {
    color: #fff;
    background-color: #a70e0e;
    border-color: #860b0b;
  }
  
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #a70e0e;
    border-color: #860b0b;
  }
  
  .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .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: #860b0b;
    border-color: #490606;
  }
  
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none;
  }
  
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d61212;
    border-color: #be1010;
  }
  
  .btn-danger .badge {
    color: #d61212;
    background-color: #fff;
  }
  
  .btn-link {
    color: #0fccd8;
    font-weight: normal;
    border-radius: 0;
  }
  
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none;
  }
  
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent;
  }
  
  .btn-link:hover, .btn-link:focus {
    color: #0badb7;
    text-decoration: none;
    background-color: transparent;
  }
  
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #656d78;
    text-decoration: none;
  }
  
  .btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 20px;
    line-height: 1.3333333;
    border-radius: 6px;
  }
  
  .btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 3px;
  }
  
  .btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 3px;
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  .btn-block + .btn-block {
    margin-top: 5px;
  }
  
  input[type="submit"].btn-block,
  input[type="reset"].btn-block,
  input[type="button"].btn-block {
    width: 100%;
  }
  
  .fade {
    opacity: 0;
    transition: opacity 0.15s linear;
  }
  
  .fade.in {
    opacity: 1;
  }
  
  .collapse {
    display: none;
  }
  
  .collapse.in {
    display: block;
  }
  
  tr.collapse.in {
    display: table-row;
  }
  
  tbody.collapse.in {
    display: table-row-group;
  }
  
  .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }
  
  .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;
  }
  
  .dropup,
  .dropdown {
    position: relative;
  }
  
  .dropdown-toggle:focus {
    outline: 0;
  }
  
  .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: 16px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
  }
  
  .dropdown-menu.pull-right {
    right: 0;
    left: auto;
  }
  
  .dropdown-menu .divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: #e5e5e5;
  }
  
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #363b42;
    white-space: nowrap;
  }
  
  .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #0badb7;
    background-color: transparent;
  }
  
  .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #0fccd8;
  }
  
  .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #656d78;
  }
  
  .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;
  }
  
  .open > .dropdown-menu {
    display: block;
  }
  
  .open > a {
    outline: 0;
  }
  
  .dropdown-menu-right {
    left: auto;
    right: 0;
  }
  
  .dropdown-menu-left {
    left: 0;
    right: auto;
  }
  
  .dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #656d78;
    white-space: nowrap;
  }
  
  .dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
  }
  
  .pull-right > .dropdown-menu {
    right: 0;
    left: auto;
  }
  
  .dropup .caret,
  .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: "";
  }
  
  .dropup .dropdown-menu,
  .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
  }
  
  @media (min-width: 768px) {
    .navbar-right .dropdown-menu {
      right: 0;
      left: auto;
    }
    .navbar-right .dropdown-menu-left {
      left: 0;
      right: auto;
    }
  }
  
  .btn-group,
  .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
  }
  
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left;
  }
  
  .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  .btn-group-vertical > .btn:hover,
  .btn-group-vertical > .btn:focus,
  .btn-group-vertical > .btn:active,
  .btn-group-vertical > .btn.active {
    z-index: 2;
  }
  
  .btn-group .btn + .btn,
  .btn-group .btn + .btn-group,
  .btn-group .btn-group + .btn,
  .btn-group .btn-group + .btn-group {
    margin-left: -1px;
  }
  
  .btn-toolbar {
    margin-left: -5px;
  }
  
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table;
  }
  
  .btn-toolbar:after {
    clear: both;
  }
  
  .btn-toolbar .btn,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left;
  }
  
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px;
  }
  
  .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
  }
  
  .btn-group > .btn:first-child {
    margin-left: 0;
  }
  
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
  
  .btn-group > .btn:last-child:not(:first-child),
  .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  
  .btn-group > .btn-group {
    float: left;
  }
  
  .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
  }
  
  .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
  
  .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  
  .btn-group .dropdown-toggle:active,
  .btn-group.open .dropdown-toggle {
    outline: 0;
  }
  
  .btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  }
  
  .btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none;
  }
  
  .btn .caret {
    margin-left: 0;
  }
  
  .btn-lg .caret, .btn-group-lg > .btn .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
  }
  
  .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
    border-width: 0 5px 5px;
  }
  
  .btn-group-vertical > .btn,
  .btn-group-vertical > .btn-group,
  .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
  }
  
  .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
    content: " ";
    display: table;
  }
  
  .btn-group-vertical > .btn-group:after {
    clear: both;
  }
  
  .btn-group-vertical > .btn-group > .btn {
    float: none;
  }
  
  .btn-group-vertical > .btn + .btn,
  .btn-group-vertical > .btn + .btn-group,
  .btn-group-vertical > .btn-group + .btn,
  .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
  }
  
  .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
  }
  
  .btn-group-vertical > .btn: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;
  }
  
  .btn-group-vertical > .btn: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;
  }
  
  .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0;
  }
  
  .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  
  .btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
  }
  
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%;
  }
  
  .btn-group-justified > .btn-group .btn {
    width: 100%;
  }
  
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto;
  }
  
  [data-toggle="buttons"] > .btn input[type="radio"],
  [data-toggle="buttons"] > .btn 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;
  }
  
  .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
  }
  
  .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0;
  }
  
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
  }
  
  .input-group .form-control:focus {
    z-index: 3;
  }
  
  .input-group-addon,
  .input-group-btn,
  .input-group .form-control {
    display: table-cell;
  }
  
  .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) {
    border-radius: 0;
  }
  
  .input-group-addon,
  .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
  }
  
  .input-group-addon {
    padding: 6px 12px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #363b42;
    text-align: center;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 0;
  }
  
  .input-group-addon.input-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px;
  }
  
  .input-group-addon.input-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 20px;
    border-radius: 6px;
  }
  
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0;
  }
  
  .input-group .form-control:first-child,
  .input-group-addon:first-child,
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group > .btn,
  .input-group-btn:first-child > .dropdown-toggle,
  .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
  
  .input-group-addon:first-child {
    border-right: 0;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child,
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group > .btn,
  .input-group-btn:last-child > .dropdown-toggle,
  .input-group-btn:first-child > .btn:not(:first-child),
  .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  
  .input-group-addon:last-child {
    border-left: 0;
  }
  
  .input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
  }
  
  .input-group-btn > .btn {
    position: relative;
  }
  
  .input-group-btn > .btn + .btn {
    margin-left: -1px;
  }
  
  .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 2;
  }
  
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px;
  }
  
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px;
  }
  
  .nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
  }
  
  .nav:before, .nav:after {
    content: " ";
    display: table;
  }
  
  .nav:after {
    clear: both;
  }
  
  .nav > li {
    position: relative;
    display: block;
  }
  
  .nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
  }
  
  .nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: #f8f8f8;
  }
  
  .nav > li.disabled > a {
    color: #656d78;
  }
  
  .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
    color: #656d78;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
  }
  
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #f8f8f8;
    border-color: #0fccd8;
  }
  
  .nav .nav-divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: #e5e5e5;
  }
  
  .nav > li > a > img {
    max-width: none;
  }
  
  .nav-tabs {
    border-bottom: 1px solid #ddd;
  }
  
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px;
  }
  
  .nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
  }
  
  .nav-tabs > li > a:hover {
    border-color: #f8f8f8 #f8f8f8 #ddd;
  }
  
  .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #b8b8b8;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default;
  }
  
  .nav-pills > li {
    float: left;
  }
  
  .nav-pills > li > a {
    border-radius: 4px;
  }
  
  .nav-pills > li + li {
    margin-left: 2px;
  }
  
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #0fccd8;
  }
  
  .nav-stacked > li {
    float: none;
  }
  
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
  }
  
  .nav-justified, .nav-tabs.nav-justified {
    width: 100%;
  }
  
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none;
  }
  
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px;
  }
  
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
  }
  
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%;
    }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      margin-bottom: 0;
    }
  }
  
  .nav-tabs-justified, .nav-tabs.nav-justified {
    border-bottom: 0;
  }
  
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
  }
  
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
  }
  
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0;
    }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff;
    }
  }
  
  .tab-content > .tab-pane {
    display: none;
  }
  
  .tab-content > .active {
    display: block;
  }
  
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  
  .navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 22px;
    border: 1px solid transparent;
  }
  
  .navbar:before, .navbar:after {
    content: " ";
    display: table;
  }
  
  .navbar:after {
    clear: both;
  }
  
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px;
    }
  }
  
  .navbar-header:before, .navbar-header:after {
    content: " ";
    display: table;
  }
  
  .navbar-header:after {
    clear: both;
  }
  
  @media (min-width: 768px) {
    .navbar-header {
      float: left;
    }
  }
  
  .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;
  }
  
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table;
  }
  
  .navbar-collapse:after {
    clear: both;
  }
  
  .navbar-collapse.in {
    overflow-y: auto;
  }
  
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none;
    }
    .navbar-collapse.collapse {
      display: block !important;
      height: auto !important;
      padding-bottom: 0;
      overflow: visible !important;
    }
    .navbar-collapse.in {
      overflow-y: visible;
    }
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
  }
  
  @media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px;
    }
  }
  
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
  }
  
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0;
    }
  }
  
  .navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
  }
  
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0;
    }
  }
  
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0;
    }
  }
  
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  
  .navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
  }
  
  .navbar-brand {
    float: left;
    padding: 14px 15px;
    font-size: 20px;
    line-height: 22px;
    height: 50px;
  }
  
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none;
  }
  
  .navbar-brand > img {
    display: block;
  }
  
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px;
    }
  }
  
  .navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  
  .navbar-toggle:focus {
    outline: 0;
  }
  
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
  }
  
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
  }
  
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none;
    }
  }
  
  .navbar-nav {
    margin: 7px -15px;
  }
  
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 22px;
  }
  
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none;
    }
    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
      padding: 5px 15px 5px 25px;
    }
    .navbar-nav .open .dropdown-menu > li > a {
      line-height: 22px;
    }
    .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
      background-image: none;
    }
  }
  
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0;
    }
    .navbar-nav > li {
      float: left;
    }
    .navbar-nav > li > a {
      padding-top: 14px;
      padding-bottom: 14px;
    }
  }
  
  .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: 5px;
    margin-bottom: 5px;
  }
  
  @media (min-width: 768px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle;
    }
    .navbar-form .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle;
    }
    .navbar-form .form-control-static {
      display: inline-block;
    }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle;
    }
    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn,
    .navbar-form .input-group .form-control {
      width: auto;
    }
    .navbar-form .input-group > .form-control {
      width: 100%;
    }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle;
    }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle;
    }
    .navbar-form .radio label,
    .navbar-form .checkbox label {
      padding-left: 0;
    }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0;
    }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0;
    }
  }
  
  @media (max-width: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px;
    }
    .navbar-form .form-group:last-child {
      margin-bottom: 0;
    }
  }
  
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      box-shadow: none;
    }
  }
  
  .navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  
  .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;
  }
  
  .navbar-btn {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 8.5px;
    margin-bottom: 8.5px;
  }
  
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px;
  }
  
  .navbar-text {
    margin-top: 14px;
    margin-bottom: 14px;
  }
  
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px;
    }
  }
  
  @media (min-width: 768px) {
    .navbar-left {
      float: left !important;
    }
    .navbar-right {
      float: right !important;
      margin-right: -15px;
    }
    .navbar-right ~ .navbar-right {
      margin-right: 0;
    }
  }
  
  .navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
  }
  
  .navbar-default .navbar-brand {
    color: #777;
  }
  
  .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    color: #5e5d5d;
    background-color: transparent;
  }
  
  .navbar-default .navbar-text {
    color: #777;
  }
  
  .navbar-default .navbar-nav > li > a {
    color: #777;
  }
  
  .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  
  .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;
  }
  
  .navbar-default .navbar-toggle {
    border-color: #ddd;
  }
  
  .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #ddd;
  }
  
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #888;
  }
  
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e7e7e7;
  }
  
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555;
  }
  
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
      color: #333;
      background-color: transparent;
    }
    .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: #555;
      background-color: #e7e7e7;
    }
    .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;
    }
  }
  
  .navbar-default .navbar-link {
    color: #777;
  }
  
  .navbar-default .navbar-link:hover {
    color: #333;
  }
  
  .navbar-default .btn-link {
    color: #777;
  }
  
  .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
    color: #333;
  }
  
  .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;
  }
  
  .navbar-inverse {
    background-color: #222;
    border-color: #090808;
  }
  
  .navbar-inverse .navbar-brand {
    color: #8c939e;
  }
  
  .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent;
  }
  
  .navbar-inverse .navbar-text {
    color: #8c939e;
  }
  
  .navbar-inverse .navbar-nav > li > a {
    color: #8c939e;
  }
  
  .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090808;
  }
  
  .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;
  }
  
  .navbar-inverse .navbar-toggle {
    border-color: #333;
  }
  
  .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
    background-color: #333;
  }
  
  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010;
  }
  
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090808;
    color: #fff;
  }
  
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #8c939e;
    }
    .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;
    }
    .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: #090808;
    }
    .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;
    }
  }
  
  .navbar-inverse .navbar-link {
    color: #8c939e;
  }
  
  .navbar-inverse .navbar-link:hover {
    color: #fff;
  }
  
  .navbar-inverse .btn-link {
    color: #8c939e;
  }
  
  .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
    color: #fff;
  }
  
  .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;
  }
  
  .breadcrumb {
    padding: 8px 15px;
    margin-bottom: 22px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
  }
  
  .breadcrumb > li {
    display: inline-block;
  }
  
  .breadcrumb > li + li:before {
    content: "/ ";
    padding: 0 5px;
    color: #ccc;
  }
  
  .breadcrumb > .active {
    color: #656d78;
  }
  
  .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 22px 0;
    border-radius: 4px;
  }
  
  .pagination > li {
    display: inline;
  }
  
  .pagination > li > a,
  .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.428571429;
    text-decoration: none;
    color: #0fccd8;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
  }
  
  .pagination > li:first-child > a,
  .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
  }
  
  .pagination > li:last-child > a,
  .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
  }
  
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    z-index: 2;
    color: #0badb7;
    background-color: #f8f8f8;
    border-color: #ddd;
  }
  
  .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: #0fccd8;
    border-color: #0fccd8;
    cursor: default;
  }
  
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #656d78;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
  }
  
  .pagination-lg > li > a,
  .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 20px;
    line-height: 1.3333333;
  }
  
  .pagination-lg > li:first-child > a,
  .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
  }
  
  .pagination-lg > li:last-child > a,
  .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
  }
  
  .pagination-sm > li > a,
  .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .pagination-sm > li:first-child > a,
  .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
  }
  
  .pagination-sm > li:last-child > a,
  .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
  }
  
  .pager {
    padding-left: 0;
    margin: 22px 0;
    list-style: none;
    text-align: center;
  }
  
  .pager:before, .pager:after {
    content: " ";
    display: table;
  }
  
  .pager:after {
    clear: both;
  }
  
  .pager li {
    display: inline;
  }
  
  .pager li > a,
  .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
  }
  
  .pager li > a:hover,
  .pager li > a:focus {
    text-decoration: none;
    background-color: #f8f8f8;
  }
  
  .pager .next > a,
  .pager .next > span {
    float: right;
  }
  
  .pager .previous > a,
  .pager .previous > span {
    float: left;
  }
  
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: #656d78;
    background-color: #fff;
    cursor: not-allowed;
  }
  
  .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;
  }
  
  .label:empty {
    display: none;
  }
  
  .btn .label {
    position: relative;
    top: -1px;
  }
  
  a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }
  
  .label-default {
    background-color: #656d78;
  }
  
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #4e545c;
  }
  
  .label-primary {
    background-color: #0fccd8;
  }
  
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #0c9fa8;
  }
  
  .label-success {
    background-color: #0fd87c;
  }
  
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #0ca861;
  }
  
  .label-info {
    background-color: #128bd6;
  }
  
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #0e6ca7;
  }
  
  .label-warning {
    background-color: #d67d12;
  }
  
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #a7620e;
  }
  
  .label-danger {
    background-color: #d61212;
  }
  
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #a70e0e;
  }
  
  .badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #656d78;
    border-radius: 10px;
  }
  
  .badge:empty {
    display: none;
  }
  
  .btn .badge {
    position: relative;
    top: -1px;
  }
  
  .btn-xs .badge, .btn-group-xs > .btn .badge,
  .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px;
  }
  
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #0fccd8;
    background-color: #fff;
  }
  
  .list-group-item > .badge {
    float: right;
  }
  
  .list-group-item > .badge + .badge {
    margin-right: 5px;
  }
  
  .nav-pills > li > a > .badge {
    margin-left: 3px;
  }
  
  a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }
  
  .jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #f8f8f8;
  }
  
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit;
  }
  
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 200;
  }
  
  .jumbotron > hr {
    border-top-color: #dfdede;
  }
  
  .container .jumbotron,
  .container-fluid .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .jumbotron .container {
    max-width: 100%;
  }
  
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px;
    }
    .container .jumbotron,
    .container-fluid .jumbotron {
      padding-left: 60px;
      padding-right: 60px;
    }
    .jumbotron h1,
    .jumbotron .h1 {
      font-size: 72px;
    }
  }
  
  .thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 22px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border 0.2s ease-in-out;
  }
  
  .thumbnail > img,
  .thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  
  .thumbnail .caption {
    padding: 9px;
    color: #656d78;
  }
  
  a.thumbnail:hover,
  a.thumbnail:focus,
  a.thumbnail.active {
    border-color: #0fccd8;
  }
  
  .alert {
    padding: 15px;
    margin-bottom: 22px;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  
  .alert h4 {
    margin-top: 0;
    color: inherit;
  }
  
  .alert .alert-link {
    font-weight: bold;
  }
  
  .alert > p,
  .alert > ul {
    margin-bottom: 0;
  }
  
  .alert > p + p {
    margin-top: 5px;
  }
  
  .alert-dismissable,
  .alert-dismissible {
    padding-right: 35px;
  }
  
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
  }
  
  .alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
  }
  
  .alert-success hr {
    border-top-color: #c9e2b3;
  }
  
  .alert-success .alert-link {
    color: #2b542c;
  }
  
  .alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
  }
  
  .alert-info hr {
    border-top-color: #a6e1ec;
  }
  
  .alert-info .alert-link {
    color: #245269;
  }
  
  .alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
  }
  
  .alert-warning hr {
    border-top-color: #f7e1b5;
  }
  
  .alert-warning .alert-link {
    color: #66512c;
  }
  
  .alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
  }
  
  .alert-danger hr {
    border-top-color: #e4b9c0;
  }
  
  .alert-danger .alert-link {
    color: #843534;
  }
  
  @keyframes progress-bar-stripes {
    from {
      background-position: 40px 0;
    }
    to {
      background-position: 0 0;
    }
  }
  
  .progress {
    overflow: hidden;
    height: 22px;
    margin-bottom: 22px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    background-color: #0fccd8;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: width 0.6s ease;
  }
  
  .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;
  }
  
  .progress.active .progress-bar,
  .progress-bar.active {
    animation: progress-bar-stripes 2s linear infinite;
  }
  
  .progress-bar-success {
    background-color: #0fd87c;
  }
  
  .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);
  }
  
  .progress-bar-info {
    background-color: #128bd6;
  }
  
  .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);
  }
  
  .progress-bar-warning {
    background-color: #d67d12;
  }
  
  .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);
  }
  
  .progress-bar-danger {
    background-color: #d61212;
  }
  
  .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);
  }
  
  .media {
    margin-top: 15px;
  }
  
  .media:first-child {
    margin-top: 0;
  }
  
  .media,
  .media-body {
    zoom: 1;
    overflow: hidden;
  }
  
  .checkout-item {
    font-weight: normal;
  }
  
  .media-body {
    width: 10000px;
  }
  
  .media-object {
    display: block;
  }
  
  .media-object.img-thumbnail {
    max-width: none;
  }
  
  .media-right,
  .media > .pull-right {
    padding-left: 10px;
  }
  
  .media-left,
  .media > .pull-left {
    padding-right: 10px;
  }
  
  .media-left,
  .media-right,
  .media-body {
    display: table-cell;
    vertical-align: top;
  }
  
  .media-middle {
    vertical-align: middle;
  }
  
  .media-bottom {
    vertical-align: bottom;
  }
  
  .media-heading {
    margin-top: 0;
    margin-bottom: 5px;
  }
  
  .media-list {
    padding-left: 0;
    list-style: none;
  }
  
  .list-group {
    margin-bottom: 20px;
    padding-left: 0;
  }
  
  .list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
  }
  
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
  }
  
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  
  a.list-group-item,
  button.list-group-item {
    color: #555;
  }
  
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: #333;
  }
  
  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: #f5f5f5;
  }
  
  button.list-group-item {
    width: 100%;
    text-align: left;
  }
  
  .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    background-color: #f8f8f8;
    color: #656d78;
    cursor: not-allowed;
  }
  
  .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;
  }
  
  .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: #656d78;
  }
  
  .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #0fccd8;
    border-color: #0fccd8;
  }
  
  .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;
  }
  
  .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: #b9f6fa;
  }
  
  .list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
  }
  
  a.list-group-item-success,
  button.list-group-item-success {
    color: #3c763d;
  }
  
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit;
  }
  
  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: #3c763d;
    background-color: #d0e9c6;
  }
  
  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: #3c763d;
    border-color: #3c763d;
  }
  
  .list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
  }
  
  a.list-group-item-info,
  button.list-group-item-info {
    color: #31708f;
  }
  
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit;
  }
  
  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: #31708f;
    background-color: #c4e3f3;
  }
  
  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: #31708f;
    border-color: #31708f;
  }
  
  .list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
  }
  
  a.list-group-item-warning,
  button.list-group-item-warning {
    color: #8a6d3b;
  }
  
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit;
  }
  
  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: #8a6d3b;
    background-color: #faf2cc;
  }
  
  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: #8a6d3b;
    border-color: #8a6d3b;
  }
  
  .list-group-item-danger {
    color: #a94442;
    background-color: #f2dede;
  }
  
  a.list-group-item-danger,
  button.list-group-item-danger {
    color: #a94442;
  }
  
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit;
  }
  
  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: #a94442;
    background-color: #ebcccc;
  }
  
  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: #a94442;
    border-color: #a94442;
  }
  
  .list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
  }
  
  .list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
  }
  
  .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);
  }
  
  .panel-body {
    padding: 15px;
  }
  
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table;
  }
  
  .panel-body:after {
    clear: both;
  }
  
  .panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
  }
  
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
  }
  
  .panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: inherit;
  }
  
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit;
  }
  
  .panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
  }
  
  .panel > .list-group,
  .panel > .panel-collapse > .list-group {
    margin-bottom: 0;
  }
  
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0;
  }
  
  .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;
  }
  
  .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;
  }
  
  .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  
  .panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
  }
  
  .list-group + .panel-footer {
    border-top-width: 0;
  }
  
  .panel > .table,
  .panel > .table-responsive > .table,
  .panel > .panel-collapse > .table {
    margin-bottom: 0;
  }
  
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .panel > .table:first-child,
  .panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .panel > .table:last-child,
  .panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .panel > .panel-body + .table,
  .panel > .panel-body + .table-responsive,
  .panel > .table + .panel-body,
  .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd;
  }
  
  .panel > .table > tbody:first-child > tr:first-child th,
  .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
  }
  
  .panel > .table-bordered,
  .panel > .table-responsive > .table-bordered {
    border: 0;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .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;
  }
  
  .panel > .table-responsive {
    border: 0;
    margin-bottom: 0;
  }
  
  .panel-group {
    margin-bottom: 22px;
  }
  
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px;
  }
  
  .panel-group .panel + .panel {
    margin-top: 5px;
  }
  
  .panel-group .panel-heading {
    border-bottom: 0;
  }
  
  .panel-group .panel-heading + .panel-collapse > .panel-body,
  .panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #ddd;
  }
  
  .panel-group .panel-footer {
    border-top: 0;
  }
  
  .panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd;
  }
  
  .panel-default {
    border-color: #ddd;
  }
  
  .panel-default > .panel-heading {
    color: #363b42;
    background-color: #f5f5f5;
    border-color: #ddd;
  }
  
  .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd;
  }
  
  .panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #363b42;
  }
  
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd;
  }
  
  .panel-primary {
    border-color: #0fccd8;
  }
  
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #0fccd8;
    border-color: #0fccd8;
  }
  
  .panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #0fccd8;
  }
  
  .panel-primary > .panel-heading .badge {
    color: #0fccd8;
    background-color: #fff;
  }
  
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #0fccd8;
  }
  
  .panel-success {
    border-color: #d6e9c6;
  }
  
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
  }
  
  .panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6;
  }
  
  .panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d;
  }
  
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6;
  }
  
  .panel-info {
    border-color: #bce8f1;
  }
  
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
  }
  
  .panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1;
  }
  
  .panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f;
  }
  
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1;
  }
  
  .panel-warning {
    border-color: #faebcc;
  }
  
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
  }
  
  .panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc;
  }
  
  .panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b;
  }
  
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc;
  }
  
  .panel-danger {
    border-color: #ebccd1;
  }
  
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
  }
  
  .panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1;
  }
  
  .panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442;
  }
  
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1;
  }
  
  .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .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;
  }
  
  .embed-responsive-16by9 {
    padding-bottom: 56.25%;
  }
  
  .embed-responsive-4by3 {
    padding-bottom: 75%;
  }
  
  .embed-responsive-1by1 {
    padding-bottom: 100%;
  }
  
  .well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  }
  
  .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
  }
  
  .well-lg {
    padding: 24px;
    border-radius: 6px;
  }
  
  .well-sm {
    padding: 9px;
    border-radius: 3px;
  }
  
  .close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20);
  }
  
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  
  button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
  }
  
  .modal-open {
    overflow: hidden;
  }
  
  .modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
  }
  
  .modal.fade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
  }
  
  .modal.in .modal-dialog {
    transform: translate(0, 0);
  }
  
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
  }
  
  .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;
  }
  
  .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
  }
  
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  
  .modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .modal-header:before, .modal-header:after {
    content: " ";
    display: table;
  }
  
  .modal-header:after {
    clear: both;
  }
  
  .modal-header .close {
    margin-top: -2px;
  }
  
  .modal-title {
    margin: 0;
    line-height: 1.428571429;
  }
  
  .modal-body {
    position: relative;
    padding: 15px;
  }
  
  .modal-footer {
    padding: 15px;
    text-align: right;
  }
  
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table;
  }
  
  .modal-footer:after {
    clear: both;
  }
  
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
  }
  
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
  }
  
  .modal-footer .btn-block + .btn-block {
    margin-left: 0;
  }
  
  .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
  }
  
  @media (min-width: 768px) {
    .modal-dialog {
      width: 600px;
      margin: 30px auto;
    }
    .modal-content {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .modal-sm {
      width: 300px;
    }
  }
  
  @media (min-width: 992px) {
    .modal-lg {
      width: 900px;
    }
  }
  
  .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "poppins";
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.428571429;
    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: 14px;
    opacity: 0;
    filter: alpha(opacity=0);
  }
  
  .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
  
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
  }
  
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
  }
  
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
  }
  
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
  }
  
  .tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
  }
  
  .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
  }
  
  .tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
  }
  
  .tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
  }
  
  .tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
  }
  
  .tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
  }
  
  .tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
  }
  
  .tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
  }
  
  .tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
  }
  
  .tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
  }
  
  .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "poppins";
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.428571429;
    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: 16px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .popover.top {
    margin-top: -10px;
  }
  
  .popover.right {
    margin-left: 10px;
  }
  
  .popover.bottom {
    margin-top: 10px;
  }
  
  .popover.left {
    margin-left: -10px;
  }
  
  .popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 16px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
  }
  
  .popover-content {
    padding: 9px 14px;
  }
  
  .popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
  }
  
  .popover > .arrow {
    border-width: 11px;
  }
  
  .popover > .arrow:after {
    border-width: 10px;
    content: "";
  }
  
  .popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px;
  }
  
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff;
  }
  
  .popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25);
  }
  
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff;
  }
  
  .popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px;
  }
  
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff;
  }
  
  .popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25);
  }
  
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px;
  }
  
  .carousel {
    position: relative;
  }
  
  .carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .carousel-inner > .item {
    display: none;
    position: relative;
    transition: 0.6s ease-in-out left;
  }
  
  .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) {
    .carousel-inner > .item {
      transition: transform 0.6s ease-in-out;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      perspective: 1000px;
    }
    .carousel-inner > .item.next, .carousel-inner > .item.active.right {
      transform: translate3d(100%, 0, 0);
      left: 0;
    }
    .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
      transform: translate3d(-100%, 0, 0);
      left: 0;
    }
    .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
      transform: translate3d(0, 0, 0);
      left: 0;
    }
  }
  
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block;
  }
  
  .carousel-inner > .active {
    left: 0;
  }
  
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .carousel-inner > .next {
    left: 100%;
  }
  
  .carousel-inner > .prev {
    left: -100%;
  }
  
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0;
  }
  
  .carousel-inner > .active.left {
    left: -100%;
  }
  
  .carousel-inner > .active.right {
    left: 100%;
  }
  
  .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);
  }
  
  .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);
  }
  
  .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);
  }
  
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
  
  .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;
  }
  
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
  }
  
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
  }
  
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif;
  }
  
  .carousel-control .icon-prev:before {
    content: '\2039';
  }
  
  .carousel-control .icon-next:before {
    content: '\203a';
  }
  
  .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;
  }
  
  .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);
  }
  
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff;
  }
  
  .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);
  }
  
  .carousel-caption .btn {
    text-shadow: none;
  }
  
  @media screen and (min-width: 768px) {
    .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;
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
      margin-left: -10px;
    }
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
      margin-right: -10px;
    }
    .carousel-caption {
      left: 20%;
      right: 20%;
      padding-bottom: 30px;
    }
    .carousel-indicators {
      bottom: 20px;
    }
  }
  
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table;
  }
  
  .clearfix:after {
    clear: both;
  }
  
  .center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pull-right {
    float: right !important;
  }
  
  .pull-left {
    float: left !important;
  }
  
  .hide {
    display: none !important;
  }
  
  .show {
    display: block !important;
  }
  
  .invisible {
    visibility: hidden;
  }
  
  .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .hidden {
    display: none !important;
  }
  
  .affix {
    position: fixed;
  }
  
  .visible-xs {
    display: none !important;
  }
  
  .visible-sm {
    display: none !important;
  }
  
  .visible-md {
    display: none !important;
  }
  
  .visible-lg {
    display: none !important;
  }
  
  .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) {
    .visible-xs {
      display: block !important;
    }
    table.visible-xs {
      display: table !important;
    }
    tr.visible-xs {
      display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
      display: table-cell !important;
    }
  }
  
  @media (max-width: 767px) {
    .visible-xs-block {
      display: block !important;
    }
  }
  
  @media (max-width: 767px) {
    .visible-xs-inline {
      display: inline !important;
    }
  }
  
  @media (max-width: 767px) {
    .visible-xs-inline-block {
      display: inline-block !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
      display: block !important;
    }
    table.visible-sm {
      display: table !important;
    }
    tr.visible-sm {
      display: table-row !important;
    }
    th.visible-sm,
    td.visible-sm {
      display: table-cell !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
      display: block !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
      display: inline !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
      display: inline-block !important;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
      display: block !important;
    }
    table.visible-md {
      display: table !important;
    }
    tr.visible-md {
      display: table-row !important;
    }
    th.visible-md,
    td.visible-md {
      display: table-cell !important;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
      display: block !important;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
      display: inline !important;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
      display: inline-block !important;
    }
  }
  
  @media (min-width: 1200px) {
    .visible-lg {
      display: block !important;
    }
    table.visible-lg {
      display: table !important;
    }
    tr.visible-lg {
      display: table-row !important;
    }
    th.visible-lg,
    td.visible-lg {
      display: table-cell !important;
    }
  }
  
  @media (min-width: 1200px) {
    .visible-lg-block {
      display: block !important;
    }
  }
  
  @media (min-width: 1200px) {
    .visible-lg-inline {
      display: inline !important;
    }
  }
  
  @media (min-width: 1200px) {
    .visible-lg-inline-block {
      display: inline-block !important;
    }
  }
  
  @media (max-width: 767px) {
    .hidden-xs {
      display: none !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
      display: none !important;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
      display: none !important;
    }
  }
  
  @media (min-width: 1200px) {
    .hidden-lg {
      display: none !important;
    }
  }
  
  .visible-print {
    display: none !important;
  }
  
  @media print {
    .visible-print {
      display: block !important;
    }
    table.visible-print {
      display: table !important;
    }
    tr.visible-print {
      display: table-row !important;
    }
    th.visible-print,
    td.visible-print {
      display: table-cell !important;
    }
  }
  
  .visible-print-block {
    display: none !important;
  }
  
  @media print {
    .visible-print-block {
      display: block !important;
    }
  }
  
  .visible-print-inline {
    display: none !important;
  }
  
  @media print {
    .visible-print-inline {
      display: inline !important;
    }
  }
  
  .visible-print-inline-block {
    display: none !important;
  }
  
  @media print {
    .visible-print-inline-block {
      display: inline-block !important;
    }
  }
  
  @media print {
    .hidden-print {
      display: none !important;
    }
  }
  
  @font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-bold-webfont.woff2") format("woff2"), url("../fonts/poppins-bold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-light-webfont.woff2") format("woff2"), url("../fonts/poppins-light-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-medium-webfont.woff2") format("woff2"), url("../fonts/poppins-medium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-regular-webfont.woff2") format("woff2"), url("../fonts/poppins-regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'poppins';
    src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2"), url("../fonts/poppins-semibold-webfont.woff") format("woff");
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'icomoon';
    src: url("../fonts/icomoon.eot?5e8177&v=2");
    src: url("../fonts/icomoon.eot?5e8177&v=2#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?5e8177&v=2") format("truetype"), url("../fonts/icomoon.woff?5e8177&v=2") format("woff"), url("../fonts/icomoon.svg?5e8177&v=2#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    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;
  }
  
  /* Glyphicon, not icomoon, so doesn't start with icon- */
  .phone-call {
    font-size: 20px;
    width: 28px;
    display: inline-block;
  }
  
  .icon-lnr-add:before {
    content: "\e919";
  }
  
  .icon-bell:before {
    content: "\e951";
  }
  
  .icon-lnr-bubble:before {
    content: "\e91a";
  }
  
  .icon-lnr-calendar-full:before {
    content: "\e91b";
  }
  
  .icon-lnr-chart-bars:before {
    content: "\e91c";
  }
  
  .icon-lnr-enter:before {
    content: "\e91d";
  }
  
  .icon-lnr-envelope:before {
    content: "\e91e";
  }
  
  .icon-lnr-exit:before {
    content: "\e91f";
  }
  
  .icon-credit-card:before {
    content: "\e93f";
  }
  
  .icon-lnr-eye:before {
    content: "\e920";
  }
  
  .icon-lnr-pencil:before {
    content: "\e921";
  }
  
  .icon-lnr-thumbs-up:before {
    content: "\e922";
  }
  
  .icon-lnr-trash:before {
    content: "\e923";
  }
  
  .icon-lnr-user:before {
    content: "\e924";
  }
  
  .icon-fld-add:before {
    content: "\e90d";
  }
  
  .icon-fld-bubble:before {
    content: "\e90e";
  }
  
  .icon-fld-calendar-full:before {
    content: "\e90f";
  }
  
  .icon-fld-chart-bars:before {
    content: "\e910";
  }
  
  .icon-fld-enter:before {
    content: "\e911";
  }
  
  .icon-fld-envelope:before {
    content: "\e912";
  }
  
  .icon-fld-exit:before {
    content: "\e913";
  }
  
  .icon-fld-eye:before {
    content: "\e914";
  }
  
  .icon-fld-pencil:before {
    content: "\e915";
  }
  
  .icon-fld-thumbs-up:before {
    content: "\e916";
  }
  
  .icon-fld-trash:before {
    content: "\e917";
  }
  
  .icon-fld-user:before {
    content: "\e918";
  }
  
  .icon-facebook:before {
    content: "\e909";
  }
  
  .icon-instagram:before {
    content: "\e90a";
  }
  
  .icon-mail:before {
    content: "\e90b";
  }
  
  .icon-twitter:before {
    content: "\e90c";
  }
  
  .icon-9:before {
    content: "\e908";
  }
  
  .icon-1:before {
    content: "\e900";
  }
  
  .icon-2:before {
    content: "\e901";
  }
  
  .icon-3:before {
    content: "\e902";
  }
  
  .icon-4:before {
    content: "\e903";
  }
  
  .icon-5:before {
    content: "\e904";
  }
  
  .icon-6:before {
    content: "\e905";
  }
  
  .icon-7:before {
    content: "\e906";
  }
  
  .icon-8:before {
    content: "\e907";
  }
  
  .fancybox-enabled {
    overflow: hidden;
  }
  
  .fancybox-enabled body {
    overflow: visible;
    touch-action: none;
  }
  
  .fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Make sure that the first one is on the top */
  .fancybox-container ~ .fancybox-container {
    z-index: 99992;
  }
  
  .fancybox-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0f0f11;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .fancybox-container--ready .fancybox-bg {
    opacity: 0.87;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  .fancybox-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    z-index: 99994;
    transition: opacity .2s;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    direction: ltr;
  }
  
  .fancybox-show-controls .fancybox-controls {
    opacity: 1;
  }
  
  .fancybox-infobar {
    display: none;
  }
  
  .fancybox-show-infobar .fancybox-infobar {
    display: inline-block;
    pointer-events: all;
  }
  
  .fancybox-infobar__body {
    display: inline-block;
    width: 70px;
    line-height: 44px;
    font-size: 13px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    color: #ddd;
    background-color: rgba(30, 30, 30, 0.7);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
  }
  
  .fancybox-buttons {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    pointer-events: all;
  }
  
  .fancybox-show-buttons .fancybox-buttons {
    display: block;
  }
  
  .fancybox-slider-wrap {
    overflow: hidden;
    direction: ltr;
  }
  
  .fancybox-slider-wrap,
  .fancybox-slider {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: none;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
  }
  
  .fancybox-slide > * {
    display: inline-block;
    position: relative;
    padding: 24px;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box;
  }
  
  .fancybox-slide--image {
    overflow: hidden;
  }
  
  .fancybox-slide--image::before {
    display: none;
  }
  
  .fancybox-content {
    display: inline-block;
    position: relative;
    margin: 44px auto;
    padding: 0;
    border: 0;
    width: 80%;
    height: calc(100% - 88px);
    vertical-align: middle;
    line-height: normal;
    text-align: left;
    white-space: normal;
    outline: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
  }
  
  .fancybox-iframe {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  
  .fancybox-slide--video .fancybox-content,
  .fancybox-slide--video .fancybox-iframe {
    background: transparent;
  }
  
  .fancybox-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .fancybox-image,
  .fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    max-width: none;
    max-height: none;
    background: transparent;
    background-size: 100% 100%;
  }
  
  .fancybox-controls--canzoomOut .fancybox-placeholder {
    cursor: zoom-out;
  }
  
  .fancybox-controls--canzoomIn .fancybox-placeholder {
    cursor: zoom-in;
  }
  
  .fancybox-controls--canGrab .fancybox-placeholder {
    cursor: grab;
  }
  
  .fancybox-controls--isGrabbing .fancybox-placeholder {
    cursor: grabbing;
  }
  
  .fancybox-spaceball {
    z-index: 1;
  }
  
  .fancybox-tmp {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden;
  }
  
  .fancybox-error {
    position: absolute;
    margin: 0;
    padding: 40px;
    top: 50%;
    left: 50%;
    width: 380px;
    max-width: 100%;
    transform: translate(-50%, -50%);
    background: #fff;
    cursor: default;
  }
  
  .fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  .fancybox-close-small {
    position: absolute;
    top: 20px;
    right: 15px;
    padding: 0;
    margin: 0;
    width: 25px;
    height: 25px;
    color: #fff;
    text-align: center;
    border-width: 0;
    cursor: pointer;
    transition: background .2s;
    box-sizing: border-box;
    background: url("../img/close-white.svg") no-repeat;
    z-index: 2;
  }
  
  @media screen and (max-width: 767px) {
    .fancybox-close-small {
      width: 15px;
      height: 15px;
      right: 23px;
    }
  }
  
  .fancybox-close-small:focus {
    outline: 1px dotted #888;
  }
  
  .fancybox-slide--video .fancybox-close-small {
    top: -36px;
    right: -36px;
    background: transparent;
  }
  
  .fancybox-close-small:hover {
    opacity: .8;
  }
  
  /* Caption */
  .fancybox-caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 0 30px;
    z-index: 99998;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
  }
  
  .fancybox-show-caption .fancybox-caption-wrap {
    opacity: 1;
  }
  
  .fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none;
  }
  
  .fancybox-caption a,
  .fancybox-caption button {
    pointer-events: all;
  }
  
  .fancybox-caption a {
    color: #fff;
    text-decoration: underline;
  }
  
  /* Buttons */
  .fancybox-button {
    display: inline-block;
    position: relative;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: transparent;
    color: #fff;
    box-sizing: border-box;
    vertical-align: top;
    outline: none;
  }
  
  .fancybox-button--disabled {
    cursor: default;
    pointer-events: none;
  }
  
  .fancybox-infobar__body, .fancybox-button {
    background: rgba(30, 30, 30, 0.6);
  }
  
  .fancybox-button:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .fancybox-button::before,
  .fancybox-button::after {
    content: '';
    pointer-events: none;
    position: absolute;
    border-color: #fff;
    background-color: currentColor;
    color: currentColor;
    opacity: 0.9;
    box-sizing: border-box;
    display: inline-block;
  }
  
  .fancybox-button--disabled::before,
  .fancybox-button--disabled::after {
    opacity: 0.5;
  }
  
  .fancybox-button--left::after {
    left: 20px;
    top: 18px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: rotate(-135deg);
  }
  
  .fancybox-button--right::after {
    right: 20px;
    top: 18px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: rotate(45deg);
  }
  
  .fancybox-button--left {
    border-bottom-left-radius: 5px;
  }
  
  .fancybox-button--right {
    border-bottom-right-radius: 5px;
  }
  
  .fancybox-button--close {
    float: right;
  }
  
  .fancybox-button--close::before, .fancybox-button--close::after {
    content: '';
    display: inline-block;
    position: absolute;
    height: 2px;
    width: 16px;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
  }
  
  .fancybox-button--close::before {
    transform: rotate(45deg);
  }
  
  .fancybox-button--close::after {
    transform: rotate(-45deg);
  }
  
  /* Loading spinner */
  .fancybox-loading {
    border: 6px solid rgba(100, 100, 100, 0.4);
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    animation: fancybox-rotate .8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 99999;
  }
  
  @keyframes fancybox-rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  
  /* Styling for Small-Screen Devices */
  @media all and (max-width: 800px) {
    .fancybox-controls {
      text-align: left;
    }
    .fancybox-button--left,
    .fancybox-button--right,
    .fancybox-buttons button:not(.fancybox-button--close) {
      display: none !important;
    }
    .fancybox-caption {
      padding: 20px 0;
      margin: 0;
    }
  }
  
  /* Fullscreen  */
  .fancybox-button--fullscreen::before {
    width: 15px;
    height: 11px;
    left: 15px;
    top: 16px;
    border: 2px solid;
    background: none;
  }
  
  /* Slideshow button */
  .fancybox-button--play::before {
    top: 16px;
    left: 18px;
    width: 0;
    height: 0;
    border-top: 6px inset transparent;
    border-bottom: 6px inset transparent;
    border-left: 10px solid;
    border-radius: 1px;
    background: transparent;
  }
  
  .fancybox-button--pause::before {
    top: 16px;
    left: 18px;
    width: 7px;
    height: 11px;
    border-style: solid;
    border-width: 0 2px 0 2px;
    background: transparent;
  }
  
  /* Thumbs */
  .fancybox-button--thumbs span {
    font-size: 23px;
  }
  
  .fancybox-button--thumbs::before {
    top: 20px;
    left: 21px;
    width: 3px;
    height: 3px;
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
  }
  
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 220px;
  }
  
  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    z-index: 99993;
    word-break: normal;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  }
  
  .fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
  }
  
  .fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid #fff;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
  }
  
  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .fancybox-thumbs > ul > li:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1;
  }
  
  /* Styling for Small-Screen Devices */
  @media all and (max-width: 800px) {
    .fancybox-thumbs {
      display: none !important;
    }
    .fancybox-container--thumbs .fancybox-controls,
    .fancybox-container--thumbs .fancybox-slider-wrap,
    .fancybox-container--thumbs .fancybox-caption-wrap {
      right: 0;
    }
  }
  
  /* custom checkbox styles */
  .jcf-checkbox {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: default;
    background: #fff;
    border: 1px solid #777;
    margin: 0 3px 0 0;
    height: 16px;
    width: 16px;
  }
  
  .jcf-checkbox span {
    position: absolute;
    display: none;
    height: 4px;
    width: 8px;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -6px;
    border: 3px solid #777;
    border-width: 0 0 3px 3px;
    transform: rotate(-45deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865483, M12=0.7071067811865467, M21=-0.7071067811865467, M22=0.7071067811865483, SizingMethod='auto expand')";
  }
  
  :root .jcf-checkbox span {
    margin: -4px 0 0 -5px;
  }
  
  .jcf-checkbox input[type="checkbox"] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    left: 0;
    top: 0;
  }
  
  .jcf-checkbox.jcf-checked span {
    display: block;
  }
  
  /* custom radio styles */
  .jcf-radio {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: default;
    background: #fff;
    border: 1px solid #777;
    border-radius: 9px;
    margin: 0 3px 0 0;
    height: 16px;
    width: 16px;
  }
  
  .jcf-radio span {
    display: none;
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #777;
    border-radius: 100%;
  }
  
  .jcf-radio input[type="radio"] {
    position: absolute;
    height: 100%;
    width: 100%;
    border: 0;
    margin: 0;
    left: 0;
    top: 0;
  }
  
  .jcf-radio.jcf-checked span {
    display: block;
  }
  
  /* custom select styles */
  .jcf-select {
    display: inline-block;
    vertical-align: top;
    position: relative;
    border: 1px solid #777;
    background: #fff;
    margin: 0 0 12px;
    min-width: 150px;
    height: 26px;
  }
  
  .jcf-select select {
    z-index: 1;
    left: 0;
    top: 0;
  }
  
  .jcf-select .jcf-select-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: default;
    display: block;
    font-size: 13px;
    line-height: 26px;
    margin: 0 35px 0 8px;
  }
  
  .jcf-select .jcf-select-opener {
    position: absolute;
    text-align: center;
    background: #aaa;
    width: 26px;
    bottom: 0;
    right: 0;
    top: 0;
  }
  
  body > .jcf-select-drop {
    position: absolute;
    margin: -1px 0 0;
    z-index: 9999;
  }
  
  body > .jcf-select-drop.jcf-drop-flipped {
    margin: 1px 0 0;
  }
  
  .jcf-select .jcf-select-drop {
    position: absolute;
    margin-top: 0px;
    z-index: 9999;
    top: 100%;
    left: -1px;
    right: -1px;
  }
  
  .jcf-select .jcf-drop-flipped {
    bottom: 100%;
    top: auto;
  }
  
  .jcf-select-drop .jcf-select-drop-content {
    border: 1px solid #f00;
  }
  
  /* multiple select styles */
  .jcf-list-box {
    overflow: hidden;
    display: inline-block;
    border: 1px solid #b8c3c9;
    border-radius: 4px;
    min-width: 200px;
    margin: 0 15px;
  }
  
  /* select options styles */
  .jcf-list {
    display: inline-block;
    vertical-align: top;
    position: relative;
    background: #fff;
    line-height: 14px;
    font-size: 12px;
    width: 100%;
  }
  
  .jcf-list ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
  
  .jcf-list ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  
  .jcf-list .jcf-list-content {
    vertical-align: top;
    display: inline-block;
    overflow: auto;
    width: 100%;
  }
  
  .jcf-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .jcf-list ul li {
    overflow: hidden;
    display: block;
  }
  
  .jcf-list .jcf-overflow {
    overflow: auto;
  }
  
  .jcf-list .jcf-option {
    overflow: hidden;
    cursor: default;
    display: block;
    padding: 5px 9px;
    color: #656565;
    height: 1%;
  }
  
  .jcf-list .jcf-disabled {
    background: #fff !important;
    color: #aaa !important;
  }
  
  .jcf-select-drop .jcf-hover,
  .jcf-list-box .jcf-selected {
    background: #e6e6e6;
    color: #000;
  }
  
  .jcf-list .jcf-optgroup-caption {
    white-space: nowrap;
    font-weight: bold;
    display: block;
    padding: 5px 9px;
    cursor: default;
    color: #000;
  }
  
  .jcf-list .jcf-optgroup .jcf-option {
    padding-left: 30px;
  }
  
  /* custom range input styles */
  .jcf-range {
    display: inline-block;
    min-width: 200px;
    width: 100%;
  }
  
  .jcf-range .jcf-range-track {
    margin: 0 20px 0 0;
    position: relative;
    display: block;
  }
  
  .jcf-range .jcf-range-wrapper {
    background: #e1e1e1;
    display: block;
    margin: 5px 0;
    height: 4px;
  }
  
  .jcf-range.jcf-vertical {
    width: auto;
  }
  
  .jcf-range.jcf-vertical .jcf-range-wrapper {
    margin: 0;
    width: 10px;
    height: auto;
    padding: 20px 0 0;
  }
  
  .jcf-range.jcf-vertical .jcf-range-track {
    height: 180px;
    width: 10px;
  }
  
  .jcf-range.jcf-vertical .jcf-range-handle {
    left: -5px;
    top: auto;
  }
  
  .jcf-range .jcf-range-handle {
    position: absolute;
    background: #0fccd8;
    border-radius: 24px;
    width: 25px;
    height: 25px;
    margin: -11px 0 0;
    z-index: 1;
    top: 0;
    left: 0;
  }
  
  .jcf-range .jcf-range-mark {
    position: absolute;
    overflow: hidden;
    background: #000;
    width: 1px;
    height: 3px;
    top: -7px;
    margin: 0 0 0 9px;
  }
  
  .jcf-range.jcf-vertical .jcf-range-mark {
    margin: 0 0 9px;
    left: 14px;
    top: auto;
    width: 3px;
    height: 1px;
  }
  
  .jcf-range.jcf-disabled {
    background: none !important;
    opacity: 0.3;
  }
  
  /* common custom form elements styles */
  .jcf-disabled {
    background: #ddd !important;
  }
  
  .jcf-focus,
  .jcf-focus * {
    border-color: #f00 !important;
  }
  
  .jcf-tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: #0fccd8;
    padding: 5px 15px;
    color: #fff;
    border-radius: 4px;
    margin-top: -40px;
  }
  
  .jcf-tooltip:after {
    content: '';
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid #0fccd8;
    border-color: #0fccd8 transparent transparent transparent;
  }
  
  .select2-container {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    vertical-align: middle;
  }
  
  @media screen and (min-width: 1024px) {
    .select2-container {
      margin-right: 24px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .select2-container {
      margin-bottom: 32px;
    }
  }
  
  .select2-container * {
    outline: none !important;
  }
  
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 38px;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .select2-container .select2-selection--single .select2-selection__clear {
    position: relative;
  }
  
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
  }
  
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .select2-container .select2-search--inline {
    float: left;
  }
  
  .select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0;
    outline: none !important;
  }
  
  .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  
  .select2-dropdown {
    background-color: white;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    padding: 20px;
  }
  
  .select2-results {
    display: block;
  }
  
  .select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #222;
  }
  
  .select2-results__option {
    padding: 6px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .select2-results__option[aria-selected] {
    cursor: pointer;
    font-size: 14px;
  }
  
  .select2-container--open .select2-dropdown {
    left: 0;
  }
  
  .select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom: 2px solid #0fccd8;
  }
  
  .select2-search--dropdown {
    display: block;
    padding: 4px;
  }
  
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  
  .select2-search--dropdown.select2-search--hide {
    display: none;
  }
  
  .select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
  }
  
  .select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #363b42;
    line-height: 36px;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #363b42;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #dedede transparent transparent transparent;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    height: 0;
    left: 50%;
    margin-left: -6px;
    margin-top: 2px;
    position: absolute;
    top: 50%;
    width: 0;
  }
  
  .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
  }
  
  .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
  }
  
  .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
  }
  
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
  }
  
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #dedede transparent;
    border-width: 0 6px 6px 6px;
  }
  
  .select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
  }
  
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
  }
  
  .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
  }
  
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left;
  }
  
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
  }
  
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
  }
  
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
  }
  
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
  }
  
  .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
  }
  
  .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
  }
  
  .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
  }
  
  .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
  }
  
  .select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
  }
  
  .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
  }
  
  .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e2e2e2;
  }
  
  .select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
  }
  
  .select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: scroll;
  }
  
  .select2-container--default .select2-results__option[role=group] {
    padding: 0;
  }
  
  .select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
  }
  
  .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f8f8f8;
  }
  
  .select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
  }
  
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
  }
  
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
  }
  
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
  }
  
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
  }
  
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
  }
  
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
  }
  
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0fccd8;
    color: white;
    font-size: 14px;
  }
  
  .select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
    font-weight: 600;
  }
  
  .select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: linear-gradient(to bottom, white 50%, #eee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
  }
  
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
  }
  
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
  }
  
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
  }
  
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999;
  }
  
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
  }
  
  .select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
  }
  
  .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
  }
  
  .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
  }
  
  .select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
  }
  
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
  }
  
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
  }
  
  .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: linear-gradient(to bottom, white 0%, #eee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
  }
  
  .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: linear-gradient(to bottom, #eee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
  }
  
  .select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
  }
  
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
  }
  
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px;
  }
  
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none;
  }
  
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
  }
  
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
  }
  
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
  }
  
  .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
  }
  
  .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
  }
  
  .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
  }
  
  .select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
  }
  
  .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  
  .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
  }
  
  .select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
  }
  
  .select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
  }
  
  .select2-container--classic .select2-dropdown--above {
    border-bottom: none;
  }
  
  .select2-container--classic .select2-dropdown--below {
    border-top: none;
  }
  
  .select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: scroll;
  }
  
  .select2-container--classic .select2-results__option[role=group] {
    padding: 0;
  }
  
  .select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
  }
  
  .select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
  }
  
  .select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
  }
  
  .select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
  }
  
  .select2 {
    border-bottom: 2px solid #0fccd8;
  }
  
  /*!
   *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
   *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
   */
  /* FONT PATH
   * -------------------------- */
  @font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont.eot?v=4.6.3");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  
  .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* makes the font 33% larger relative to the icon container */
  .fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -15%;
  }
  
  .fa-2x {
    font-size: 2em;
  }
  
  .fa-3x {
    font-size: 3em;
  }
  
  .fa-4x {
    font-size: 4em;
  }
  
  .fa-5x {
    font-size: 5em;
  }
  
  .fa-fw {
    width: 1.2857142857em;
    text-align: center;
  }
  
  .fa-ul {
    padding-left: 0;
    margin-left: 2.1428571429em;
    list-style-type: none;
  }
  
  .fa-ul > li {
    position: relative;
  }
  
  .fa-li {
    position: absolute;
    left: -2.1428571429em;
    width: 2.1428571429em;
    top: 0.1428571429em;
    text-align: center;
  }
  
  .fa-li.fa-lg {
    left: -1.8571428571em;
  }
  
  .fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eee;
    border-radius: .1em;
  }
  
  .fa-pull-left {
    float: left;
  }
  
  .fa-pull-right {
    float: right;
  }
  
  .fa.fa-pull-left {
    margin-right: .3em;
  }
  
  .fa.fa-pull-right {
    margin-left: .3em;
  }
  
  /* Deprecated as of 4.4.0 */
  .pull-right {
    float: right;
  }
  
  .pull-left {
    float: left;
  }
  
  .fa.pull-left {
    margin-right: .3em;
  }
  
  .fa.pull-right {
    margin-left: .3em;
  }
  
  .fa-spin {
    animation: fa-spin 2s infinite linear;
  }
  
  .fa-pulse {
    animation: fa-spin 1s infinite steps(8);
  }
  
  @keyframes fa-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(359deg);
    }
  }
  
  .fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg);
  }
  
  .fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg);
  }
  
  .fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg);
  }
  
  .fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scale(-1, 1);
  }
  
  .fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    transform: scale(1, -1);
  }
  
  :root .fa-rotate-90,
  :root .fa-rotate-180,
  :root .fa-rotate-270,
  :root .fa-flip-horizontal,
  :root .fa-flip-vertical {
    filter: none;
  }
  
  .fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
  }
  
  .fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
  }
  
  .fa-stack-1x {
    line-height: inherit;
  }
  
  .fa-stack-2x {
    font-size: 2em;
  }
  
  .fa-inverse {
    color: #fff;
  }
  
  /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
     readers do not read off random characters that represent icons */
  .fa-glass:before {
    content: "";
  }
  
  .fa-music:before {
    content: "";
  }
  
  .fa-search:before {
    content: "";
  }
  
  .fa-envelope-o:before {
    content: "";
  }
  
  .fa-heart:before {
    content: "";
  }
  
  .fa-star:before {
    content: "";
  }
  
  .fa-star-o:before {
    content: "";
  }
  
  .fa-user:before {
    content: "";
  }
  
  .fa-film:before {
    content: "";
  }
  
  .fa-th-large:before {
    content: "";
  }
  
  .fa-th:before {
    content: "";
  }
  
  .fa-th-list:before {
    content: "";
  }
  
  .fa-check:before {
    content: "";
  }
  
  .fa-remove:before,
  .fa-close:before,
  .fa-times:before {
    content: "";
  }
  
  .fa-search-plus:before {
    content: "";
  }
  
  .fa-search-minus:before {
    content: "";
  }
  
  .fa-power-off:before {
    content: "";
  }
  
  .fa-signal:before {
    content: "";
  }
  
  .fa-gear:before,
  .fa-cog:before {
    content: "";
  }
  
  .fa-trash-o:before {
    content: "";
  }
  
  .fa-home:before {
    content: "";
  }
  
  .fa-file-o:before {
    content: "";
  }
  
  .fa-clock-o:before {
    content: "";
  }
  
  .fa-road:before {
    content: "";
  }
  
  .fa-download:before {
    content: "";
  }
  
  .fa-arrow-circle-o-down:before {
    content: "";
  }
  
  .fa-arrow-circle-o-up:before {
    content: "";
  }
  
  .fa-inbox:before {
    content: "";
  }
  
  .fa-play-circle-o:before {
    content: "";
  }
  
  .fa-rotate-right:before,
  .fa-repeat:before {
    content: "";
  }
  
  .fa-refresh:before {
    content: "";
  }
  
  .fa-list-alt:before {
    content: "";
  }
  
  .fa-lock:before {
    content: "";
  }
  
  .fa-flag:before {
    content: "";
  }
  
  .fa-headphones:before {
    content: "";
  }
  
  .fa-volume-off:before {
    content: "";
  }
  
  .fa-volume-down:before {
    content: "";
  }
  
  .fa-volume-up:before {
    content: "";
  }
  
  .fa-qrcode:before {
    content: "";
  }
  
  .fa-barcode:before {
    content: "";
  }
  
  .fa-tag:before {
    content: "";
  }
  
  .fa-tags:before {
    content: "";
  }
  
  .fa-book:before {
    content: "";
  }
  
  .fa-bookmark:before {
    content: "";
  }
  
  .fa-print:before {
    content: "";
  }
  
  .fa-camera:before {
    content: "";
  }
  
  .fa-font:before {
    content: "";
  }
  
  .fa-bold:before {
    content: "";
  }
  
  .fa-italic:before {
    content: "";
  }
  
  .fa-text-height:before {
    content: "";
  }
  
  .fa-text-width:before {
    content: "";
  }
  
  .fa-align-left:before {
    content: "";
  }
  
  .fa-align-center:before {
    content: "";
  }
  
  .fa-align-right:before {
    content: "";
  }
  
  .fa-align-justify:before {
    content: "";
  }
  
  .fa-list:before {
    content: "";
  }
  
  .fa-dedent:before,
  .fa-outdent:before {
    content: "";
  }
  
  .fa-indent:before {
    content: "";
  }
  
  .fa-video-camera:before {
    content: "";
  }
  
  .fa-photo:before,
  .fa-image:before,
  .fa-picture-o:before {
    content: "";
  }
  
  .fa-pencil:before {
    content: "";
  }
  
  .fa-map-marker:before {
    content: "";
  }
  
  .fa-adjust:before {
    content: "";
  }
  
  .fa-tint:before {
    content: "";
  }
  
  .fa-edit:before,
  .fa-pencil-square-o:before {
    content: "";
  }
  
  .fa-share-square-o:before {
    content: "";
  }
  
  .fa-check-square-o:before {
    content: "";
  }
  
  .fa-arrows:before {
    content: "";
  }
  
  .fa-step-backward:before {
    content: "";
  }
  
  .fa-fast-backward:before {
    content: "";
  }
  
  .fa-backward:before {
    content: "";
  }
  
  .fa-play:before {
    content: "";
  }
  
  .fa-pause:before {
    content: "";
  }
  
  .fa-stop:before {
    content: "";
  }
  
  .fa-forward:before {
    content: "";
  }
  
  .fa-fast-forward:before {
    content: "";
  }
  
  .fa-step-forward:before {
    content: "";
  }
  
  .fa-eject:before {
    content: "";
  }
  
  .fa-chevron-left:before {
    content: "";
  }
  
  .fa-chevron-right:before {
    content: "";
  }
  
  .fa-plus-circle:before {
    content: "";
  }
  
  .fa-minus-circle:before {
    content: "";
  }
  
  .fa-times-circle:before {
    content: "";
  }
  
  .fa-check-circle:before {
    content: "";
  }
  
  .fa-question-circle:before {
    content: "";
  }
  
  .fa-info-circle:before {
    content: "";
  }
  
  .fa-crosshairs:before {
    content: "";
  }
  
  .fa-times-circle-o:before {
    content: "";
  }
  
  .fa-check-circle-o:before {
    content: "";
  }
  
  .fa-ban:before {
    content: "";
  }
  
  .fa-arrow-left:before {
    content: "";
  }
  
  .fa-arrow-right:before {
    content: "";
  }
  
  .fa-arrow-up:before {
    content: "";
  }
  
  .fa-arrow-down:before {
    content: "";
  }
  
  .fa-mail-forward:before,
  .fa-share:before {
    content: "";
  }
  
  .fa-expand:before {
    content: "";
  }
  
  .fa-compress:before {
    content: "";
  }
  
  .fa-plus:before {
    content: "";
  }
  
  .fa-minus:before {
    content: "";
  }
  
  .fa-asterisk:before {
    content: "";
  }
  
  .fa-exclamation-circle:before {
    content: "";
  }
  
  .fa-gift:before {
    content: "";
  }
  
  .fa-leaf:before {
    content: "";
  }
  
  .fa-fire:before {
    content: "";
  }
  
  .fa-eye:before {
    content: "";
  }
  
  .fa-eye-slash:before {
    content: "";
  }
  
  .fa-warning:before,
  .fa-exclamation-triangle:before {
    content: "";
  }
  
  .fa-plane:before {
    content: "";
  }
  
  .fa-calendar:before {
    content: "";
  }
  
  .fa-random:before {
    content: "";
  }
  
  .fa-comment:before {
    content: "";
  }
  
  .fa-magnet:before {
    content: "";
  }
  
  .fa-chevron-up:before {
    content: "";
  }
  
  .fa-chevron-down:before {
    content: "";
  }
  
  .fa-retweet:before {
    content: "";
  }
  
  .fa-shopping-cart:before {
    content: "";
  }
  
  .fa-folder:before {
    content: "";
  }
  
  .fa-folder-open:before {
    content: "";
  }
  
  .fa-arrows-v:before {
    content: "";
  }
  
  .fa-arrows-h:before {
    content: "";
  }
  
  .fa-bar-chart-o:before,
  .fa-bar-chart:before {
    content: "";
  }
  
  .fa-twitter-square:before {
    content: "";
  }
  
  .fa-facebook-square:before {
    content: "";
  }
  
  .fa-camera-retro:before {
    content: "";
  }
  
  .fa-key:before {
    content: "";
  }
  
  .fa-gears:before,
  .fa-cogs:before {
    content: "";
  }
  
  .fa-comments:before {
    content: "";
  }
  
  .fa-thumbs-o-up:before {
    content: "";
  }
  
  .fa-thumbs-o-down:before {
    content: "";
  }
  
  .fa-star-half:before {
    content: "";
  }
  
  .fa-heart-o:before {
    content: "";
  }
  
  .fa-sign-out:before {
    content: "";
  }
  
  .fa-linkedin-square:before {
    content: "";
  }
  
  .fa-thumb-tack:before {
    content: "";
  }
  
  .fa-external-link:before {
    content: "";
  }
  
  .fa-sign-in:before {
    content: "";
  }
  
  .fa-trophy:before {
    content: "";
  }
  
  .fa-github-square:before {
    content: "";
  }
  
  .fa-upload:before {
    content: "";
  }
  
  .fa-lemon-o:before {
    content: "";
  }
  
  .fa-phone:before {
    content: "";
  }
  
  .fa-square-o:before {
    content: "";
  }
  
  .fa-bookmark-o:before {
    content: "";
  }
  
  .fa-phone-square:before {
    content: "";
  }
  
  .fa-twitter:before {
    content: "";
  }
  
  .fa-facebook-f:before,
  .fa-facebook:before {
    content: "";
  }
  
  .fa-github:before {
    content: "";
  }
  
  .fa-unlock:before {
    content: "";
  }
  
  .fa-credit-card:before {
    content: "";
  }
  
  .fa-feed:before,
  .fa-rss:before {
    content: "";
  }
  
  .fa-hdd-o:before {
    content: "";
  }
  
  .fa-bullhorn:before {
    content: "";
  }
  
  .fa-bell:before {
    content: "";
  }
  
  .fa-certificate:before {
    content: "";
  }
  
  .fa-hand-o-right:before {
    content: "";
  }
  
  .fa-hand-o-left:before {
    content: "";
  }
  
  .fa-hand-o-up:before {
    content: "";
  }
  
  .fa-hand-o-down:before {
    content: "";
  }
  
  .fa-arrow-circle-left:before {
    content: "";
  }
  
  .fa-arrow-circle-right:before {
    content: "";
  }
  
  .fa-arrow-circle-up:before {
    content: "";
  }
  
  .fa-arrow-circle-down:before {
    content: "";
  }
  
  .fa-globe:before {
    content: "";
  }
  
  .fa-wrench:before {
    content: "";
  }
  
  .fa-tasks:before {
    content: "";
  }
  
  .fa-filter:before {
    content: "";
  }
  
  .fa-briefcase:before {
    content: "";
  }
  
  .fa-arrows-alt:before {
    content: "";
  }
  
  .fa-group:before,
  .fa-users:before {
    content: "";
  }
  
  .fa-chain:before,
  .fa-link:before {
    content: "";
  }
  
  .fa-cloud:before {
    content: "";
  }
  
  .fa-flask:before {
    content: "";
  }
  
  .fa-cut:before,
  .fa-scissors:before {
    content: "";
  }
  
  .fa-copy:before,
  .fa-files-o:before {
    content: "";
  }
  
  .fa-paperclip:before {
    content: "";
  }
  
  .fa-save:before,
  .fa-floppy-o:before {
    content: "";
  }
  
  .fa-square:before {
    content: "";
  }
  
  .fa-navicon:before,
  .fa-reorder:before,
  .fa-bars:before {
    content: "";
  }
  
  .fa-list-ul:before {
    content: "";
  }
  
  .fa-list-ol:before {
    content: "";
  }
  
  .fa-strikethrough:before {
    content: "";
  }
  
  .fa-underline:before {
    content: "";
  }
  
  .fa-table:before {
    content: "";
  }
  
  .fa-magic:before {
    content: "";
  }
  
  .fa-truck:before {
    content: "";
  }
  
  .fa-pinterest:before {
    content: "";
  }
  
  .fa-pinterest-square:before {
    content: "";
  }
  
  .fa-google-plus-square:before {
    content: "";
  }
  
  .fa-google-plus:before {
    content: "";
  }
  
  .fa-money:before {
    content: "";
  }
  
  .fa-caret-down:before {
    content: "";
  }
  
  .fa-caret-up:before {
    content: "";
  }
  
  .fa-caret-left:before {
    content: "";
  }
  
  .fa-caret-right:before {
    content: "";
  }
  
  .fa-columns:before {
    content: "";
  }
  
  .fa-unsorted:before,
  .fa-sort:before {
    content: "";
  }
  
  .fa-sort-down:before,
  .fa-sort-desc:before {
    content: "";
  }
  
  .fa-sort-up:before,
  .fa-sort-asc:before {
    content: "";
  }
  
  .fa-envelope:before {
    content: "";
  }
  
  .fa-linkedin:before {
    content: "";
  }
  
  .fa-rotate-left:before,
  .fa-undo:before {
    content: "";
  }
  
  .fa-legal:before,
  .fa-gavel:before {
    content: "";
  }
  
  .fa-dashboard:before,
  .fa-tachometer:before {
    content: "";
  }
  
  .fa-comment-o:before {
    content: "";
  }
  
  .fa-comments-o:before {
    content: "";
  }
  
  .fa-flash:before,
  .fa-bolt:before {
    content: "";
  }
  
  .fa-sitemap:before {
    content: "";
  }
  
  .fa-umbrella:before {
    content: "";
  }
  
  .fa-paste:before,
  .fa-clipboard:before {
    content: "";
  }
  
  .fa-lightbulb-o:before {
    content: "";
  }
  
  .fa-exchange:before {
    content: "";
  }
  
  .fa-cloud-download:before {
    content: "";
  }
  
  .fa-cloud-upload:before {
    content: "";
  }
  
  .fa-user-md:before {
    content: "";
  }
  
  .fa-stethoscope:before {
    content: "";
  }
  
  .fa-suitcase:before {
    content: "";
  }
  
  .fa-bell-o:before {
    content: "";
  }
  
  .fa-coffee:before {
    content: "";
  }
  
  .fa-cutlery:before {
    content: "";
  }
  
  .fa-file-text-o:before {
    content: "";
  }
  
  .fa-building-o:before {
    content: "";
  }
  
  .fa-hospital-o:before {
    content: "";
  }
  
  .fa-ambulance:before {
    content: "";
  }
  
  .fa-medkit:before {
    content: "";
  }
  
  .fa-fighter-jet:before {
    content: "";
  }
  
  .fa-beer:before {
    content: "";
  }
  
  .fa-h-square:before {
    content: "";
  }
  
  .fa-plus-square:before {
    content: "";
  }
  
  .fa-angle-double-left:before {
    content: "";
  }
  
  .fa-angle-double-right:before {
    content: "";
  }
  
  .fa-angle-double-up:before {
    content: "";
  }
  
  .fa-angle-double-down:before {
    content: "";
  }
  
  .fa-angle-left:before {
    content: "";
  }
  
  .fa-angle-right:before {
    content: "";
  }
  
  .fa-angle-up:before {
    content: "";
  }
  
  .fa-angle-down:before {
    content: "";
  }
  
  .fa-desktop:before {
    content: "";
  }
  
  .fa-laptop:before {
    content: "";
  }
  
  .fa-tablet:before {
    content: "";
  }
  
  .fa-mobile-phone:before,
  .fa-mobile:before {
    content: "";
  }
  
  .fa-circle-o:before {
    content: "";
  }
  
  .fa-quote-left:before {
    content: "";
  }
  
  .fa-quote-right:before {
    content: "";
  }
  
  .fa-spinner:before {
    content: "";
  }
  
  .fa-circle:before {
    content: "";
  }
  
  .fa-mail-reply:before,
  .fa-reply:before {
    content: "";
  }
  
  .fa-github-alt:before {
    content: "";
  }
  
  .fa-folder-o:before {
    content: "";
  }
  
  .fa-folder-open-o:before {
    content: "";
  }
  
  .fa-smile-o:before {
    content: "";
  }
  
  .fa-frown-o:before {
    content: "";
  }
  
  .fa-meh-o:before {
    content: "";
  }
  
  .fa-gamepad:before {
    content: "";
  }
  
  .fa-keyboard-o:before {
    content: "";
  }
  
  .fa-flag-o:before {
    content: "";
  }
  
  .fa-flag-checkered:before {
    content: "";
  }
  
  .fa-terminal:before {
    content: "";
  }
  
  .fa-code:before {
    content: "";
  }
  
  .fa-mail-reply-all:before,
  .fa-reply-all:before {
    content: "";
  }
  
  .fa-star-half-empty:before,
  .fa-star-half-full:before,
  .fa-star-half-o:before {
    content: "";
  }
  
  .fa-location-arrow:before {
    content: "";
  }
  
  .fa-crop:before {
    content: "";
  }
  
  .fa-code-fork:before {
    content: "";
  }
  
  .fa-unlink:before,
  .fa-chain-broken:before {
    content: "";
  }
  
  .fa-question:before {
    content: "";
  }
  
  .fa-info:before {
    content: "";
  }
  
  .fa-exclamation:before {
    content: "";
  }
  
  .fa-superscript:before {
    content: "";
  }
  
  .fa-subscript:before {
    content: "";
  }
  
  .fa-eraser:before {
    content: "";
  }
  
  .fa-puzzle-piece:before {
    content: "";
  }
  
  .fa-microphone:before {
    content: "";
  }
  
  .fa-microphone-slash:before {
    content: "";
  }
  
  .fa-shield:before {
    content: "";
  }
  
  .fa-calendar-o:before {
    content: "";
  }
  
  .fa-fire-extinguisher:before {
    content: "";
  }
  
  .fa-rocket:before {
    content: "";
  }
  
  .fa-maxcdn:before {
    content: "";
  }
  
  .fa-chevron-circle-left:before {
    content: "";
  }
  
  .fa-chevron-circle-right:before {
    content: "";
  }
  
  .fa-chevron-circle-up:before {
    content: "";
  }
  
  .fa-chevron-circle-down:before {
    content: "";
  }
  
  .fa-html5:before {
    content: "";
  }
  
  .fa-css3:before {
    content: "";
  }
  
  .fa-anchor:before {
    content: "";
  }
  
  .fa-unlock-alt:before {
    content: "";
  }
  
  .fa-bullseye:before {
    content: "";
  }
  
  .fa-ellipsis-h:before {
    content: "";
  }
  
  .fa-ellipsis-v:before {
    content: "";
  }
  
  .fa-rss-square:before {
    content: "";
  }
  
  .fa-play-circle:before {
    content: "";
  }
  
  .fa-ticket:before {
    content: "";
  }
  
  .fa-minus-square:before {
    content: "";
  }
  
  .fa-minus-square-o:before {
    content: "";
  }
  
  .fa-level-up:before {
    content: "";
  }
  
  .fa-level-down:before {
    content: "";
  }
  
  .fa-check-square:before {
    content: "";
  }
  
  .fa-pencil-square:before {
    content: "";
  }
  
  .fa-external-link-square:before {
    content: "";
  }
  
  .fa-share-square:before {
    content: "";
  }
  
  .fa-compass:before {
    content: "";
  }
  
  .fa-toggle-down:before,
  .fa-caret-square-o-down:before {
    content: "";
  }
  
  .fa-toggle-up:before,
  .fa-caret-square-o-up:before {
    content: "";
  }
  
  .fa-toggle-right:before,
  .fa-caret-square-o-right:before {
    content: "";
  }
  
  .fa-euro:before,
  .fa-eur:before {
    content: "";
  }
  
  .fa-gbp:before {
    content: "";
  }
  
  .fa-dollar:before,
  .fa-usd:before {
    content: "";
  }
  
  .fa-rupee:before,
  .fa-inr:before {
    content: "";
  }
  
  .fa-cny:before,
  .fa-rmb:before,
  .fa-yen:before,
  .fa-jpy:before {
    content: "";
  }
  
  .fa-ruble:before,
  .fa-rouble:before,
  .fa-rub:before {
    content: "";
  }
  
  .fa-won:before,
  .fa-krw:before {
    content: "";
  }
  
  .fa-bitcoin:before,
  .fa-btc:before {
    content: "";
  }
  
  .fa-file:before {
    content: "";
  }
  
  .fa-file-text:before {
    content: "";
  }
  
  .fa-sort-alpha-asc:before {
    content: "";
  }
  
  .fa-sort-alpha-desc:before {
    content: "";
  }
  
  .fa-sort-amount-asc:before {
    content: "";
  }
  
  .fa-sort-amount-desc:before {
    content: "";
  }
  
  .fa-sort-numeric-asc:before {
    content: "";
  }
  
  .fa-sort-numeric-desc:before {
    content: "";
  }
  
  .fa-thumbs-up:before {
    content: "";
  }
  
  .fa-thumbs-down:before {
    content: "";
  }
  
  .fa-youtube-square:before {
    content: "";
  }
  
  .fa-youtube:before {
    content: "";
  }
  
  .fa-xing:before {
    content: "";
  }
  
  .fa-xing-square:before {
    content: "";
  }
  
  .fa-youtube-play:before {
    content: "";
  }
  
  .fa-dropbox:before {
    content: "";
  }
  
  .fa-stack-overflow:before {
    content: "";
  }
  
  .fa-instagram:before {
    content: "";
  }
  
  .fa-flickr:before {
    content: "";
  }
  
  .fa-adn:before {
    content: "";
  }
  
  .fa-bitbucket:before {
    content: "";
  }
  
  .fa-bitbucket-square:before {
    content: "";
  }
  
  .fa-tumblr:before {
    content: "";
  }
  
  .fa-tumblr-square:before {
    content: "";
  }
  
  .fa-long-arrow-down:before {
    content: "";
  }
  
  .fa-long-arrow-up:before {
    content: "";
  }
  
  .fa-long-arrow-left:before {
    content: "";
  }
  
  .fa-long-arrow-right:before {
    content: "";
  }
  
  .fa-apple:before {
    content: "";
  }
  
  .fa-windows:before {
    content: "";
  }
  
  .fa-android:before {
    content: "";
  }
  
  .fa-linux:before {
    content: "";
  }
  
  .fa-dribbble:before {
    content: "";
  }
  
  .fa-skype:before {
    content: "";
  }
  
  .fa-foursquare:before {
    content: "";
  }
  
  .fa-trello:before {
    content: "";
  }
  
  .fa-female:before {
    content: "";
  }
  
  .fa-male:before {
    content: "";
  }
  
  .fa-gittip:before,
  .fa-gratipay:before {
    content: "";
  }
  
  .fa-sun-o:before {
    content: "";
  }
  
  .fa-moon-o:before {
    content: "";
  }
  
  .fa-archive:before {
    content: "";
  }
  
  .fa-bug:before {
    content: "";
  }
  
  .fa-vk:before {
    content: "";
  }
  
  .fa-weibo:before {
    content: "";
  }
  
  .fa-renren:before {
    content: "";
  }
  
  .fa-pagelines:before {
    content: "";
  }
  
  .fa-stack-exchange:before {
    content: "";
  }
  
  .fa-arrow-circle-o-right:before {
    content: "";
  }
  
  .fa-arrow-circle-o-left:before {
    content: "";
  }
  
  .fa-toggle-left:before,
  .fa-caret-square-o-left:before {
    content: "";
  }
  
  .fa-dot-circle-o:before {
    content: "";
  }
  
  .fa-wheelchair:before {
    content: "";
  }
  
  .fa-vimeo-square:before {
    content: "";
  }
  
  .fa-turkish-lira:before,
  .fa-try:before {
    content: "";
  }
  
  .fa-plus-square-o:before {
    content: "";
  }
  
  .fa-space-shuttle:before {
    content: "";
  }
  
  .fa-slack:before {
    content: "";
  }
  
  .fa-envelope-square:before {
    content: "";
  }
  
  .fa-wordpress:before {
    content: "";
  }
  
  .fa-openid:before {
    content: "";
  }
  
  .fa-institution:before,
  .fa-bank:before,
  .fa-university:before {
    content: "";
  }
  
  .fa-mortar-board:before,
  .fa-graduation-cap:before {
    content: "";
  }
  
  .fa-yahoo:before {
    content: "";
  }
  
  .fa-google:before {
    content: "";
  }
  
  .fa-reddit:before {
    content: "";
  }
  
  .fa-reddit-square:before {
    content: "";
  }
  
  .fa-stumbleupon-circle:before {
    content: "";
  }
  
  .fa-stumbleupon:before {
    content: "";
  }
  
  .fa-delicious:before {
    content: "";
  }
  
  .fa-digg:before {
    content: "";
  }
  
  .fa-pied-piper-pp:before {
    content: "";
  }
  
  .fa-pied-piper-alt:before {
    content: "";
  }
  
  .fa-drupal:before {
    content: "";
  }
  
  .fa-joomla:before {
    content: "";
  }
  
  .fa-language:before {
    content: "";
  }
  
  .fa-fax:before {
    content: "";
  }
  
  .fa-building:before {
    content: "";
  }
  
  .fa-child:before {
    content: "";
  }
  
  .fa-paw:before {
    content: "";
  }
  
  .fa-spoon:before {
    content: "";
  }
  
  .fa-cube:before {
    content: "";
  }
  
  .fa-cubes:before {
    content: "";
  }
  
  .fa-behance:before {
    content: "";
  }
  
  .fa-behance-square:before {
    content: "";
  }
  
  .fa-steam:before {
    content: "";
  }
  
  .fa-steam-square:before {
    content: "";
  }
  
  .fa-recycle:before {
    content: "";
  }
  
  .fa-automobile:before,
  .fa-car:before {
    content: "";
  }
  
  .fa-cab:before,
  .fa-taxi:before {
    content: "";
  }
  
  .fa-tree:before {
    content: "";
  }
  
  .fa-spotify:before {
    content: "";
  }
  
  .fa-deviantart:before {
    content: "";
  }
  
  .fa-soundcloud:before {
    content: "";
  }
  
  .fa-database:before {
    content: "";
  }
  
  .fa-file-pdf-o:before {
    content: "";
  }
  
  .fa-file-word-o:before {
    content: "";
  }
  
  .fa-file-excel-o:before {
    content: "";
  }
  
  .fa-file-powerpoint-o:before {
    content: "";
  }
  
  .fa-file-photo-o:before,
  .fa-file-picture-o:before,
  .fa-file-image-o:before {
    content: "";
  }
  
  .fa-file-zip-o:before,
  .fa-file-archive-o:before {
    content: "";
  }
  
  .fa-file-sound-o:before,
  .fa-file-audio-o:before {
    content: "";
  }
  
  .fa-file-movie-o:before,
  .fa-file-video-o:before {
    content: "";
  }
  
  .fa-file-code-o:before {
    content: "";
  }
  
  .fa-vine:before {
    content: "";
  }
  
  .fa-codepen:before {
    content: "";
  }
  
  .fa-jsfiddle:before {
    content: "";
  }
  
  .fa-life-bouy:before,
  .fa-life-buoy:before,
  .fa-life-saver:before,
  .fa-support:before,
  .fa-life-ring:before {
    content: "";
  }
  
  .fa-circle-o-notch:before {
    content: "";
  }
  
  .fa-ra:before,
  .fa-resistance:before,
  .fa-rebel:before {
    content: "";
  }
  
  .fa-ge:before,
  .fa-empire:before {
    content: "";
  }
  
  .fa-git-square:before {
    content: "";
  }
  
  .fa-git:before {
    content: "";
  }
  
  .fa-y-combinator-square:before,
  .fa-yc-square:before,
  .fa-hacker-news:before {
    content: "";
  }
  
  .fa-tencent-weibo:before {
    content: "";
  }
  
  .fa-qq:before {
    content: "";
  }
  
  .fa-wechat:before,
  .fa-weixin:before {
    content: "";
  }
  
  .fa-send:before,
  .fa-paper-plane:before {
    content: "";
  }
  
  .fa-send-o:before,
  .fa-paper-plane-o:before {
    content: "";
  }
  
  .fa-history:before {
    content: "";
  }
  
  .fa-circle-thin:before {
    content: "";
  }
  
  .fa-header:before {
    content: "";
  }
  
  .fa-paragraph:before {
    content: "";
  }
  
  .fa-sliders:before {
    content: "";
  }
  
  .fa-share-alt:before {
    content: "";
  }
  
  .fa-share-alt-square:before {
    content: "";
  }
  
  .fa-bomb:before {
    content: "";
  }
  
  .fa-soccer-ball-o:before,
  .fa-futbol-o:before {
    content: "";
  }
  
  .fa-tty:before {
    content: "";
  }
  
  .fa-binoculars:before {
    content: "";
  }
  
  .fa-plug:before {
    content: "";
  }
  
  .fa-slideshare:before {
    content: "";
  }
  
  .fa-twitch:before {
    content: "";
  }
  
  .fa-yelp:before {
    content: "";
  }
  
  .fa-newspaper-o:before {
    content: "";
  }
  
  .fa-wifi:before {
    content: "";
  }
  
  .fa-calculator:before {
    content: "";
  }
  
  .fa-paypal:before {
    content: "";
  }
  
  .fa-google-wallet:before {
    content: "";
  }
  
  .fa-cc-visa:before {
    content: "";
  }
  
  .fa-cc-mastercard:before {
    content: "";
  }
  
  .fa-cc-discover:before {
    content: "";
  }
  
  .fa-cc-amex:before {
    content: "";
  }
  
  .fa-cc-paypal:before {
    content: "";
  }
  
  .fa-cc-stripe:before {
    content: "";
  }
  
  .fa-bell-slash:before {
    content: "";
  }
  
  .fa-bell-slash-o:before {
    content: "";
  }
  
  .fa-trash:before {
    content: "";
  }
  
  .fa-copyright:before {
    content: "";
  }
  
  .fa-at:before {
    content: "";
  }
  
  .fa-eyedropper:before {
    content: "";
  }
  
  .fa-paint-brush:before {
    content: "";
  }
  
  .fa-birthday-cake:before {
    content: "";
  }
  
  .fa-area-chart:before {
    content: "";
  }
  
  .fa-pie-chart:before {
    content: "";
  }
  
  .fa-line-chart:before {
    content: "";
  }
  
  .fa-lastfm:before {
    content: "";
  }
  
  .fa-lastfm-square:before {
    content: "";
  }
  
  .fa-toggle-off:before {
    content: "";
  }
  
  .fa-toggle-on:before {
    content: "";
  }
  
  .fa-bicycle:before {
    content: "";
  }
  
  .fa-bus:before {
    content: "";
  }
  
  .fa-ioxhost:before {
    content: "";
  }
  
  .fa-angellist:before {
    content: "";
  }
  
  .fa-cc:before {
    content: "";
  }
  
  .fa-shekel:before,
  .fa-sheqel:before,
  .fa-ils:before {
    content: "";
  }
  
  .fa-meanpath:before {
    content: "";
  }
  
  .fa-buysellads:before {
    content: "";
  }
  
  .fa-connectdevelop:before {
    content: "";
  }
  
  .fa-dashcube:before {
    content: "";
  }
  
  .fa-forumbee:before {
    content: "";
  }
  
  .fa-leanpub:before {
    content: "";
  }
  
  .fa-sellsy:before {
    content: "";
  }
  
  .fa-shirtsinbulk:before {
    content: "";
  }
  
  .fa-simplybuilt:before {
    content: "";
  }
  
  .fa-skyatlas:before {
    content: "";
  }
  
  .fa-cart-plus:before {
    content: "";
  }
  
  .fa-cart-arrow-down:before {
    content: "";
  }
  
  .fa-diamond:before {
    content: "";
  }
  
  .fa-ship:before {
    content: "";
  }
  
  .fa-user-secret:before {
    content: "";
  }
  
  .fa-motorcycle:before {
    content: "";
  }
  
  .fa-street-view:before {
    content: "";
  }
  
  .fa-heartbeat:before {
    content: "";
  }
  
  .fa-venus:before {
    content: "";
  }
  
  .fa-mars:before {
    content: "";
  }
  
  .fa-mercury:before {
    content: "";
  }
  
  .fa-intersex:before,
  .fa-transgender:before {
    content: "";
  }
  
  .fa-transgender-alt:before {
    content: "";
  }
  
  .fa-venus-double:before {
    content: "";
  }
  
  .fa-mars-double:before {
    content: "";
  }
  
  .fa-venus-mars:before {
    content: "";
  }
  
  .fa-mars-stroke:before {
    content: "";
  }
  
  .fa-mars-stroke-v:before {
    content: "";
  }
  
  .fa-mars-stroke-h:before {
    content: "";
  }
  
  .fa-neuter:before {
    content: "";
  }
  
  .fa-genderless:before {
    content: "";
  }
  
  .fa-facebook-official:before {
    content: "";
  }
  
  .fa-pinterest-p:before {
    content: "";
  }
  
  .fa-whatsapp:before {
    content: "";
  }
  
  .fa-server:before {
    content: "";
  }
  
  .fa-user-plus:before {
    content: "";
  }
  
  .fa-user-times:before {
    content: "";
  }
  
  .fa-hotel:before,
  .fa-bed:before {
    content: "";
  }
  
  .fa-viacoin:before {
    content: "";
  }
  
  .fa-train:before {
    content: "";
  }
  
  .fa-subway:before {
    content: "";
  }
  
  .fa-medium:before {
    content: "";
  }
  
  .fa-yc:before,
  .fa-y-combinator:before {
    content: "";
  }
  
  .fa-optin-monster:before {
    content: "";
  }
  
  .fa-opencart:before {
    content: "";
  }
  
  .fa-expeditedssl:before {
    content: "";
  }
  
  .fa-battery-4:before,
  .fa-battery-full:before {
    content: "";
  }
  
  .fa-battery-3:before,
  .fa-battery-three-quarters:before {
    content: "";
  }
  
  .fa-battery-2:before,
  .fa-battery-half:before {
    content: "";
  }
  
  .fa-battery-1:before,
  .fa-battery-quarter:before {
    content: "";
  }
  
  .fa-battery-0:before,
  .fa-battery-empty:before {
    content: "";
  }
  
  .fa-mouse-pointer:before {
    content: "";
  }
  
  .fa-i-cursor:before {
    content: "";
  }
  
  .fa-object-group:before {
    content: "";
  }
  
  .fa-object-ungroup:before {
    content: "";
  }
  
  .fa-sticky-note:before {
    content: "";
  }
  
  .fa-sticky-note-o:before {
    content: "";
  }
  
  .fa-cc-jcb:before {
    content: "";
  }
  
  .fa-cc-diners-club:before {
    content: "";
  }
  
  .fa-clone:before {
    content: "";
  }
  
  .fa-balance-scale:before {
    content: "";
  }
  
  .fa-hourglass-o:before {
    content: "";
  }
  
  .fa-hourglass-1:before,
  .fa-hourglass-start:before {
    content: "";
  }
  
  .fa-hourglass-2:before,
  .fa-hourglass-half:before {
    content: "";
  }
  
  .fa-hourglass-3:before,
  .fa-hourglass-end:before {
    content: "";
  }
  
  .fa-hourglass:before {
    content: "";
  }
  
  .fa-hand-grab-o:before,
  .fa-hand-rock-o:before {
    content: "";
  }
  
  .fa-hand-stop-o:before,
  .fa-hand-paper-o:before {
    content: "";
  }
  
  .fa-hand-scissors-o:before {
    content: "";
  }
  
  .fa-hand-lizard-o:before {
    content: "";
  }
  
  .fa-hand-spock-o:before {
    content: "";
  }
  
  .fa-hand-pointer-o:before {
    content: "";
  }
  
  .fa-hand-peace-o:before {
    content: "";
  }
  
  .fa-trademark:before {
    content: "";
  }
  
  .fa-registered:before {
    content: "";
  }
  
  .fa-creative-commons:before {
    content: "";
  }
  
  .fa-gg:before {
    content: "";
  }
  
  .fa-gg-circle:before {
    content: "";
  }
  
  .fa-tripadvisor:before {
    content: "";
  }
  
  .fa-odnoklassniki:before {
    content: "";
  }
  
  .fa-odnoklassniki-square:before {
    content: "";
  }
  
  .fa-get-pocket:before {
    content: "";
  }
  
  .fa-wikipedia-w:before {
    content: "";
  }
  
  .fa-safari:before {
    content: "";
  }
  
  .fa-chrome:before {
    content: "";
  }
  
  .fa-firefox:before {
    content: "";
  }
  
  .fa-opera:before {
    content: "";
  }
  
  .fa-internet-explorer:before {
    content: "";
  }
  
  .fa-tv:before,
  .fa-television:before {
    content: "";
  }
  
  .fa-contao:before {
    content: "";
  }
  
  .fa-500px:before {
    content: "";
  }
  
  .fa-amazon:before {
    content: "";
  }
  
  .fa-calendar-plus-o:before {
    content: "";
  }
  
  .fa-calendar-minus-o:before {
    content: "";
  }
  
  .fa-calendar-times-o:before {
    content: "";
  }
  
  .fa-calendar-check-o:before {
    content: "";
  }
  
  .fa-industry:before {
    content: "";
  }
  
  .fa-map-pin:before {
    content: "";
  }
  
  .fa-map-signs:before {
    content: "";
  }
  
  .fa-map-o:before {
    content: "";
  }
  
  .fa-map:before {
    content: "";
  }
  
  .fa-commenting:before {
    content: "";
  }
  
  .fa-commenting-o:before {
    content: "";
  }
  
  .fa-houzz:before {
    content: "";
  }
  
  .fa-vimeo:before {
    content: "";
  }
  
  .fa-black-tie:before {
    content: "";
  }
  
  .fa-fonticons:before {
    content: "";
  }
  
  .fa-reddit-alien:before {
    content: "";
  }
  
  .fa-edge:before {
    content: "";
  }
  
  .fa-credit-card-alt:before {
    content: "";
  }
  
  .fa-codiepie:before {
    content: "";
  }
  
  .fa-modx:before {
    content: "";
  }
  
  .fa-fort-awesome:before {
    content: "";
  }
  
  .fa-usb:before {
    content: "";
  }
  
  .fa-product-hunt:before {
    content: "";
  }
  
  .fa-mixcloud:before {
    content: "";
  }
  
  .fa-scribd:before {
    content: "";
  }
  
  .fa-pause-circle:before {
    content: "";
  }
  
  .fa-pause-circle-o:before {
    content: "";
  }
  
  .fa-stop-circle:before {
    content: "";
  }
  
  .fa-stop-circle-o:before {
    content: "";
  }
  
  .fa-shopping-bag:before {
    content: "";
  }
  
  .fa-shopping-basket:before {
    content: "";
  }
  
  .fa-hashtag:before {
    content: "";
  }
  
  .fa-bluetooth:before {
    content: "";
  }
  
  .fa-bluetooth-b:before {
    content: "";
  }
  
  .fa-percent:before {
    content: "";
  }
  
  .fa-gitlab:before {
    content: "";
  }
  
  .fa-wpbeginner:before {
    content: "";
  }
  
  .fa-wpforms:before {
    content: "";
  }
  
  .fa-envira:before {
    content: "";
  }
  
  .fa-universal-access:before {
    content: "";
  }
  
  .fa-wheelchair-alt:before {
    content: "";
  }
  
  .fa-question-circle-o:before {
    content: "";
  }
  
  .fa-blind:before {
    content: "";
  }
  
  .fa-audio-description:before {
    content: "";
  }
  
  .fa-volume-control-phone:before {
    content: "";
  }
  
  .fa-braille:before {
    content: "";
  }
  
  .fa-assistive-listening-systems:before {
    content: "";
  }
  
  .fa-asl-interpreting:before,
  .fa-american-sign-language-interpreting:before {
    content: "";
  }
  
  .fa-deafness:before,
  .fa-hard-of-hearing:before,
  .fa-deaf:before {
    content: "";
  }
  
  .fa-glide:before {
    content: "";
  }
  
  .fa-glide-g:before {
    content: "";
  }
  
  .fa-signing:before,
  .fa-sign-language:before {
    content: "";
  }
  
  .fa-low-vision:before {
    content: "";
  }
  
  .fa-viadeo:before {
    content: "";
  }
  
  .fa-viadeo-square:before {
    content: "";
  }
  
  .fa-snapchat:before {
    content: "";
  }
  
  .fa-snapchat-ghost:before {
    content: "";
  }
  
  .fa-snapchat-square:before {
    content: "";
  }
  
  .fa-pied-piper:before {
    content: "";
  }
  
  .fa-first-order:before {
    content: "";
  }
  
  .fa-yoast:before {
    content: "";
  }
  
  .fa-themeisle:before {
    content: "";
  }
  
  .fa-google-plus-circle:before,
  .fa-google-plus-official:before {
    content: "";
  }
  
  .fa-fa:before,
  .fa-font-awesome:before {
    content: "";
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  .sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
  }
  
  .key-details .details-list, .features-list, .customer-admin .dashboard-login, .customer-admin .dash-nav, .performance-report .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .clearfix:after, .footer .footer-item:after, .property-address .link-holder:after, .dash-mobile-menu:after {
    content: '';
    display: block;
    clear: both;
  }
  
  .ellipsis {
    white-space: nowrap;
    /* 1 */
    text-overflow: ellipsis;
    /* 2 */
    overflow: hidden;
  }
  
  .property-detail-info,
  .content-page {
    -ms-word-break: break-all;
    word-break: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  
  i.open {
    width: 23px;
    height: 23px;
    border: 1px solid #363b42;
    border-radius: 50%;
    text-align: center;
    color: #363b42;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
  }
  
  i.open:hover {
    text-decoration: none;
    color: #0fccd8;
    border-color: #0fccd8;
  }
  
  .admin-popup-holder {
    position: relative;
    right: 4px;
    top: -2px;
    float: right;
    margin-left: 10px;
  }
  
  .admin-popup-holder .open {
    width: 23px;
    height: 23px;
    border: 1px solid #363b42;
    border-radius: 50%;
    text-align: center;
    color: #363b42;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
  }
  
  .admin-popup-holder .open:hover {
    text-decoration: none;
    color: #0fccd8;
    border-color: #0fccd8;
  }
  
  .admin-popup-holder .popup {
    display: none;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 294px;
    padding: 10px;
    color: #fff;
    background: #363b42;
    z-index: 5;
  }
  
  @media screen and (min-width: 1024px) {
    .admin-popup-holder .popup {
      padding: 24px;
      width: 294px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .admin-popup-holder .popup {
      width: 250px;
    }
  }
  
  .text-white, .page-bottom-sec h2 {
    color: #FFF !important;
  }
  
  .w-100, .ip-hero-section:before, .page-bottom-sec:after, .page-bottom-sec > .container-fluid {
    width: 100% !important;
  }
  
  .h-100, .ip-hero-section:before, .page-bottom-sec:after {
    height: 100% !important;
  }
  
  .pb-0, .featured-in.about-page .talking-container {
    padding-bottom: 0 !important;
  }
  
  .pl-4 {
    padding-left: 1.5rem !important;
  }
  
  .mx-auto, .ip-hero-section .container .iphs-content,
  .ip-hero-section .container-fluid .iphs-content, .page-bottom-sec h2 {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .mt-0, .featured-in.about-page .talking-container {
    margin-top: 0 !important;
  }
  
  .mb-0 {
    margin-bottom: 0 !important;
  }
  
  .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  
  .my-5px {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  
  .my-16px {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  
  .position-relative, .ip-hero-section, .ip-hero-section .container,
  .ip-hero-section .container-fluid, .page-bottom-sec, .page-bottom-sec .pbs-banner, .full-serv-sec .fss-card-thumb, .full-serv-sec .fss-card-content ul li {
    position: relative !important;
  }
  
  .position-absolute, .ip-hero-section:before, .ip-hero-section > img, .page-bottom-sec:after, .page-bottom-sec > .container-fluid, .page-bottom-sec .pbs-banner img, .full-serv-sec .fss-card-thumb img, .full-serv-sec .fss-card-content ul li:before {
    position: absolute !important;
  }
  
  .d-block, .ip-hero-section:before, .page-bottom-sec:after, .full-serv-sec .fss-card-thumb:before, .full-serv-sec .fss-card-content ul li:before {
    display: block !important;
  }
  
  .d-flex, .ip-hero-section, .page-bottom-sec {
    display: flex !important;
  }
  
  .align-items-center, .ip-hero-section {
    align-items: center !important;
  }
  
  .justify-content-center, .ip-hero-section {
    justify-content: center !important;
  }
  
  .overflow-hidden, .ip-hero-section, .page-bottom-sec .pbs-banner, .full-serv-sec .fss-card-thumb {
    overflow: hidden !important;
  }
  
  body:not(.customer-admin) .header:not(.change-bg) ~ .main {
    padding-top: 0;
  }
  
  .header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: background .3s;
    z-index: 999;
    padding: 5px 0;
  }
  
  @media screen and (max-width: 1023px) {
    .header {
      padding: 10px 5px;
    }
    .header > .container {
      width: auto;
    }
  }
  
  .header.change-bg {
    border-bottom: 1px solid #e2e2e2;
  }
  
  .header.fixed-position, .header.change-bg {
    background: #fff;
    position: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .header.fixed-position .nav-opener span, .header.fixed-position .nav-opener:before, .header.fixed-position .nav-opener:after, .header.change-bg .nav-opener span, .header.change-bg .nav-opener:before, .header.change-bg .nav-opener:after {
    background: #363b42;
  }
  
  .header.fixed-position .btn-default, .header.change-bg .btn-default {
    color: #fff;
    background-color: #0fccd8;
  }
  
  .header.fixed-position .main-nav li a, .header.change-bg .main-nav li a {
    color: #363b42;
  }
  
  @media screen and (min-width: 1024px) {
    .header.fixed-position .main-nav li a:hover, .header.change-bg .main-nav li a:hover {
      color: #0fccd8;
    }
  }
  
  .header.fixed-position .main-nav li a.btn, .header.change-bg .main-nav li a.btn {
    color: #FFF;
  }
  
  @media screen and (min-width: 1024px) {
    .header.fixed-position .sub-drop, .header.change-bg .sub-drop {
      border: 1px solid #e2e2e2;
    }
  }
  
  .header.fixed-position .sub-drop:before, .header.change-bg .sub-drop:before {
    top: -7px;
    border-left: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
  }
  
  .header.loggedin .login-btn {
    display: none;
  }
  
  @media screen and (max-width: 1023px) {
    .header.loggedin .main-nav {
      padding-top: 54px;
    }
  }
  
  .header.loggedin .loggedin-block {
    display: block;
  }
  
  @media screen and (min-width: 1024px) {
    .header.loggedin .loggedin-block {
      order: 2;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .header.loggedin .loggedin-block {
      order: -1;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .header.loggedin .loggedin-block a[data-toggle="dropdown"] {
      display: block;
      font-size: 24px;
      font-weight: 500;
      margin-left: 20px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .header.loggedin .loggedin-block .caret {
      display: none;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .header.loggedin .loggedin-block .dropdown {
      border-bottom: 1px solid #e2e2e2;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .header.loggedin .loggedin-block .sub-drop {
      margin-bottom: 11px;
    }
  }
  
  .header.loggedin .loggedin-block .sub-drop li {
    border: none;
  }
  
  .header.loggedin .loggedin-block .sub-drop a {
    font-size: 14px;
  }
  
  @media screen and (max-width: 575px) {
    .header.loggedin .loggedin-block {
      order: -1;
      border: 0;
    }
    .header.loggedin .loggedin-block ul.dropdown-menu li {
      border: 0;
    }
    .header.loggedin .loggedin-block ul.dropdown-menu li a {
      font-size: 12px;
      display: inline-flex;
      align-items: center;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .header .main-nav .dropdown:hover .dropdown-menu {
      display: block;
    }
    .header .main-nav .dropdown:hover .dropdown-menu:after {
      content: '';
      display: block;
      width: 100%;
      position: absolute;
      top: -12px;
      height: 12px;
      left: 0;
    }
  }
  
  .header .main-nav .dropdown > a {
    position: relative;
  }
  
  @media screen and (max-width: 1023px) {
    .header .main-nav .dropdown > a .caret {
      top: 50%;
      position: absolute;
      right: 1rem;
      transform: translateY(-50%);
      border-top-width: 8px;
      border-left-width: 6px;
      border-right-width: 6px;
    }
  }
  
  .header .main-nav .dropdown.open .dropdown-backdrop {
    display: none;
  }
  
  @media screen and (max-width: 1023px) {
    .header .main-nav .dropdown.open > a .caret {
      transform: translateY(-60%) scaleY(-1);
    }
  }
  
  @media screen and (min-width: 1024px) {
    .header .main-nav > li.book-free-valuation {
      order: -1;
    }
  }
  
  @media screen and (min-width: 576px) and (max-width: 1023px) {
    .header .main-nav > li.book-free-valuation {
      margin-top: -50px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .header .main-nav > li.book-free-valuation {
      margin-left: auto;
      margin-bottom: 80px;
    }
  }
  
  @media screen and (max-width: 575px) {
    .header .main-nav > li.book-free-valuation {
      margin-top: 2rem;
    }
  }
  
  @media screen and (min-width: 1025px) {
    .header .main-nav > li.login-btn .btn {
      padding: 13px 30px !important;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .header .main-nav > li.login-btn, .header .main-nav > li.logout-btn, .header .main-nav > li.book-free-valuation {
      width: calc(50% - 10px);
    }
    .header .main-nav > li.login-btn .btn, .header .main-nav > li.logout-btn .btn, .header .main-nav > li.book-free-valuation .btn {
      width: 100%;
      display: block;
      font-size: 16px;
      color: #FFF;
    }
    .header .main-nav > li:not(.login-btn):not(.logout-btn):not(.book-free-valuation):not(:nth-last-child(3)) {
      border-bottom: 1px solid #E6E6E6;
      width: 100%;
    }
    .header .main-nav > li > .dropdown > a,
    .header .main-nav > li > a {
      display: block;
      padding: 1.7rem 0 !important;
      font-size: 20px;
    }
    .header .main-nav > li > .dropdown > a:hover,
    .header .main-nav > li > a:hover {
      text-decoration: none;
      color: #0fccd8;
    }
    .header .main-nav > li.book-free-valuation a, .header .main-nav > li.logout-btn a {
      padding: 0 !important;
    }
    .header .main-nav > li.logout-btn {
      margin-top: auto;
    }
    .header .main-nav > li.logout-btn .btn-default {
      border-color: #ccc;
      color: #333;
    }
    .header .main-nav > li .sub-drop li a i[class^="icon"] {
      display: none;
    }
    .header .main-nav > li:not(.megamenu) .sub-drop li a {
      padding: 8px 2rem 8px 3rem !important;
    }
  }
  
  @media screen and (max-width: 575px) {
    .header .main-nav > li.login-btn, .header .main-nav > li.logout-btn, .header .main-nav > li.book-free-valuation {
      width: 100%;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .loggedin-block {
      order: 2;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .loggedin-block {
      order: -1;
      border: 0;
    }
    .loggedin-block ul.dropdown-menu li {
      border: 0;
    }
    .loggedin-block ul.dropdown-menu li a {
      display: inline-flex;
      align-items: center;
    }
  }
  
  @media screen and (max-width: 1023px) and (max-width: 575px) {
    .loggedin-block ul.dropdown-menu li a {
      font-size: 12px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .header-btn {
      display: none;
    }
  }
  
  .logo {
    display: block;
    width: 145px;
    height: 32px;
    background: url("../img/logo-white.svg") no-repeat;
    margin-top: 10px;
    transition: background .3s linear;
    z-index: 5;
  }
  
  @media screen and (min-width: 1024px) {
    .logo {
      margin-top: 8px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .logo {
      width: 30px;
      height: 30px;
      background: url("../img/logo-icon.svg") no-repeat;
      margin-bottom: 10px;
    }
  }
  
  .fixed-position .logo,
  .change-bg .logo {
    background: url("../img/logo.svg") no-repeat;
  }
  
  @media screen and (max-width: 1023px) {
    .fixed-position .logo,
    .change-bg .logo {
      width: 30px;
      height: 30px;
      background: url("../img/logo-icon-color.svg") no-repeat;
    }
  }
  
  @media screen and (max-width: 1023px) {
    body.nav-active .header-holder .logo {
      width: 30px;
      height: 30px;
      background: url("../img/logo-icon-color.svg") no-repeat;
    }
  }
  
  @media screen and (max-width: 1023px) {
    body.nav-active .header-holder:after,
    body.dashboard-active .header-holder:after {
      content: '';
      display: block;
      position: absolute;
      left: -20px;
      right: -20px;
      top: -10px;
      bottom: -10px;
      background: #FFF;
      z-index: 3;
    }
  }
  
  .header-holder {
    display: flex;
    justify-content: space-between;
  }
  
  .header-holder .mobile-menu {
    /* Cover logo on mobile dash menu */
  }
  
  .main-nav {
    display: flex;
  }
  
  @media screen and (min-width: 1024px) {
    .main-nav {
      align-items: center;
      min-width: 745px;
      justify-content: space-between;
      margin-left: 20px;
      display: flex !important;
      margin-bottom: 4px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .main-nav {
      min-width: 920px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .main-nav {
      display: none;
      flex-direction: column;
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      background: #fff;
      padding: 8rem 20px 2rem;
      height: 100vh;
      overflow-x: hidden;
      z-index: 1;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .main-nav li.book-free-valuation {
      order: 7;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .main-nav li.login-btn {
      margin-top: auto;
    }
  }
  
  @media screen and (max-width: 1199px) {
    .main-nav li.login-btn .btn {
      min-width: auto;
    }
  }
  
  @media screen and (max-width: 575px) {
    .main-nav li.login-btn .btn {
      /* padding: 15px 18px;
                      font-size: 12px; */
    }
  }
  
  .main-nav li.active a {
    color: #0fccd8;
  }
  
  .main-nav a {
    color: #fff;
    padding: 0 !important;
    font-size: 14px;
  }
  
  @media screen and (max-width: 1023px) {
    .main-nav a {
      color: #363b42;
    }
  }
  
  .main-nav > li > a,
  .main-nav > li > .dropdown > a {
    display: block;
  }
  
  .sub-drop {
    border-radius: 4px;
    box-shadow: none;
    border: none;
  }
  
  @media screen and (min-width: 1024px) {
    .sub-drop {
      position: absolute;
      left: 50%;
      transform: translateX(-55%);
      padding: 15px 20px;
      margin-top: 10px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .sub-drop {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      padding: 0;
    }
  }
  
  .sub-drop:before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    background: #fff;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
  
  @media screen and (max-width: 1023px) {
    .sub-drop:before {
      display: none;
    }
  }
  
  .sub-drop li {
    /* @include media('screen', '<desktop') {
              padding: 15px 0;
              border-top: 1px solid #e2e2e2;
              margin-left: 20px;
          } */
  }
  
  @media screen and (min-width: 1024px) {
    .sub-drop li:not(.hidden-desktop) + li {
      margin-top: 25px;
    }
  }
  
  .sub-drop li.del-border {
    border: none;
  }
  
  .sub-drop i[class^="icon"] {
    font-size: 20px;
    width: 28px;
    display: inline-block;
  }
  
  .sub-drop i[class^="icon"].icon-2 {
    font-size: 10px;
  }
  
  .sub-drop i[class^="icon"].icon-4, .sub-drop i[class^="icon"].icon-5, .sub-drop i[class^="icon"].icon-6 {
    font-size: 14px;
  }
  
  .sub-drop a {
    color: #363b42;
  }
  
  .sub-drop a:hover {
    color: #0fccd8;
    background: none;
  }
  
  @media screen and (min-width: 1024px) {
    .header .header-holder {
      position: relative;
    }
  }
  
  .megamenu {
    /* @media screen and (min-width: 992px) {
          display: block;
      }
  
      @media screen and (max-width: 991px) {
          display: none;
      } */
  }
  
  .megamenu .dropdown {
    position: static;
  }
  
  .megamenu .dropdown h5 {
    font-size: 18px;
  }
  
  .megamenu .dropdown:hover > a,
  .megamenu .dropdown.open > a {
    position: relative;
  }
  
  @media screen and (min-width: 1024px) {
    .megamenu .dropdown:hover > a::before,
    .megamenu .dropdown.open > a::before {
      display: block;
      content: '';
      width: 12px;
      height: 12px;
      position: absolute;
      background: #fff;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      margin-top: 8px;
      border-left: 1px solid #e2e2e2;
      border-top: 1px solid #e2e2e2;
      z-index: 9999;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .megamenu .dropdown:hover > .dropdown-menu {
      display: flex !important;
    }
  }
  
  @media screen and (min-width: 769px) {
    .megamenu .dropdown.open > .dropdown-menu {
      display: flex !important;
    }
  }
  
  @media screen and (max-width: 767px) {
    .megamenu .dropdown.open > .dropdown-menu {
      display: block;
    }
  }
  
  .megamenu .dropdown-menu {
    width: 100%;
    left: 0;
    transform: none;
  }
  
  @media screen and (min-width: 1024px) {
    .megamenu .dropdown-menu {
      padding: 25px 30px;
      margin: 0px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .megamenu .dropdown-menu {
      padding: 5px 10px;
    }
  }
  
  .megamenu .dropdown-menu:before {
    display: none;
  }
  
  .megamenu .dropdown-menu:after {
    top: -15px;
    height: 15px;
  }
  
  .megamenu .dropdown-menu > li {
    margin: 0 !important;
    padding: 10px;
  }
  
  @media screen and (min-width: 769px) {
    .megamenu .dropdown-menu > li {
      width: calc(100% / 5);
    }
  }
  
  .megamenu .dropdown-menu > li h5 {
    margin-bottom: 12px;
  }
  
  .megamenu .dropdown-menu > li ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .megamenu .dropdown-menu > li ul li {
    margin: 0;
    padding: 6px 0;
  }
  
  .megamenu .dropdown-menu > li ul li a {
    display: block;
  }
  
  .megamenu .dropdown-menu > li ul li a:hover {
    text-decoration: none;
  }
  
  .nav-opener,
  .dash-opener {
    float: right;
    width: 20px;
    height: 14px;
    position: relative;
    margin: 18px 0 0 22px;
    z-index: 5;
  }
  
  @media screen and (min-width: 1024px) {
    .nav-opener,
    .dash-opener {
      display: none;
    }
  }
  
  .nav-opener:hover,
  .dash-opener:hover {
    opacity: .9;
  }
  
  .nav-active .nav-opener span,
  .dashboard-active .nav-opener span, .nav-active
  .dash-opener span,
  .dashboard-active
  .dash-opener span {
    opacity: 0;
  }
  
  .nav-active .nav-opener:before, .nav-active .nav-opener:after,
  .dashboard-active .nav-opener:before,
  .dashboard-active .nav-opener:after, .nav-active
  .dash-opener:before, .nav-active
  .dash-opener:after,
  .dashboard-active
  .dash-opener:before,
  .dashboard-active
  .dash-opener:after {
    transform: rotate(45deg);
    top: 50%;
    left: 0;
    right: 0;
    background: #363b42;
  }
  
  .nav-active .nav-opener:after,
  .dashboard-active .nav-opener:after, .nav-active
  .dash-opener:after,
  .dashboard-active
  .dash-opener:after {
    transform: rotate(-45deg);
  }
  
  .nav-opener span, .nav-opener:before, .nav-opener:after,
  .dash-opener span,
  .dash-opener:before,
  .dash-opener:after {
    background: #fff;
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    transition: all .3s linear;
  }
  
  .nav-opener:before, .nav-opener:after,
  .dash-opener:before,
  .dash-opener:after {
    content: '';
    top: 0;
  }
  
  .nav-opener:after,
  .dash-opener:after {
    top: 12px;
  }
  
  @media screen and (min-width: 1024px) {
    .phone-number {
      order: 1;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .login-btn {
      order: 2;
    }
  }
  
  body.affix {
    width: 100%;
  }
  
  #wrapper {
    overflow: hidden;
  }
  
  /* Stop iOS safari ignoring zoom settings - needs minimum input size of 16px */
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input,
    input.form-control,
    select.form-control,
    textarea.form-control {
      font-size: 16px;
    }
  }
  
  img {
    max-width: 100%;
  }
  
  @media screen and (max-width: 767px) {
    body,
    p,
    .form-control {
      font-size: 2.5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    body,
    p,
    .form-control {
      font-size: 4vw;
    }
  }
  
  b {
    color: #363b42;
    font-weight: 600;
  }
  
  .form-control {
    border: none;
    border-bottom: 2px solid #0fccd8;
    box-shadow: none;
    -webkit-appearance: none;
    padding: 8px 0;
  }
  
  .form-control::-webkit-input-placeholder {
    color: #a5a5a5;
  }
  
  .form-control::-moz-placeholder {
    opacity: 1;
    color: #a5a5a5;
  }
  
  .form-control:-moz-placeholder {
    color: #a5a5a5;
  }
  
  .form-control:-ms-input-placeholder {
    color: #a5a5a5;
  }
  
  .form-control.placeholder {
    color: #a5a5a5;
  }
  
  .form-control:focus {
    box-shadow: none;
  }
  
  .form-control--left {
    text-align: left !important;
  }
  
  .amount-example {
    padding-top: 5px;
    font-size: 14px;
  }
  
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6,
  .h {
    margin: 0;
  }
  
  @media screen and (max-width: 1023px) {
    .hero-section h1,
    .hero-section .h1 {
      font-size: 96px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .hero-section h1,
    .hero-section .h1 {
      font-size: 7vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .hero-section h1,
    .hero-section .h1 {
      font-size: 14vw;
    }
  }
  
  @media screen and (max-width: 1023px) {
    h1, .h1 {
      font-size: 30px;
    }
  }
  
  @media screen and (max-width: 767px) {
    h1, .h1 {
      font-size: 5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    h1, .h1 {
      font-size: 7vw;
    }
  }
  
  @media screen and (max-width: 1023px) {
    h2, .h2 {
      font-size: 24px;
    }
  }
  
  @media screen and (max-width: 767px) {
    h2, .h2 {
      font-size: 4.5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    h2, .h2 {
      font-size: 5.5vw;
    }
  }
  
  h3, .h3 {
    font-weight: normal;
  }
  
  @media screen and (max-width: 1023px) {
    h3, .h3 {
      font-size: 22px;
    }
  }
  
  @media screen and (max-width: 767px) {
    h3, .h3 {
      font-size: 4.5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    h3, .h3 {
      font-size: 5.5vw;
    }
  }
  
  @media screen and (max-width: 767px) {
    h5, .h5 {
      font-size: 3vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    h5, .h5 {
      font-size: 4.5vw;
    }
  }
  
  a {
    transition: color .2s;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  a:active {
    color: #0fccd8;
  }
  
  a.disabled {
    color: #e2e2e2;
  }
  
  .btn {
    padding: 17px 40px;
    font-size: 16px;
    line-height: 1;
    border-radius: 4px;
    box-shadow: none;
    border: none;
    color: #fff;
    font-size: 16px;
    transition: background .2s, color .2s;
  }
  
  @media screen and (min-width: 1024px) {
    .btn {
      font-size: 14px;
      padding: 13px 20px;
      min-width: 122px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .btn {
      padding: 13px 30px;
    }
  }
  
  .btn:hover {
    background: #0badb7;
  }
  
  .btn.btn-default {
    background: none;
    border: 1px solid #fff;
    padding: 16px 21px;
  }
  
  .btn.btn-link {
    border: 1px solid #656d78;
    color: #656d78;
  }
  
  .btn-white {
    background-color: #fff;
    color: #626262;
  }
  
  .btn-white:hover {
    color: #fff;
  }
  
  @media screen and (max-width: 1023px) {
    .hidden-mobile {
      display: none;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .hidden-desktop {
      display: none;
    }
  }
  
  .main {
    display: flex;
    flex-direction: column;
    min-height: 50vh;
    padding-top: 115px;
  }
  
  @media screen and (min-width: 1024px) {
    .main {
      padding-top: 92px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .main {
      padding-top: 100px;
    }
  }
  
  .main.top-block {
    padding-top: 0;
  }
  
  .main .jcf-radio input[type=radio]:hover {
    cursor: pointer;
  }
  
  body:not(.customer-admin) .main {
    justify-content: center;
  }
  
  .title {
    text-align: center;
  }
  
  .hero-section {
    min-height: 722px;
    background-size: cover;
    position: relative;
    background-position: center;
  }
  
  @media screen and (min-width: 1024px) {
    .hero-section {
      min-height: 752px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .hero-section {
      min-height: 596px;
    }
  }
  
  .hero-section:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-section .icon-9 {
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -3px;
    color: #fff;
    z-index: 555;
  }
  
  .hero-section .icon-9:hover, .hero-section .icon-9.active, .hero-section .icon-9.visited {
    outline: none !important;
    text-decoration: none !important;
  }
  
  .arrow {
    position: absolute;
    bottom: 100%;
    width: 100%;
    height: 26px;
    background-color: #fff;
    text-decoration: none;
  }
  
  .arrow:before, .arrow:after {
    content: '';
    position: absolute;
    bottom: 100%;
    width: 50%;
  }
  
  .arrow:before {
    right: 50%;
    border-bottom: 26px solid #fff;
    border-right: 26px solid transparent;
  }
  
  .arrow:after {
    left: 50%;
    border-bottom: 26px solid #fff;
    border-left: 26px solid transparent;
  }
  
  .hero-block {
    width: 100%;
    z-index: 2;
    position: relative;
  }
  
  @media screen and (min-width: 1024px) {
    .hero-block {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -59%);
      max-width: 810px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .hero-block {
      margin-top: 112px;
      padding: 0 5px;
    }
  }
  
  .hero-block .title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .hero-block .title * {
    color: #fff;
  }
  
  @media screen and (max-width: 767px) {
    .hero-block .title .h1 {
      margin-bottom: 4px;
      font-size: 5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .hero-block .title .h1 {
      margin-bottom: 4px;
      font-size: 14vw;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .hero-block .title .h1 {
      font-size: 98px;
      margin-bottom: 40px;
      line-height: 86px;
    }
  }
  
  .hero-block .title .h2 {
    font-weight: 400;
  }
  
  @media screen and (max-width: 1023px) {
    .hero-block .title .h2 {
      font-size: 20px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .hero-block .title .h2 {
      font-size: 3vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .hero-block .title .h2 {
      font-size: 5vw;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .hero-block .title .h3 {
      margin-bottom: 40px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .hero-block .btn-holder {
      margin-top: -12px;
    }
  }
  
  .hero-block .btn-holder .btn {
    width: 100%;
  }
  
  .select-form {
    background: #fff;
    padding: 38px 29px 20px;
    border-radius: 4px;
  }
  
  @media screen and (min-width: 1024px) {
    .select-form {
      display: flex;
      align-items: center;
      padding: 19px 30px;
    }
  }
  
  .select-form.property {
    background: #f8f8f8;
    margin-bottom: 118px;
  }
  
  @media screen and (max-width: 767px) {
    .select-form.property .btn {
      width: 100%;
    }
  }
  
  .save-many {
    z-index: 10;
    position: relative;
    margin: 0 0 8px;
  }
  
  @media screen and (min-width: 1024px) {
    .save-many {
      margin: 0 0 29px;
    }
  }
  
  .advertise {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  
  @media screen and (min-width: 1024px) {
    .advertise {
      flex-direction: row;
    }
  }
  
  .advertise ul li {
    float: left;
  }
  
  .advertise-link {
    display: flex;
    align-items: center;
  }
  
  @media screen and (min-width: 1200px) {
    .advertise-link {
      margin-left: 114px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .advertise-link {
      margin-bottom: 17px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .advertise-link {
      justify-content: center;
      flex-wrap: wrap;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .advertise-link li {
      margin: 0 8px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .advertise-link li {
      margin: 0 8px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .advertise-link li:last-child {
      margin-left: 21px;
    }
  }
  
  .experience {
    display: flex;
    align-items: center;
  }
  
  .experience li {
    margin: 0 2px;
  }
  
  @media screen and (min-width: 1024px) {
    .experience li {
      margin: 0 1px;
    }
  }
  
  .experience li:first-child {
    margin-right: 15px;
  }
  
  .experience .icon-8 {
    color: #0fccd8;
  }
  
  .sell-price {
    margin-bottom: 11px;
  }
  
  @media screen and (max-width: 1023px) {
    .sell-price {
      margin-bottom: 18px;
    }
  }
  
  .sell-price b {
    font-weight: 600;
  }
  
  .can-save {
    background-color: #f8f8f8;
    padding: 37px 0 60px;
    position: relative;
  }
  
  @media screen and (min-width: 1024px) {
    .can-save {
      padding-bottom: 40px;
    }
  }
  
  .can-save:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 27px solid;
    border-color: #f8f8f8 transparent transparent transparent;
  }
  
  .can-save .title {
    margin-bottom: 37px;
  }
  
  @media screen and (min-width: 1024px) {
    .can-save .title {
      margin-bottom: 27px;
    }
  }
  
  .can-save .total {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
  }
  
  .can-save .total .moovingo .additional-text {
    font-size: 14px;
    font-weight: 400;
  }
  
  @media screen and (max-width: 480px) {
    .can-save .total .moovingo .additional-text {
      font-size: 3.5vw;
    }
  }
  
  .range-holder {
    margin-bottom: 21px;
  }
  
  .range-holder label {
    display: block;
    font-weight: 600;
    padding-bottom: 50px;
  }
  
  @media screen and (max-width: 1023px) {
    .range-holder {
      width: 83%;
      margin: auto;
      margin-bottom: 38px;
    }
  }
  
  .combobox-container {
    width: 100%;
    /* We want a dropdown, but without the arrows */
  }
  
  .combobox-container .caret {
    display: none;
  }
  
  .combobox-container .input-group {
    width: 100%;
  }
  
  .combobox-container .input-group input::-webkit-input-placeholder {
    color: #363b42;
  }
  
  .combobox-container .input-group input::-moz-placeholder {
    opacity: 1;
    color: #363b42;
  }
  
  .combobox-container .input-group input:-moz-placeholder {
    color: #363b42;
  }
  
  .combobox-container .input-group input:-ms-input-placeholder {
    color: #363b42;
  }
  
  .combobox-container .input-group input.placeholder {
    color: #363b42;
  }
  
  .combobox-container .input-group input:focus {
    border-color: #0fccd8;
  }
  
  @media screen and (max-width: 767px) {
    .combobox-container .input-group input {
      font-size: 2.5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .combobox-container .input-group input {
      font-size: 4vw;
    }
  }
  
  .combobox-container .typeahead-long {
    max-height: 160px;
    overflow-y: auto;
    padding: 20px;
    width: 100%;
  }
  
  .combobox-container .typeahead-long.dropdown-menu li > a {
    padding: 6px 6px 6px 1em;
    white-space: inherit;
  }
  
  .combobox-container .glyphicon.glyphicon-remove {
    font-size: 12px;
  }
  
  .combobox-container:not(.combobox-selected) .glyphicon-remove {
    display: none;
  }
  
  .combobox-container .dropdown-toggle {
    display: none;
  }
  
  @media screen and (min-width: 481px) {
    .combobox-container .form-search .combobox-container,
    .combobox-container .form-inline .combobox-container {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: top;
    }
    .combobox-container .form-search .combobox-container .input-group-addon,
    .combobox-container .form-inline .combobox-container .input-group-addon {
      width: auto;
    }
  }
  
  @media screen and (max-width: 480px) {
    .combobox-container {
      margin-bottom: 10px;
    }
    .combobox-container .dropdown-toggle {
      padding-right: 5px;
    }
  }
  
  /* Hide text box on date and time selection */
  .select2-search--dropdown {
    display: none;
  }
  
  /* Same rounded style as typeahead */
  .select2-container--open .select2-dropdown--below {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    margin-top: 2px;
  }
  
  /* Hide arrow on date dropdown */
  .select2-selection__arrow {
    display: none;
  }
  
  @media screen and (max-width: 480px) {
    #home-valuation-form {
      padding: 20px 29px 20px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .price-slider {
      margin-bottom: 50px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .range-block {
      width: 66%;
      margin: 0 auto;
    }
  }
  
  .amount-holder {
    text-align: center;
    font-weight: 600;
  }
  
  .amount-holder .amount {
    width: 100%;
    max-width: 360px;
    border-radius: 4px;
    background-color: #0fccd8;
    color: #fff;
    padding: 10px;
    margin: 0 auto 16px;
  }
  
  @media screen and (min-width: 1024px) {
    .amount-holder .amount {
      margin-bottom: 12px;
    }
  }
  
  .amount-holder .amount .price {
    display: block;
    font-size: 30px;
  }
  
  .amount-holder .additional-text {
    font-size: 14px;
    font-weight: 400;
  }
  
  @media screen and (max-width: 480px) {
    .amount-holder .additional-text {
      font-size: 3.5vw;
    }
  }
  
  .featured-in {
    position: relative;
    padding: 32px 0 29px;
  }
  
  @media screen and (min-width: 1024px) {
    .featured-in {
      padding: 60px 0 63px;
    }
  }
  
  .featured-in:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 27px solid;
    border-color: #fff transparent transparent transparent;
    z-index: 1;
  }
  
  .featured-in .title {
    margin-bottom: 26px;
  }
  
  @media screen and (min-width: 1024px) {
    .featured-in .title {
      margin-bottom: 32px;
    }
  }
  
  .featured-in .talking-container {
    margin-top: 40px;
    padding-bottom: 10px;
  }
  
  .featured-in .write-by {
    text-align: center;
  }
  
  .featured-in .quotes-trusted {
    font-size: 20px;
  }
  
  @media screen and (max-width: 1023px) {
    .featured-in .trusted-review {
      margin-bottom: 10px;
    }
  }
  
  .featured-in .trusted-review p {
    line-height: 1.9;
    text-align: center;
  }
  
  .featured-in .featured-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  @media screen and (min-width: 1024px) {
    .featured-in .featured-list {
      justify-content: space-around;
      flex-direction: row;
      align-items: flex-end;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .featured-in .featured-list li + li {
      margin-top: 20px;
    }
  }
  
  .featured-in .featured-list a:hover {
    opacity: .7;
  }
  
  @media screen and (max-width: 1023px) {
    .featured-in .irish-time {
      width: 190px;
    }
  }
  
  .trusted-us {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .trusted-us li {
    margin: 0 2px;
  }
  
  @media screen and (min-width: 1024px) {
    .trusted-us li {
      margin: 0 1px;
    }
  }
  
  .trusted-us .icon-8 {
    font-size: 20px;
    color: #e8b923;
  }
  
  .sale-works {
    padding: 54px 0;
    text-align: center;
    position: relative;
    background-color: #f8f8f8;
  }
  
  @media screen and (min-width: 1024px) {
    .sale-works {
      padding: 60px 0;
      text-align: left;
    }
    .sale-works .h5 {
      font-size: 17px !important;
    }
    .sale-works .title {
      margin-bottom: 15px !important;
    }
    .sale-works .container > .row {
      margin-top: 15px !important;
    }
    .sale-works .container-inside {
      float: right;
    }
  }
  
  .sale-works:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 27px solid;
    border-color: #f8f8f8 transparent transparent transparent;
    z-index: 1;
  }
  
  .sale-works .title {
    margin-bottom: 38px;
  }
  
  .sale-works .h2 {
    margin-bottom: 6px;
  }
  
  .sale-works i {
    color: #0fccd8;
  }
  
  @media screen and (max-width: 767px) {
    .sale-works .check-container {
      margin-bottom: 10px;
    }
  }
  
  @media screen and (min-width: 768px) {
    .sale-works .h5 {
      margin-top: 3px;
    }
  }
  
  .sale-works .check-icon {
    font-size: 25px;
  }
  
  .sale-works .h5 {
    text-align: left;
    font-size: 15px;
  }
  
  .maximise-price {
    padding: 64px 0 34px;
    position: relative;
    background-color: #f8f8f8;
  }
  
  .maximise-price .item-holder {
    position: relative;
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .item-holder {
      display: flex;
      width: 90%;
      margin: auto;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .item-holder:after {
      content: '';
      width: 360px;
      height: 125px;
      background: url("../img/phone.svg") no-repeat;
      position: absolute;
      left: 50%;
      bottom: 50px;
      transform: translateX(-51%);
    }
  }
  
  @media screen and (min-width: 1200px) {
    .maximise-price .item-holder:after {
      width: 516px;
      height: 125px;
      left: 50%;
      bottom: 90px;
      transform: translateX(-51%);
    }
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .item-holder .local {
      order: 2;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .item-holder .local img {
      width: 211px;
      height: 211px;
    }
  }
  
  .maximise-price .item-holder .local .h5 {
    color: #0fd87c;
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .item-holder .sellers {
      margin-top: 184px;
      order: 3;
    }
  }
  
  .maximise-price .item-holder .sellers .h5 {
    color: #128bd6;
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .item-holder .buyers {
      margin-top: 184px;
      order: 1;
    }
  }
  
  .maximise-price .item-holder .buyers .h5 {
    color: #d67d12;
  }
  
  .maximise-price .item-holder .buyers .img-holder {
    margin-top: 68px;
  }
  
  .maximise-price .title {
    margin-bottom: 28px;
  }
  
  .maximise-price .h5 {
    margin-bottom: 15px;
  }
  
  .maximise-price .item {
    text-align: center;
    margin-bottom: 36px;
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .item {
      flex-basis: 33%;
    }
  }
  
  .maximise-price .text-holder {
    width: 72%;
    margin: 0 auto 14px;
  }
  
  @media screen and (min-width: 1024px) {
    .maximise-price .text-holder {
      width: 77%;
      margin-bottom: 24px;
    }
  }
  
  .flash-home {
    position: absolute;
    z-index: 999;
    margin-top: 48px;
    left: 0;
    right: 0;
  }
  
  @media screen and (max-width: 1024px) {
    .flash-home {
      width: 78%;
    }
  }
  
  .traditional-agent {
    position: relative;
    padding: 64px 0 5px;
  }
  
  .traditional-agent:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 27px solid;
    border-color: #fff transparent transparent transparent;
    z-index: 1;
  }
  
  .traditional-agent .h2 {
    color: #0fccd8;
  }
  
  .traditional-agent .main-title {
    color: #363b42;
  }
  
  .traditional-agent .title {
    margin-bottom: 48px;
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .title {
      margin-bottom: 34px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .title br {
      display: none;
    }
  }
  
  .traditional-agent .item {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .item {
      padding-bottom: 43px;
    }
  }
  
  .traditional-agent .item:not(:last-of-type) {
    margin-bottom: 37px;
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .item:not(:last-of-type) {
      margin-bottom: 37px;
    }
  }
  
  .traditional-agent .item:not(:last-of-type):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -999px;
    right: -999px;
    height: 1px;
    background-color: #e2e2e2;
  }
  
  .traditional-agent .item .title {
    margin-bottom: 16px;
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .item .title {
      margin-bottom: 54px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .item-holder {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  .traditional-agent .img-holder {
    margin-bottom: 22px;
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .img-holder img {
      width: 120px;
      height: 100px;
    }
  }
  
  .traditional-agent .text-holder {
    margin-bottom: 22px;
  }
  
  @media screen and (min-width: 1024px) {
    .traditional-agent .text-holder {
      width: 300px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .traditional-agent .text-holder {
      width: 400px;
    }
  }
  
  .traditional-agent .text-holder .title {
    margin-bottom: 13px;
  }
  
  .connect {
    padding: 36px 0 62px;
  }
  
  @media screen and (min-width: 1024px) {
    .connect {
      padding: 36px 0 27px;
    }
  }
  
  .connect .title {
    margin-bottom: 41px;
  }
  
  @media screen and (min-width: 1024px) {
    .connect .title {
      margin-bottom: 32px;
    }
  }
  
  .social-network {
    display: flex;
    justify-content: center;
  }
  
  .social-network li {
    margin: 0 18px;
  }
  
  .social-network a {
    color: #0fccd8;
    font-size: 30px;
    text-decoration: none;
  }
  
  .social-network a:hover {
    color: #0badb7;
  }
  
  .contact-us {
    padding: 38px 0;
    background: no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/build/img/do-for-you.jpg");
    background-size: cover;
    background-position: center;
    min-height: 200px;
    position: relative;
  }
  
  @media screen and (min-width: 768px) {
    .contact-us {
      min-height: 484px;
    }
  }
  
  @media screen and (min-width: 768px) {
    .contact-us .contact-holder {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      min-width: 360px;
    }
  }
  
  .contact-us .title {
    margin-bottom: 33px;
  }
  
  @media screen and (min-width: 768px) {
    .contact-us .title {
      text-align: left;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .contact-us .title {
      margin-bottom: 14px;
    }
  }
  
  .contact-us .title .h1 {
    color: white;
  }
  
  .contact-us .btn-holder {
    text-align: center;
  }
  
  .contact-us .btn {
    width: 100%;
    max-width: 290px;
    padding: 17px 10px;
  }
  
  @media screen and (min-width: 1024px) {
    .contact-us .btn {
      padding: 13px 10px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .contact-us .btn {
      margin-bottom: 20px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .contact-us .btn {
      font-size: 15px;
    }
  }
  
  .search-property .title {
    margin-bottom: 38px;
  }
  
  .two-column {
    display: flex;
  }
  
  @media screen and (max-width: 1023px) {
    .two-column {
      flex-direction: column;
    }
  }
  
  .two-column .item-holder {
    background-color: #f8f8f8;
  }
  
  @media screen and (min-width: 1024px) {
    .two-column .item-holder {
      width: 50%;
      min-height: 320px;
      position: relative;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .two-column .item-holder {
      padding: 70px 60px 100px;
    }
  }
  
  .two-column .box {
    text-align: center;
  }
  
  @media screen and (min-width: 1024px) {
    .two-column .box {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .two-column .box {
      width: 585px;
    }
  }
  
  .two-column .box.left {
    right: 0;
  }
  
  .two-column .box .h5 {
    margin-bottom: 11px;
    line-height: 1.4;
    font-weight: 600;
  }
  
  @media screen and (min-width: 1024px) {
    .two-column .box .h5 {
      margin-bottom: 34px;
    }
  }
  
  .two-column .box .btn {
    padding: 12px 17px;
  }
  
  @media screen and (max-width: 1023px) {
    .two-column .box br {
      display: none;
    }
  }
  
  .fees .item-holder#fees-left {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/build/img/fees-col-left.jpg");
    background-size: cover;
  }
  
  .fees .item-holder#fees-right {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/build/img/fees-col-right.jpg");
    background-size: cover;
  }
  
  .fees .item-holder h5 {
    color: white;
  }
  
  .slider-holder {
    display: flex;
  }
  
  @media screen and (max-width: 767px) {
    .slider-holder {
      display: none;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .slider-holder .item-holder + .item-holder {
      margin-left: 30px;
    }
  }
  
  .slider-text {
    display: block;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #fff;
    font-size: 18px;
  }
  
  .gallery-thumbs .slick-arrow {
    display: none !important;
  }
  
  #cookie-notice {
    background: #363b42;
    bottom: 0;
    position: fixed;
    display: none;
    opacity: .8;
    text-align: center;
    width: 100%;
    z-index: 1000;
  }
  
  #cookie-notice .message {
    color: #fff;
    font-size: 12px;
    margin: auto;
    padding: 5px 30px;
    position: relative;
    text-align: center;
  }
  
  #cookie-notice .message a {
    color: #fff;
  }
  
  #cookie-notice .message i {
    margin-left: 10px;
  }
  
  #cookie-notice .message i:hover {
    cursor: pointer;
  }
  
  .accordion li .toggle {
    padding: 5px 10px;
    font-weight: bold;
  }
  
  .accordion li .toggle:hover {
    cursor: pointer;
  }
  
  .accordion li .detail {
    padding: 5px 10px;
    overflow: hidden;
    display: none;
  }
  
  /* Register form can be included in a bunch of contexts, so is in common for now */
  .register-form .personal-titles {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  
  .register-form .personal-titles label {
    float: left;
    width: 60px;
    margin: 4px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #0fccd8;
    overflow: auto;
  }
  
  .register-form .personal-titles label:hover {
    background-color: #0fccd8;
    color: #fff;
    cursor: pointer;
  }
  
  .register-form .personal-titles label:first-of-type {
    margin-left: 0;
  }
  
  .register-form .personal-titles label span {
    text-align: center;
    font-weight: normal;
    padding: 10px 0px;
    display: block;
  }
  
  .register-form .personal-titles label input {
    display: none;
  }
  
  .register-form .personal-titles label input:checked + span {
    background-color: #0fccd8;
    color: #fff;
  }
  
  .radio-as-buttons {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  
  .radio-as-buttons label {
    float: left;
    width: 60px;
    margin: 4px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #0fccd8;
    overflow: auto;
  }
  
  .radio-as-buttons label:hover {
    cursor: pointer;
    background-color: #0fccd8;
    color: #fff;
  }
  
  .radio-as-buttons label:first-of-type {
    margin-left: 0;
  }
  
  .radio-as-buttons label span {
    text-align: center;
    font-weight: normal;
    padding: 10px 0px;
    display: block;
  }
  
  .radio-as-buttons label input {
    display: none;
  }
  
  .radio-as-buttons label input:checked + span {
    background-color: #0fccd8;
    color: #fff;
  }
  
  .label-loading {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .label-loading img {
    width: 18px;
  }
  
  .label-loading span {
    padding-right: 8px;
  }
  
  .label-loading #coupon-ok {
    color: #0fccd8;
  }
  
  .label-loading #coupon-error {
    color: red;
  }
  
  .discount-applied {
    font-style: italic;
  }
  
  .discount-applied b {
    color: #0fccd8;
  }
  
  #general-modal-confirmation .modal-dialog {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  @media (max-width: 767px) {
    #general-modal-confirmation .modal-dialog {
      max-height: 100%;
    }
  }
  
  #general-modal-confirmation .modal-close-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #0fccd8;
    padding: .5rem;
    fill: #0fccd8;
  }
  
  #general-modal-confirmation .close {
    margin-left: auto;
    transform: translate(1rem, -1rem);
    opacity: 1;
  }
  
  #general-modal-confirmation .close:focus {
    outline: 0;
  }
  
  #general-modal-confirmation .modal-content {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
  }
  
  #general-modal-confirmation .modal-content .modal-description {
    padding: 0 2rem;
  }
  
  #general-modal-confirmation .modal-content .check-icon {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 2px solid #0fccd8;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    fill: #0fccd8;
    background-color: white;
  }
  
  #general-modal-confirmation .modal-content .modal-title {
    line-height: 1.25;
    padding: 0 0 2rem 0;
    color: #000;
    font-size: 18px;
  }
  
  #general-modal-confirmation .modal-content .modal-pre-title {
    font-size: 30px;
    color: #0fccd8;
    padding: 0 0 2rem 0;
  }
  
  #general-modal-confirmation .modal-content .modal-description {
    font-size: 18px;
    padding-bottom: 2rem;
  }
  
  #general-modal-confirmation .modal-content .btn {
    font-size: 20px;
  }
  
  #general-modal-confirmation .modal-content footer {
    margin-top: auto;
  }
  
  @media (min-width: 768px) {
    #general-modal-confirmation .modal-dialog {
      margin: 0 auto;
    }
    #general-modal-confirmation .modal-content {
      border-radius: 15px;
      height: auto;
    }
    #general-modal-confirmation .modal-content .check-icon {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      margin-bottom: 0;
    }
  }
  
  .bootbox.modal .btn.btn-default {
    border: 1px solid #363b42;
    color: #363b42;
    padding: 17px 40px;
  }
  
  @media screen and (min-width: 1024px) {
    .bootbox.modal .btn.btn-default {
      padding: 13px 20px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .bootbox.modal .btn.btn-default {
      padding: 13px 30px;
    }
  }
  
  .bootbox.modal .btn.btn-default:hover {
    background: white;
  }
  
  /* Theme has jcf focus in red automatically, looks like error state */
  .jcf-focus,
  .jcf-focus * {
    border-color: #0fccd8 !important;
  }
  
  .success {
    color: #0fd87c;
  }
  
  .warning {
    color: #d67d12;
  }
  
  .danger {
    color: #d61212;
  }
  
  .noUi-base {
    background: #e1e1e1;
    display: block;
    margin: 5px 0;
    height: 4px;
  }
  
  .noUi-target {
    border-style: none;
    box-shadow: none;
    background-color: transparent;
  }
  
  .noUi-handle {
    position: absolute;
    background: #0fccd8;
    border-radius: 24px;
    width: 25px !important;
    height: 25px !important;
    margin: -11px 0 0;
    z-index: 99;
    top: 0 !important;
    left: 0 !important;
    box-shadow: none !important;
    border-style: none !important;
    outline: none !important;
  }
  
  .noUi-handle:before {
    display: none !important;
  }
  
  .noUi-handle:after {
    display: none !important;
  }
  
  .noUi-tooltip {
    outline: none !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: #0fccd8;
    padding: 5px 15px;
    color: #fff;
    border-radius: 4px;
    margin-top: -40px;
    border-style: none !important;
  }
  
  .noUi-tooltip:after {
    content: '';
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid #0fccd8;
    border-color: #0fccd8 transparent transparent transparent;
  }
  
  .noUi-active {
    box-shadow: none !important;
  }
  
  .subtitle-below-form {
    text-align: center;
  }
  
  @media screen and (max-width: 767px) {
    .subtitle-below-form {
      padding-bottom: 70px;
    }
  }
  
  .subtitle-below-form .h3 {
    color: white;
  }
  
  @media only screen and (max-width: 400px) {
    .seen-millions-mobile {
      margin-right: 70px !important;
      margin-left: 70px !important;
    }
  }
  
  @media only screen and (max-width: 600px) {
    .arrow {
      border-top: 0.2px solid white;
      border-bottom: 1px solid white;
    }
  }
  
  .error-link-login {
    cursor: pointer;
  }
  
  .subheader-own-note {
    margin-top: 5px;
    font-size: 13px;
    color: grey;
    text-align: center;
  }
  
  @media screen and (min-width: 768px) {
    table.viewing-table td {
      min-width: 170px;
      max-width: 170px;
    }
  }
  
  @media screen and (min-width: 768px) {
    table.viewing-table-header th.header-row,
    table.viewing-table-header td {
      border: 0;
      min-width: 170px;
      max-width: 170px;
    }
  }
  
  .events-none {
    pointer-events: none;
  }
  
  .modal-explanation-text {
    font-size: 0.9em;
    font-weight: 600;
  }
  
  /* Style to reverse the caret icon from pointing downwards to upwards */
  .caret.caret-up {
    border-top-width: 0;
    border-bottom: 4px solid #363b42;
  }
  
  .mw-600 {
    max-width: 600px;
  }
  
  .mw-1024 {
    max-width: 1024px;
  }
  
  .mw-1090 {
    max-width: 1090px;
  }
  
  .mw-1100 {
    max-width: 1100px;
  }
  
  .mw-1170 {
    max-width: 1170px;
  }
  
  .mw-1670 {
    max-width: 1670px;
  }
  
  .page-sec {
    padding: 6rem 0;
  }
  
  .bg-light, .white-box-sec, .featured-projects-sec {
    background-color: #F8F8F8 !important;
  }
  
  .white-box {
    background-color: #FFF;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.29);
    padding: 2rem;
    border-radius: 4px;
  }
  
  .white-box-sec .white-box {
    padding: 30px 40px;
  }
  
  .white-box-sec .white-box h2,
  .white-box-sec .white-box p {
    margin: 15px 0;
  }
  
  .white-box-sec .white-box p {
    color: #4A4A4A;
  }
  
  .row.gutters-half {
    margin-left: -8px;
    margin-right: -8px;
  }
  
  .row.gutters-half > [class^="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .ip-hero-section {
    padding: 48px 0;
  }
  
  @media screen and (min-width: 768px) {
    .ip-hero-section {
      height: 100vw;
      max-height: 725px;
    }
  }
  
  .ip-hero-section:before {
    content: '';
    left: 0;
    top: 0;
    background-color: rgba(23, 23, 23, 0.36);
    z-index: 2;
  }
  
  .ip-hero-section > img {
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .ip-hero-section .container,
  .ip-hero-section .container-fluid {
    z-index: 3;
  }
  
  .ip-hero-section .container .iphs-content,
  .ip-hero-section .container-fluid .iphs-content {
    max-width: 810px;
  }
  
  @media screen and (max-width: 767px) {
    .ip-hero-section .container .iphs-content,
    .ip-hero-section .container-fluid .iphs-content {
      margin-top: 60px;
    }
  }
  
  .ip-hero-section .container :not(.btn),
  .ip-hero-section .container-fluid :not(.btn) {
    color: #FFF;
  }
  
  .ip-hero-section h1 {
    margin-bottom: 40px;
  }
  
  @media screen and (max-width: 767px) {
    .ip-hero-section h1 {
      font-size: 5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .ip-hero-section h1 {
      font-size: 12vw;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .ip-hero-section h1 {
      font-size: 98px;
      line-height: 100px;
    }
  }
  
  .ip-hero-section .h3 {
    margin: 0 auto 40px;
    max-width: 500px;
  }
  
  .ip-hero-section p {
    font-size: 18px;
    font-weight: 300;
    margin: 2rem auto 3rem;
  }
  
  .ip-hero-section .btn {
    font-size: 18px;
    font-weight: 500;
  }
  
  .ip-hero-section .btn + .btn {
    margin-left: 1rem;
  }
  
  .ip-hero-section .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 99;
    transform: translateX(-50%);
  }
  
  .ip-hero-section .scroll-down a {
    color: #FFF;
    text-decoration: none;
  }
  
  .ip-hero-section.ip-hero-section ~ #scrollto .arrow {
    height: auto;
    border: 0;
  }
  
  .ip-hero-section.ip-hero-section ~ #scrollto .arrow:before, .ip-hero-section.ip-hero-section ~ #scrollto .arrow:after {
    border-bottom-color: #f8f8f8;
  }
  
  .featured-projects-sec h2,
  .featured-developers-sec h2,
  .page-bottom-sec h2 {
    margin-bottom: 32px;
  }
  
  .featured-projects-sec .embed-responsive {
    margin: 8px 0;
  }
  
  @media screen and (min-width: 576px) {
    .featured-developers-sec .row {
      display: flex;
      align-items: center;
    }
  }
  
  .featured-developers-sec .row img {
    max-height: 80px;
    margin: 8px 0;
  }
  
  @media screen and (max-width: 575px) {
    .featured-developers-sec .row img {
      margin: 20px 0;
    }
  }
  
  .page-bottom-sec {
    min-height: 260px;
    /* &:before,
      &:after {
          @extend .d-block,
          .position-absolute;
          width: 50%;
          content: '';
          height: 100%;
          z-index: 1;
          top: 0;
          background-position: center;
          background-size: cover;
          background-repeat: no-repeat;
      }
  
      &:before {
          background-image: url("../img/featured-projects/2.jpg");
          left: 0;
      }
  
      &:after {
          background-image: url("../img/featured-projects/5.jpg");
          right: 0;
      } */
    /* .page-sec-overlay */
  }
  
  .page-bottom-sec:after {
    content: '';
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  
  .page-bottom-sec > .container-fluid {
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 6rem 15px;
  }
  
  .page-bottom-sec h2 {
    max-width: 500px;
  }
  
  .page-bottom-sec .btn {
    margin: 0 5px;
  }
  
  .page-bottom-sec .pbs-banner {
    padding-top: calc(6 / 21 * 100%);
    width: 50%;
  }
  
  .page-bottom-sec .pbs-banner img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .embed-responsive-item {
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .embed-responsive-21by9 {
    padding-top: calc(9 / 21 * 100%);
  }
  
  .bootbox-leftalign .modal-dialog {
    margin-left: 1rem;
  }
  
  .property-detail-slider .slick-prev,
  .property-detail-slider .slick-next {
    width: 4rem;
    height: 4rem;
    z-index: 2;
  }
  
  .property-detail-slider .slick-prev:before,
  .property-detail-slider .slick-next:before {
    font-size: 4rem;
  }
  
  .property-detail-slider .slick-prev {
    left: 1.5rem;
  }
  
  .property-detail-slider .slick-next {
    right: 1.5rem;
  }
  
  .btn-dark {
    background-color: #212529;
  }
  
  .btn-dark:hover, .btn-dark:focus {
    color: #FFF;
    background-color: #0badb7;
  }
  
  .d-inline-block {
    display: inline-block;
  }
  
  .content-page section {
    margin-top: 30px;
  }
  
  .content-page section h2 {
    margin-bottom: 10px;
  }
  
  .content-page .bottom-spacing {
    margin-bottom: 128px;
  }
  
  .content-form {
    padding-bottom: 30px;
  }
  
  .content-form .form-group {
    margin-bottom: 15px;
  }
  
  .content-form .form-group label {
    margin-bottom: 0;
    font-size: 14px;
  }
  
  .modal {
    /* No bottom padding for form in modals */
  }
  
  .modal .content-form {
    padding-bottom: 0;
  }
  
  .content-form--password {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .about-content-page {
    margin-bottom: 6rem;
  }
  
  @media screen and (min-width: 1024px) {
    .about-content-page h1 {
      font-size: 42px;
    }
  }
  
  .about-counters-sec {
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .about-counters-sec .white-box {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .about-counters-sec .white-box .row {
    width: calc(100% + 30px);
  }
  
  .about-counters-sec .white-box h2 {
    font-weight: 700;
  }
  
  @media screen and (min-width: 1024px) {
    .about-counters-sec .white-box h2 {
      font-size: 4rem;
    }
  }
  
  .about-counters-sec .white-box h2 span {
    font-weight: normal;
  }
  
  .about-counters-sec .white-box > p {
    margin: 5rem 0 0 0;
    color: #aaa;
  }
  
  .about-counters-sec p {
    margin: 5px 0 0 0;
    font-size: 11px;
  }
  
  .about-counters-sec .acs-col {
    padding: 2rem 0;
  }
  
  /* .talking-sec {
      text-align: center;
  
      img {
          margin: 2rem 0;
      }
  
      .row {
          margin-top: 4rem;
  
          @include media('screen', '>=tablet') {
              display: flex;
              align-items: center;
          }
      }
  } */
  .featured-in.about-page:after {
    display: none;
  }
  
  .full-serv-sec .fss-card {
    background-color: #2C2C2C;
  }
  
  .full-serv-sec .fss-card * {
    color: #FFF;
  }
  
  .full-serv-sec .fss-card-thumb:before {
    content: '';
    padding-top: 105%;
  }
  
  .full-serv-sec .fss-card-thumb img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .full-serv-sec .fss-card-content {
    padding: 32px;
  }
  
  .full-serv-sec .fss-card-content ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    margin-bottom: 0;
  }
  
  .full-serv-sec .fss-card-content ul li {
    font-weight: 300;
    padding-left: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .full-serv-sec .fss-card-content ul li:before {
    content: '';
    left: 0;
    top: 15px;
    border-width: 0 0 3px 3px;
    border-style: solid;
    border-color: #FFF;
    transform: rotate(-45deg);
  }
  
  @media screen and (max-width: 767px) {
    .full-serv-sec .fss-card li {
      font-size: 16px;
    }
    .full-serv-sec .fss-card li:before {
      width: 16px;
      height: 8px;
    }
  }
  
  @media screen and (min-width: 769px) {
    .full-serv-sec .fss-card li {
      font-size: 20px;
    }
    .full-serv-sec .fss-card li:before {
      width: 20px;
      height: 10px;
    }
  }
  
  @media screen and (min-width: 768px) {
    .full-serv-sec .fss-card {
      display: flex;
    }
    .full-serv-sec .fss-card-thumb {
      width: 50.5%;
      order: 1;
      min-height: 100%;
    }
    .full-serv-sec .fss-card-content {
      width: 49.5%;
      align-self: center;
    }
    .full-serv-sec .fss-card-content h2,
    .full-serv-sec .fss-card-content ul {
      margin-left: auto;
      margin-right: auto;
      max-width: 520px;
    }
  }
  
  .fees .main {
    padding-top: 105px;
  }
  
  @media screen and (min-width: 1024px) {
    .fees .main {
      padding-top: 130px;
    }
  }
  
  .fees .title {
    margin-bottom: 23px;
  }
  
  .fees .title .h2 {
    margin-bottom: 7px;
  }
  
  .fees-holder {
    margin: 0 -15px 25px;
    background: #f8f8f8;
  }
  
  @media screen and (min-width: 1024px) {
    .fees-holder {
      margin-bottom: 40px;
    }
  }
  
  .fees-holder.fees-holder--selected {
    border: 2px solid black;
  }
  
  .fees-holder.fees-holder--selected .title {
    background-color: black;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  @media screen and (min-width: 1024px) {
    .fees-holder.fees-holder--selected .title {
      padding-right: 60px;
      padding-left: 60px;
    }
  }
  
  .fees-holder.fees-holder--selected .fees-list li:before {
    border-bottom: 3px solid black;
    border-right: 3px solid black;
  }
  
  .fees-holder .title {
    height: 100px;
    background-color: #0fccd8;
    padding: 16px 15px;
    margin: 0;
  }
  
  @media screen and (min-width: 1024px) {
    .fees-holder .title {
      height: 89px;
    }
  }
  
  .fees-holder .title:after {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  
  .fees-holder .title .h2 {
    color: #fff;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }
  
  .fees-holder .sub-title {
    text-align: center;
    color: #363b42;
    padding: 30px 15px 0;
  }
  
  @media screen and (min-width: 1024px) {
    .fees-holder .sub-title.different-width {
      max-width: 480px;
      margin: 0 auto;
    }
  }
  
  .list-holder .fees-list li {
    padding-right: 52px;
  }
  
  @media screen and (min-width: 1024px) {
    .list-holder .fees-list br {
      display: none;
    }
  }
  
  .fees-list {
    padding: 30px 15px;
    margin: 0;
  }
  
  @media screen and (min-width: 1024px) {
    .fees-list {
      padding: 30px 60px;
    }
  }
  
  .fees-list li {
    position: relative;
    padding: 0 48px;
  }
  
  @media screen and (min-width: 1024px) {
    .fees-list li {
      padding: 0 33px;
    }
  }
  
  .fees-list li + li {
    margin-top: 26px;
  }
  
  .fees-list li:before {
    content: '';
    width: 10px;
    height: 15px;
    position: absolute;
    left: 12px;
    top: -2px;
    border-bottom: 3px solid #0fccd8;
    border-right: 3px solid #0fccd8;
    transform: rotate(45deg);
  }
  
  @media screen and (min-width: 1024px) {
    .fees-list li:before {
      left: 7px;
    }
  }
  
  .fees-list li span {
    position: absolute;
    right: 52px;
    top: 0;
  }
  
  .fees-list .popup-holder {
    position: absolute;
    right: 4px;
    top: -2px;
  }
  
  .fees-list .popup-holder .open {
    width: 23px;
    height: 23px;
    border: 1px solid #363b42;
    border-radius: 50%;
    text-align: center;
    color: #363b42;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
  }
  
  .fees-list .popup-holder .open:hover {
    text-decoration: none;
    color: #0fccd8;
    border-color: #0fccd8;
  }
  
  .fees-list .popup-holder .popup {
    display: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 294px;
    padding: 10px;
    color: #fff;
    background: #363b42;
    z-index: 5;
  }
  
  @media screen and (min-width: 1024px) {
    .fees-list .popup-holder .popup {
      padding: 24px;
      width: 294px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .fees-list .popup-holder .popup {
      width: 250px;
    }
  }
  
  .fees-list .popup-holder .popup:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-color: transparent transparent transparent #363b42;
    border-width: 8px 0 8px 10px;
  }
  
  .faq-holder {
    margin: 0 -15px;
    background: #f8f8f8;
  }
  
  @media screen and (min-width: 1024px) {
    .faq-holder {
      margin: 0 0 40px 0;
    }
  }
  
  .faq-holder .title {
    height: 100px;
    background-color: #0fccd8;
    padding: 16px 15px;
  }
  
  @media screen and (min-width: 1024px) {
    .faq-holder .title {
      height: 89px;
    }
  }
  
  .faq-holder .title:after {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  
  .faq-holder .title .h2 {
    color: #fff;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }
  
  .faq-list {
    padding: 29px 15px 17px;
    margin-bottom: 25px;
  }
  
  @media screen and (min-width: 1024px) {
    .faq-list {
      padding: 19px 63px 46px;
      margin-bottom: 40px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .faq-list {
      padding: 10px;
    }
  }
  
  .faq-list li {
    position: relative;
    padding: 0 48px;
  }
  
  @media screen and (min-width: 1024px) {
    .faq-list li {
      padding: 0 33px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .faq-list li {
      padding: 0;
    }
  }
  
  .faq-list li + li {
    margin-top: 26px;
  }
  
  .footer {
    padding: 37px 0;
    background: #23282B;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 1.71428;
  }
  
  @media screen and (min-width: 1024px) {
    .footer {
      font-size: 16px;
      padding: 34px 0;
      line-height: 1.5;
    }
  }
  
  @media screen and (max-width: 767px) {
    .footer {
      font-size: 2vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .footer {
      font-size: 4vw;
    }
  }
  
  .footer .h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  @media screen and (min-width: 1024px) {
    .footer .h6 {
      font-size: 16px;
      margin-bottom: 12px;
    }
  }
  
  .footer .logo-footer {
    font-weight: 600;
    margin-bottom: 38px;
  }
  
  .footer .logo-footer .img-holder {
    margin-top: 9px;
  }
  
  .footer .logo-footer img {
    width: 216px;
    height: 47px;
  }
  
  .footer .social-network li {
    margin: 0 10px;
  }
  
  .footer .social-network li a {
    font-size: 16px;
  }
  
  @media screen and (min-width: 1024px) {
    .footer .footer-link {
      display: flex;
      justify-content: center;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .footer .footer-link li:not(:last-child):after {
      content: '|';
      margin: 0 5px;
    }
  }
  
  .footer .footer-item {
    margin: 0 auto 36px;
  }
  
  @media screen and (min-width: 1024px) {
    .footer .footer-item {
      margin: 0 auto 30px;
    }
  }
  
  .footer .footer-item:nth-last-of-type {
    margin-bottom: 27px;
  }
  
  .footer .footer-item a {
    color: #fff;
  }
  
  .footer .footer-item a:hover {
    color: #0fccd8;
  }
  
  .offer-container #bid-table button.no-style {
    background: none;
    border: none;
    outline: none;
  }
  
  .offer-container #bid-table .inline-block {
    display: inline-block;
  }
  
  .offer-container td.rejected {
    color: #d61212;
  }
  
  .offer-container td .btn-reject-bid {
    color: white;
    padding: 8px 10px;
    min-width: 90px;
  }
  
  .offer-container td.accepted {
    color: #0fd87c;
  }
  
  .offer-container td .btn-accept-bid {
    color: white;
    padding: 8px 10px;
    min-width: 90px;
  }
  
  @media only screen and (max-width: 1440px) {
    .offer-container td .btn-accept-bid {
      margin-bottom: 5px;
    }
  }
  
  /* Slider */
  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .slick-list:focus {
    outline: none;
  }
  
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
  }
  
  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .slick-track:before, .slick-track:after {
    content: "";
    display: table;
  }
  
  .slick-track:after {
    clear: both;
  }
  
  .slick-loading .slick-track {
    visibility: hidden;
  }
  
  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    outline: none;
    display: none;
  }
  
  [dir="rtl"] .slick-slide {
    float: right;
  }
  
  .slick-slide img {
    display: block;
  }
  
  .slick-slide.slick-loading img {
    display: none;
  }
  
  .slick-slide.dragging img {
    pointer-events: none;
  }
  
  .slick-initialized .slick-slide {
    display: block;
  }
  
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  
  .slick-arrow.slick-hidden {
    display: none;
  }
  
  .searcher-listing {
    margin-bottom: 40px;
  }
  
  .searcher-listing .searcher-listing__filter {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #363b42;
  }
  
  .searcher-listing .searcher-listing__inputs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 860px;
    margin: 15px auto 0;
    padding: 15px;
    box-shadow: 1px 2px 4px #e6e6e6;
    border-radius: 4px;
  }
  
  .searcher-listing .searcher-listing__inputs .searcher-listing__input {
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .searcher-listing .searcher-listing__inputs .searcher-listing__input {
      width: 21%;
      padding-right: 1rem;
    }
  }
  
  .searcher-listing .searcher-listing__inputs .searcher-listing__button {
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .searcher-listing .searcher-listing__inputs .searcher-listing__button {
      width: 16%;
    }
  }
  
  .searcher-listing .searcher-listing__inputs .js-select-ac + .select2 {
    margin-bottom: 15px;
    border-radius: 2px;
    font-size: 14px;
  }
  
  @media (min-width: 768px) {
    .searcher-listing .searcher-listing__inputs .js-select-ac + .select2 {
      margin-bottom: 0;
    }
  }
  
  .searcher-listing .searcher-listing__inputs .js-select-ac + .select2 .select2-selection--single {
    height: auto;
  }
  
  .input-search-container {
    width: 342px;
    max-width: 100%;
    display: inline-block;
    position: relative;
  }
  
  .input-search-container .fa-search {
    padding-top: 3px;
    padding-left: 6px;
    padding-right: 10px;
    width: 39px;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    position: absolute;
    display: inline-block;
    left: 2px;
    margin-top: 8px;
  }
  
  .loading-container {
    display: none;
    margin-left: 10px;
  }
  
  @media screen and (min-width: 768px) {
    .property-holder {
      display: flex;
    }
  }
  
  .property-holder .col-sm-6 {
    display: flex;
  }
  
  .property-holder .property-item {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .property-holder .img-holder {
    flex: 0 0 auto;
  }
  
  .property-holder .price-holder {
    flex: 1 1 auto;
  }
  
  @media screen and (min-width: 768px) {
    .search-result-card {
      height: 500px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .search-result-card {
      height: 600px;
    }
  }
  
  .search-result-card .property-item {
    color: #656d78;
    display: block;
    margin-bottom: 40px;
    transition: box-shadow .2s;
  }
  
  .search-result-card .property-item:hover, .search-result-card .property-item:active, .search-result-card .property-item:focus {
    text-decoration: none;
    color: #656d78;
    box-shadow: 0 0 10px #0fccd8;
  }
  
  .search-result-card .property-item img {
    width: 100%;
  }
  
  @media screen and (max-width: 767px) {
    .search-result-card .property-item img {
      min-height: 275px;
    }
  }
  
  @media screen and (min-width: 768px) {
    .search-result-card .property-item img {
      min-height: 257px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .search-result-card .property-item img {
      min-height: 339px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .search-result-card .property-item img {
      min-height: 413px;
    }
  }
  
  .search-result-card .property-item .property-gone {
    background: red;
    color: white;
    float: right;
    padding: 5px 10px;
    margin-top: -5px;
  }
  
  .search-result-card .property-item .property-sold {
    background: black;
    color: white;
    float: right;
    padding: 7px 15px;
    margin-top: -5px;
  }
  
  #pagination-holder .paging {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  
  #pagination-holder .paging li {
    display: inline-block;
    float: left;
    width: 60px;
    margin: 4px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #0fccd8;
    overflow: auto;
  }
  
  #pagination-holder .paging li:first-of-type {
    margin-left: 0;
  }
  
  @keyframes spinner {
    to {
      transform: rotate(360deg);
    }
  }
  
  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    width: 20px;
    height: 20px;
    margin-top: 10px;
    margin-left: 140px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #0fccd8;
    border-bottom-color: #0fccd8;
    animation: spinner .8s ease infinite;
  }
  
  #property-input-search {
    width: 342px;
    max-width: 100%;
    border-bottom: none;
    box-shadow: 1px 2px 4px #e6e6e6;
    border-radius: 2px;
    border: 1px solid #f2f2f2;
    padding: 14px;
    font-size: 14px;
    line-height: 1.43;
    color: #484848 !important;
    font-weight: 600;
    padding-left: 36px;
    -webkit-font-smoothing: antialiased;
  }
  
  #property-input-search::placeholder {
    color: #363b42;
    font-weight: initial;
  }
  
  .content-separator {
    padding-bottom: 100px;
    font-size: 16px;
  }
  
  .property-detail a:focus {
    outline: none;
  }
  
  .price-holder {
    background-color: #f8f8f8;
    border: 1px solid #e1e1e1;
    padding: 19px 19px 1px;
  }
  
  .price-holder .price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  
  @media screen and (min-width: 768px) {
    .price-holder .price {
      flex-direction: column;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .price-holder .price {
      flex-direction: row;
      align-items: center;
    }
  }
  
  @media screen and (max-width: 479px) {
    .price-holder .price {
      flex-direction: column;
    }
  }
  
  .price-holder .attribute {
    font-size: 18px;
  }
  
  @media screen and (max-width: 767px) {
    .price-holder .attribute {
      font-size: 3.4vw;
      flex: 1 1 auto;
    }
  }
  
  @media screen and (max-width: 479px) {
    .price-holder .attribute {
      font-size: 4.4vw;
    }
  }
  
  .price-holder .address {
    font-weight: 600;
    font-size: 18px;
    color: #363b42;
  }
  
  @media screen and (max-width: 767px) {
    .price-holder .address {
      margin-bottom: 10px;
      font-size: 3.4vw;
      flex: 1 1 auto;
    }
  }
  
  @media screen and (max-width: 479px) {
    .price-holder .address {
      font-size: 4.4vw;
    }
  }
  
  .price-holder .number-price {
    font-size: 18px;
  }
  
  @media screen and (max-width: 767px) {
    .price-holder .number-price {
      font-size: 3.4vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .price-holder .number-price {
      font-size: 4.4vw;
    }
  }
  
  .price-holder .number-price b {
    font-weight: 600;
    color: #363b42;
  }
  
  .property-address {
    margin-bottom: 25px;
  }
  
  @media screen and (min-width: 1024px) {
    .property-address {
      font-size: 18px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .property-address .h2 {
      margin-bottom: 5px;
    }
  }
  
  .property-address .property-address .link-holder li.cta-link a:hover {
    color: white;
    background: #0fccd8;
    border: 1px solid #0fccd8;
  }
  
  .property-address .property-address .link-holder li.cta-link a.book-viewing-button-link {
    color: white;
    background: #4d4dff;
    border: 1px solid #4d4dff;
  }
  
  .property-address .property-address .link-holder li.cta-link a.book-viewing-button-link:hover {
    color: #4d4dff;
    background: white;
  }
  
  .property-address .cta-link .open-viewing-cta {
    float: right;
    margin-left: 20px;
  }
  
  .property-address .link-holder {
    font-size: 14px;
    font-weight: 600;
    margin-top: 11px;
  }
  
  @media screen and (min-width: 1024px) {
    .property-address .link-holder {
      margin-top: 15px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .property-address .link-holder {
      font-size: 2vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .property-address .link-holder {
      font-size: 3vw;
      margin-top: 25px;
      margin-bottom: 0;
    }
  }
  
  .property-address .link-holder li {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.cta-link {
      width: 100%;
    }
  }
  
  .property-address .link-holder li.cta-link a {
    color: white;
    background: #0fccd8;
    border: 1px solid #0fccd8;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    display: block;
    font-weight: normal;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s, color .2s;
    padding: 10px;
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.cta-link a {
      font-size: 16px;
      line-height: 1;
      margin-bottom: 15px;
      width: 100%;
      text-transform: inherit;
      text-align: center;
    }
  }
  
  @media (max-width: 320px) {
    .property-address .link-holder li.cta-link a {
      font-size: 14px;
    }
  }
  
  .property-address .link-holder li.cta-link a:hover {
    color: #656d78;
    background: white;
    border: 1px solid #656d78;
  }
  
  .property-address .link-holder li.cta-link a.book-viewing-button-link {
    color: white;
    background: #fd5c63;
    border: 1px solid #fd5c63;
  }
  
  .property-address .link-holder li.cta-link a.book-viewing-button-link:hover {
    color: #656d78;
    background: white;
    border: 1px solid #656d78;
  }
  
  .property-address .link-holder li.cta-link .open-viewing-cta {
    float: right;
    margin-left: 20px;
  }
  
  @media screen and (max-width: 768px) {
    .property-address .link-holder li.cta-link .open-viewing-cta {
      margin-left: 0;
    }
  }
  
  .property-address .link-holder li.cta-link .open-viewing-holder {
    display: block;
    font-weight: normal;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: none;
    transition: background .2s, color .2s;
    border: 1px solid #0fccd8;
    color: #0fccd8;
    padding: 0 0 0 10px;
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.cta-link .open-viewing-holder {
      padding: 10px 0 0 0;
      text-align: center;
      font-size: 14px;
      margin-bottom: 15px;
    }
  }
  
  .property-address .link-holder li.cta-link .open-viewing-holder span {
    margin-right: 10px;
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.cta-link .open-viewing-holder span {
      display: block;
      margin-bottom: 10px;
    }
  }
  
  .property-address .link-holder li.cta-link .open-viewing-holder .open-viewing-time {
    display: inline-block;
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.cta-link .open-viewing-holder .open-viewing-time {
      display: block;
    }
  }
  
  @media screen and (min-width: 769px) {
    .property-address .link-holder li.cta-link .open-viewing-holder .open-viewing-time:first-of-type {
      margin-right: -5px;
    }
  }
  
  .property-address .link-holder li.cta-link .open-viewing-holder .open-viewing-time a {
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.cta-link .open-viewing-holder .open-viewing-time a {
      border-top: 1px solid #0fccd8;
      border-left: 0;
      margin-bottom: 0;
    }
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.cta-link .open-viewing-holder .open-viewing-time a span {
      margin-bottom: 0;
    }
  }
  
  .property-address .link-holder li.property-gone, .property-address .link-holder li.property-sold {
    color: white;
    border-radius: 4px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    font-weight: normal;
    font-size: 14px;
  }
  
  @media screen and (min-width: 481px) {
    .property-address .link-holder li.property-gone, .property-address .link-holder li.property-sold {
      padding: 11px 15px;
      margin-bottom: 10px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .property-address .link-holder li.property-gone, .property-address .link-holder li.property-sold {
      font-size: 2vw;
    }
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.property-gone, .property-address .link-holder li.property-sold {
      width: 100%;
      text-align: center;
      line-height: 24px;
      padding: 7px 15px;
      margin-bottom: 25px;
      font-size: 14px;
    }
  }
  
  .property-address .link-holder li.property-gone {
    background: #d61212;
  }
  
  .property-address .link-holder li.property-sold {
    background: black;
  }
  
  .property-address .link-holder li.no-uppercase .open-viewing {
    color: #D8210F;
  }
  
  .property-address .link-holder li.no-uppercase .open-viewing:hover {
    color: #D8210F;
    text-decoration: none;
  }
  
  .property-address .link-holder li.no-uppercase .link-open-viewing {
    text-transform: none;
    color: #D8210F;
  }
  
  @media screen and (min-width: 1024px) {
    .property-address .link-holder li.no-uppercase .link-open-viewing {
      margin-left: 35px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .property-address .link-holder li.no-uppercase div.content-link {
      margin-top: 5px;
    }
  }
  
  @media only screen and (min-width: 600px) and (max-width: 1000px) {
    .property-address .link-holder li.no-uppercase div.content-link {
      margin-top: 10px;
      margin-right: 120px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.no-uppercase div.content-link {
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .property-address .link-holder li.no-uppercase div.content-link form {
      margin-bottom: 10px;
    }
  }
  
  .property-address .link-holder a {
    text-decoration: underline;
  }
  
  .detail-information {
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 38px;
  }
  
  @media screen and (min-width: 1024px) {
    .detail-information {
      padding-bottom: 2px;
    }
  }
  
  .detail-information:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    bottom: 0;
    background-color: #e1e1e1;
  }
  
  @media screen and (max-width: 767px) {
    .detail-information:after {
      left: -50px;
      right: -50px;
    }
  }
  
  .detail-information .price {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    color: #363b42;
  }
  
  @media screen and (max-width: 767px) {
    .detail-information .price {
      flex-basis: 100%;
      margin-bottom: 10px;
      font-size: 5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .detail-information .price {
      font-size: 6vw;
    }
  }
  
  .detail-information .detail-item {
    font-size: 18px;
    margin-bottom: 31px;
  }
  
  @media screen and (max-width: 767px) {
    .detail-information .detail-item {
      font-size: 3.4vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .detail-information .detail-item {
      font-size: 4.4vw;
    }
  }
  
  .detail-information .detail-item b {
    color: #363b42;
    display: block;
    font-size: 24px;
  }
  
  @media screen and (max-width: 767px) {
    .detail-information .detail-item b {
      flex-basis: 100%;
      margin-bottom: 10px;
      font-size: 5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .detail-information .detail-item b {
      font-size: 6vw;
    }
  }
  
  .detail-information .btn-holder {
    padding-top: 9px;
  }
  
  .detail-information .btn {
    padding: 12px;
    width: 100%;
    min-width: 100px;
  }
  
  .detail-information .btn:hover {
    border-color: #0fccd8;
    color: #fff;
    background-color: #0fccd8;
  }
  
  .detail-information .virtual-tour-button {
    padding-left: 5px;
    padding-right: 5px;
    border-color: #000;
    color: #fff;
    background-color: #000;
  }
  
  .detail-information .virtual-tour-button:hover {
    border-color: #0fccd8;
    color: #fff;
    background-color: #0fccd8;
  }
  
  .slide {
    position: relative;
  }
  
  .slide.slick-slide img {
    width: auto;
    margin: auto;
  }
  
  .all-photos {
    margin-top: -90px;
    z-index: 1;
    position: relative;
  }
  
  @media screen and (max-width: 1023px) {
    .all-photos {
      padding: 13px 31px;
      font-size: 14px;
    }
  }
  
  .js-lightbox-gallery {
    margin-bottom: 35px;
  }
  
  .js-lightbox-gallery .slide {
    display: inline-block;
    /* add */
  }
  
  .js-lightbox-gallery.gallery-hero-container {
    position: relative;
    overflow: hidden;
  }
  
  .js-lightbox-gallery.gallery-hero-container .gallery-hero-scroller {
    font-size: 0;
    white-space: nowrap;
    background-position: top left;
  }
  
  @media screen and (max-width: 479px) {
    .js-lightbox-gallery.gallery-hero-container .gallery-hero-scroller {
      overflow-x: hidden;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
    }
  }
  
  .js-lightbox-gallery.gallery-hero-container .gallery-hero-scroller .gallery-hero-image {
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.4s;
  }
  
  .js-lightbox-gallery.gallery-hero-container .gallery-hero-scroller .gallery-hero-image:hover {
    opacity: 0.9;
  }
  
  .js-lightbox-gallery.gallery-hero-container .gallery-hero-scroller .gallery-hero-image:focus, .js-lightbox-gallery.gallery-hero-container .gallery-hero-scroller .gallery-hero-image:active {
    outline: 0;
  }
  
  @media screen and (max-width: 479px) {
    .js-lightbox-gallery.gallery-hero-container .gallery-hero-scroller .gallery-hero-image img {
      vertical-align: top;
    }
  }
  
  .fancybox-slider .fancybox-slide .lightbox-gallery-holder .lightbox-gallery.slick-initialized.slick-slider .slick-list {
    /* Vertically-center images in gallery slider */
  }
  
  .fancybox-slider .fancybox-slide .lightbox-gallery-holder .lightbox-gallery.slick-initialized.slick-slider .slick-list .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .fancybox-slider .fancybox-slide .lightbox-gallery-holder .lightbox-gallery .slick-arrow:focus {
    outline: none;
  }
  
  .key-details {
    margin-bottom: 19px;
  }
  
  @media screen and (min-width: 1024px) {
    .key-details {
      font-size: 14px;
      margin-bottom: 2px;
    }
  }
  
  .key-details .h2 {
    margin-bottom: 15px;
  }
  
  @media screen and (min-width: 1024px) {
    .key-details .h2 {
      margin-bottom: 44px;
    }
  }
  
  .key-details .details-list li {
    margin-bottom: 20px;
  }
  
  .key-details .rating {
    position: relative;
    background: #000;
  }
  
  .read-more {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: #0fccd8;
  }
  
  @media screen and (min-width: 768px) {
    .read-more {
      display: none;
    }
  }
  
  @media screen and (max-width: 767px) {
    .read-more {
      font-size: 2vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .read-more {
      font-size: 3vw;
    }
  }
  
  .read-more[aria-expanded="true"] .show-text {
    display: inline;
  }
  
  .read-more[aria-expanded="true"] .hide-text {
    display: none;
  }
  
  .read-more .show-text {
    display: none;
  }
  
  .read-more .hide-text {
    display: inline;
  }
  
  section.property-detail-info:nth-child(2n+1) {
    background-color: #f8f8f8;
  }
  
  .features,
  .area-info {
    padding: 38px 0;
  }
  
  @media screen and (min-width: 1024px) {
    .features,
    .area-info {
      padding-bottom: 22px;
    }
  }
  
  .features .h2 {
    margin-bottom: 20px;
  }
  
  @media screen and (min-width: 768px) {
    .features-list {
      columns: 2;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .features-list {
      columns: 3;
      font-size: 14px;
    }
  }
  
  .features-list li {
    margin-bottom: 20px;
  }
  
  @media screen and (min-width: 1024px) {
    .features-list li {
      margin-bottom: 22px;
    }
  }
  
  .features-list li:last-child {
    margin-bottom: 15px;
  }
  
  .features-list li:before {
    content: '•';
    margin-right: 5px;
  }
  
  .description,
  .area-info {
    line-height: 1.5;
    padding: 38px 0;
  }
  
  @media screen and (min-width: 1024px) {
    .description,
    .area-info {
      font-size: 14px;
    }
  }
  
  .description .h2,
  .area-info .h2 {
    margin-bottom: 13px;
  }
  
  .description p,
  .area-info p {
    margin-bottom: 18px;
  }
  
  @media screen and (min-width: 768px) {
    .description .collapse,
    .area-info .collapse {
      height: auto !important;
      display: block !important;
    }
  }
  
  .success-block {
    background-color: #0fd87c;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    padding: 7px 0;
    margin-bottom: 30px;
  }
  
  #map {
    display: none;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  #map .fancybox-close-small {
    right: 20px;
    top: 20px;
    background: url("../img/close.svg") no-repeat;
  }
  
  .property-detail-slider .slide > a,
  .property-detail-slider .slide > picture {
    display: block;
    position: relative;
    overflow: hidden;
  }
  
  .property-detail-slider .slide > a:after,
  .property-detail-slider .slide > picture:after {
    content: '';
    display: block;
    padding-top: 72%;
  }
  
  .property-detail-slider .slide > a img,
  .property-detail-slider .slide > picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  #login .fancybox-close-small {
    background: url("../img/close.svg") no-repeat;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
  }
  
  .login-popup {
    width: 556px;
  }
  
  .login-popup .login-popup-close {
    position: absolute;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: #656d78;
    font-size: 2rem;
    right: 15px;
    top: 15px;
  }
  
  .login-popup .login-popup-close:hover, .login-popup .login-popup-close:focus {
    text-decoration: none;
  }
  
  @media screen and (min-width: 768px) {
    .login-popup {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  
  @media screen and (max-width: 767px) {
    .login-popup {
      width: 100%;
      height: 100%;
      padding: 38px 20px;
      border-radius: 0;
    }
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
  }
  
  .login-form .btn {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .login-form .btn:hover {
    text-decoration: none !important;
  }
  
  .login-form .form-group {
    margin-bottom: 24px;
  }
  
  .title {
    margin-bottom: 38px;
  }
  
  .btn-holder {
    text-align: center;
  }
  
  .btn-holder i {
    margin-right: 10px;
  }
  
  .login-fb,
  .login-google {
    display: block;
    color: #363b42;
    padding: 10px 20px 9px;
    border-radius: 4px;
    height: 41px;
    font-size: 14px;
  }
  
  .login-fb:hover,
  .login-google:hover {
    text-decoration: none;
  }
  
  .login-fb {
    background: #4e73ba;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .login-fb:hover {
    opacity: .9;
    color: #fff;
  }
  
  .login-fb:focus {
    color: #fff;
    outline: none;
  }
  
  .login-google {
    border: 1px solid #363b42;
    position: relative;
  }
  
  .login-google:hover {
    opacity: .9;
    color: #0fccd8;
    text-decoration: none;
  }
  
  .login-google:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    vertical-align: sub;
    background: url("../img/google-login.svg") no-repeat;
  }
  
  .forgot {
    font-size: 12px;
    color: #7f7f7f;
    text-decoration: underline;
    margin-bottom: 20px;
  }
  
  .separate {
    display: block;
    margin: 15px 0 23px;
    font-size: 14px;
  }
  
  .text-account {
    display: inline-block;
    font-size: 12px;
    color: #7f7f7f;
    text-align: center;
  }
  
  .text-account a {
    color: currentColor;
    text-decoration: underline;
  }
  
  .text-account a:hover {
    color: #0fccd8;
  }
  
  .nav-justified.lazy-menu {
    margin-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .nav-justified li:first-child > .btn {
      margin-right: 1rem;
    }
    .nav-justified li:last-child > .btn {
      margin-left: 1rem;
    }
  }
  
  .nav-justified li a.btn {
    padding: 1.5rem;
    border: 1px solid #0fccd8;
  }
  
  .nav-justified li a.btn:hover, .nav-justified li a.btn:focus {
    background-color: #0fccd8;
  }
  
  .active .btn-border-primary {
    background-color: #0fccd8;
    color: white;
  }
  
  .btn-border-primary {
    color: #0fccd8;
    border: 1px solid #0fccd8;
  }
  
  .btn-border-primary:hover, .btn-border-primary:focus {
    color: #fff;
  }
  
  .activated-page {
    margin: 20px 0 50px;
  }
  
  .survey-holder {
    /***** CSS Magic to Highlight Stars on Hover *****/
    /* hover previous stars in list */
  }
  
  .survey-holder .rating {
    border: none;
    float: right;
    margin: 0 0 0 28px;
  }
  
  .survey-holder .rating > input {
    display: none;
  }
  
  .survey-holder .rating > label:before {
    margin-top: 2px;
    padding: 0 5px;
    font-size: 1em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
  }
  
  .survey-holder .rating > .half:before {
    content: "\f089";
    position: absolute;
  }
  
  .survey-holder .rating > label {
    color: #fff;
    float: right;
    margin: 4px 1px 0 0;
    background-color: #d8d8d8;
    border-radius: 15px;
    height: 25px;
  }
  
  .survey-holder .rating:not(:checked) > label:hover,
  .survey-holder .rating:not(:checked) > label:hover ~ label {
    background-color: #0fccd8 !important;
    cursor: pointer;
  }
  
  .survey-holder .rating > input:checked + label:hover,
  .survey-holder .rating > label:hover ~ input:checked ~ label,
  .survey-holder .rating > input:checked ~ label:hover ~ label {
    background-color: #0fccd8 !important;
    cursor: pointer;
  }
  
  .messages #message-thread-container .message {
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    margin-bottom: 22px;
    padding: 9px;
  }
  
  @media screen and (min-width: 481px) {
    .messages #message-thread-container .message {
      padding: 18px 9px;
      width: 75%;
    }
  }
  
  .messages #message-thread-container .message.user {
    background-color: #f8f8f8;
  }
  
  @media screen and (min-width: 481px) {
    .messages #message-thread-container .message.user {
      margin-left: 25%;
    }
  }
  
  .messages #message-thread-container .message .message-date {
    font-size: 12px;
    margin: 5px 0 10px;
  }
  
  .messages #message-thread-container .message .message-body {
    font-size: 12px;
  }
  
  .messages .content-container h3.title {
    margin-bottom: 22px;
  }
  
  .feedback-height {
    min-height: calc(100vh - 55px);
  }
  
  .customer-admin {
    /* Force container to full height on desktop to ensure menu shows */
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin #wrapper {
      min-height: 100vh;
    }
  }
  
  .customer-admin .flash {
    /* Flash message container too wide, causing message to appear off-centre */
  }
  
  .customer-admin .flash.container {
    max-width: 100%;
  }
  
  .customer-admin .header {
    border-bottom: 1px solid #e2e2e2;
    z-index: 55;
    padding: 10px 20px;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .header {
      padding: 7px 0;
    }
  }
  
  .customer-admin a[data-toggle="dropdown"] {
    display: block;
  }
  
  .customer-admin #dash-login {
    color: #363b42;
    margin-bottom: 13px;
  }
  
  .customer-admin .dashboard-login {
    font-size: 24px;
    font-weight: 600;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .dashboard-login {
      position: absolute;
      right: 41px;
      top: 10px;
      font-size: 14px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .customer-admin .dashboard-login {
      background: #fff;
      border-bottom: 1px solid #e2e2e2;
      padding: 7px 23px 18px;
      overflow: hidden;
    }
  }
  
  .customer-admin .dropdown-menu {
    box-shadow: none;
    padding: 0;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .dropdown-menu {
      left: -87px;
      min-width: auto;
      border: 1px solid #e2e2e2;
      background: #fff;
      border-radius: 0;
      padding: 16px 112px 14px 20px;
      margin-top: 16px;
      font-size: 14px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .customer-admin .dropdown-menu {
      display: block;
      border: none;
      position: static;
    }
  }
  
  .customer-admin .dropdown-menu li a {
    padding: 0;
  }
  
  .customer-admin .dash-opener {
    position: absolute;
    right: 20px;
    top: 50%;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
  }
  
  .customer-admin .dash-opener:after, .customer-admin .dash-opener:before,
  .customer-admin .dash-opener span {
    content: '';
    background: #363b42;
  }
  
  .customer-admin .logo {
    position: relative;
    z-index: 9;
    background: url("../img/logo.svg") no-repeat;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .logo {
      margin-left: 40px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .customer-admin .logo {
      background: url("../img/logo-icon-color.svg") no-repeat;
    }
  }
  
  .customer-admin .nav-holder {
    width: 100%;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .nav-holder {
      position: absolute;
      left: 0;
      top: 0;
      width: 245px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .customer-admin .nav-holder {
      padding: 23px 23px;
      background: #fff;
      font-size: 20px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .dash-nav {
      padding: 80px 20px 20px;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .customer-admin .dash-nav {
      padding: 99px 10px 20px 40px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .customer-admin .dash-nav {
      background: #fff;
      margin-left: -20px;
      margin-right: -20px;
    }
  }
  
  .customer-admin .dash-nav .show-hover {
    display: none;
  }
  
  .customer-admin .dash-nav .hide-hover {
    display: inline;
  }
  
  .customer-admin .dash-nav li {
    margin-bottom: 23px;
    /* Don't apply hover on mobile - iOS safari highlights it on scroll */
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .dash-nav li {
      margin-bottom: 19px;
    }
  }
  
  .customer-admin .dash-nav li.active a {
    font-weight: 600;
  }
  
  .customer-admin .dash-nav li.active a .show-hover {
    display: inline;
  }
  
  .customer-admin .dash-nav li.active a .hide-hover {
    display: none;
  }
  
  @media screen and (min-width: 769px) {
    .customer-admin .dash-nav li:hover a {
      font-weight: 600;
    }
    .customer-admin .dash-nav li:hover a .show-hover {
      display: inline;
    }
    .customer-admin .dash-nav li:hover a .hide-hover {
      display: none;
    }
  }
  
  .customer-admin .dash-nav a {
    color: #363b42;
    text-decoration: none;
  }
  
  .customer-admin .dash-nav a i {
    margin-right: 7px;
  }
  
  .customer-admin .main {
    /* Allow for sticky nav */
    margin-top: 54px;
    padding: 40px 20px;
    position: relative;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .main {
      margin-left: 245px;
      background-color: #f5f5f5;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .customer-admin .main {
      padding: 36px 40px;
    }
  }
  
  .customer-admin .main:before {
    content: '';
    width: 1px;
    background-color: #e2e2e2;
    position: absolute;
    left: 0;
    bottom: 0;
    top: -150px;
  }
  
  .customer-admin .table-responsive {
    font-size: 14px;
  }
  
  .customer-admin .caret {
    border-top: 6px dashed;
    border-top: 6px solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    margin-top: -4px;
  }
  
  .customer-admin .progress {
    height: 4px;
    background: #fff;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }
  
  .customer-admin .progress .progress-bar {
    background: #e45f4d;
  }
  
  .customer-admin .purple .progress-bar {
    background: #d04de4;
  }
  
  .customer-admin .blue .progress-bar {
    background: #4dd0e4;
  }
  
  .customer-admin .title {
    text-align: left;
    margin-bottom: 22px;
  }
  
  .customer-admin .top-search-bar {
    background-color: #fff;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #e2e2e2;
  }
  
  .customer-admin .content-container {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 27px;
    margin-bottom: 20px;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .content-container {
      padding: 37px 19px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .customer-admin .content-container {
      padding: 15px;
    }
  }
  
  .customer-admin .content-container h3 {
    margin-bottom: 10px;
  }
  
  .customer-admin .ad-detail .image-holder img {
    min-height: 136px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .customer-admin .ad-detail .image-holder img {
      min-height: 190px;
    }
  }
  
  @media (min-width: 1200px) {
    .customer-admin .ad-detail .image-holder img {
      min-height: 80px;
    }
  }
  
  .customer-admin .ad-detail table {
    font-size: 14px;
  }
  
  .customer-admin .ad-detail table tr td {
    padding-top: 10px;
  }
  
  .customer-admin .ad-detail table tr td.cell-label {
    padding-right: 20px;
    font-weight: 600;
    vertical-align: top;
  }
  
  @media screen and (max-width: 480px) {
    .customer-admin .ad-detail .cta-holder {
      margin-top: 10px;
    }
  }
  
  .customer-admin .ad-detail .cta-holder .btn-primary {
    margin-bottom: 10px;
    padding: 13px;
  }
  
  .customer-admin .ad-detail .cta-holder a {
    font-size: 14px;
  }
  
  .customer-admin .ad-detail .property-gone {
    background: #d61212;
    color: #fff;
    float: left;
    padding: 4px 10px;
    margin-top: -5px;
    font-size: 14px;
    margin-right: 10px;
  }
  
  @media screen and (max-width: 480px) {
    .customer-admin .ad-detail .btn-primary {
      width: 100%;
      margin-bottom: 10px;
    }
  }
  
  .customer-admin #map-pinpoint-modal .modal-takeover-background {
    background: #fff;
    display: none;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
  }
  
  .customer-admin #map-pinpoint-modal #loading-indicator {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .customer-admin #map-pinpoint-modal .modal-takeover-central-panel {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
  }
  
  .customer-admin #map-pinpoint-modal .modal-takeover-central-panel img {
    margin: auto;
  }
  
  .customer-admin #map-pinpoint-modal .modal-takeover-central-panel #map-pinpoint-message {
    margin: auto;
    font-size: 30px;
    font-weight: 700;
    max-width: 80%;
  }
  
  .customer-admin #map-pinpoint-modal .modal-takeover-central-panel #map-pinpoint-message .error {
    color: #d61212;
  }
  
  .customer-admin .profile-container h3 {
    margin-bottom: 20px;
  }
  
  .customer-admin .profile-container .help-block {
    color: #d61212;
  }
  
  .customer-admin .agent-list .select-form.property {
    margin-bottom: 30px;
  }
  
  .customer-admin .agent-list .agent-ad-functions h6 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  @media screen and (min-width: 1024px) {
    .customer-admin .search-filters h3 {
      margin-top: 15px;
    }
  }
  
  .customer-admin .search-filters .user-form-search input[type="text"] {
    display: inline-block;
    width: 220px;
    margin-right: 20px;
  }
  
  @media screen and (max-width: 479px) {
    .customer-admin .search-filters .user-form-search input[type="text"] {
      max-width: 80%;
      margin-right: 5px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .customer-admin .search-filters .user-form-search .btn {
      padding: 10px;
    }
  }
  
  .customer-admin .small-print {
    font-size: 12px;
    font-style: italic;
  }
  
  .customer-admin .users-edit h3 {
    margin-bottom: 20px;
  }
  
  .customer-admin .users-edit .help-block {
    color: #d61212;
  }
  
  .customer-admin .users-edit .assignment-button-container {
    margin: 20px 0;
  }
  
  @media screen and (max-width: 1023px) {
    .main-nav .dash-nav {
      padding: 23px;
    }
    .main-nav .dash-nav.dashboard-login {
      padding-top: 7px;
      padding-bottom: 18px;
      margin-top: 5px;
      overflow: initial;
    }
    .main-nav .dash-nav li.username {
      color: #363b42;
      margin-bottom: 10px;
    }
    .main-nav .dash-nav li.logout {
      margin-bottom: 0;
    }
    .main-nav .dash-nav li.logout a {
      font-size: 16px;
      font-weight: 400;
    }
    .main-nav .dash-nav li a {
      font-size: 20px;
      color: #363b42;
    }
    .main-nav .dash-nav li.active a {
      font-weight: 600;
    }
    .main-nav .dash-nav li.active a .show-hover {
      display: inline;
    }
    .main-nav .dash-nav li.active a .hide-hover {
      display: none;
    }
  }
  
  .dash-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform .3s ease-in;
  }
  
  @media screen and (max-width: 1023px) {
    .dash-mobile-menu {
      transform: translateX(-100%);
      padding-top: 50px;
    }
  }
  
  .dashboard-active .dash-mobile-menu {
    transform: translateX(0);
  }
  
  .resize-active .dash-mobile-menu {
    transition: none;
  }
  
  .performance-report .slick-list {
    margin: 0 -10px;
  }
  
  .performance-report .slick-slide {
    background: #fff;
    border: 1px solid #e2e2e2;
    margin: 0 10px;
    padding: 35px 28px 48px;
  }
  
  @media screen and (min-width: 1024px) {
    .performance-report .slick-slide {
      padding: 35px 20px 38px;
    }
  }
  
  .performance-report .slick-slide .h5 {
    margin-bottom: 16px;
  }
  
  .performance-report .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
  
  .performance-report .slick-dots li {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: #656d78;
    text-indent: -9999px;
    margin: 0 5px;
  }
  
  .performance-slider {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .performance-slider .slick-dots li.slick-active:first-child {
    background: #0fd87c;
  }
  
  .performance-slider .slick-dots li.slick-active:nth-child(2) {
    background: #d67d12;
  }
  
  .performance-slider .slick-dots li.slick-active:nth-child(3) {
    background: #128bd6;
  }
  
  .performance-slider .slick-dots li.slick-active:nth-child(4) {
    background: #0fccd8;
  }
  
  .progress-holder {
    margin-top: 28px;
  }
  
  .performance-range {
    margin-bottom: 37px;
  }
  
  @media screen and (min-width: 1024px) {
    .performance-range {
      margin-bottom: 20px;
    }
  }
  
  .performance-range .slick-slide {
    padding-bottom: 24px;
  }
  
  .performance-range .h5 {
    display: flex;
    justify-content: space-between;
  }
  
  .performance-range .slick-dots li.slick-active:first-child {
    background: #e45f4d;
  }
  
  .performance-range .slick-dots li.slick-active:nth-child(2) {
    background: #d04de4;
  }
  
  .performance-range .slick-dots li.slick-active:nth-child(3) {
    background: #4dd0e4;
  }
  
  .circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid #0fd87c;
    font-size: 48px;
    color: #0fd87c;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .circle.orange {
    border-color: #d67d12;
    color: #d67d12;
  }
  
  .circle.blue {
    border-color: #128bd6;
    color: #128bd6;
  }
  
  .circle.light-green {
    border-color: #0fccd8;
    color: #0fccd8;
  }
  
  .circle .number {
    font-weight: 600;
    vertical-align: middle;
  }
  
  .status {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
  }
  
  .feedback-section {
    border: 1px solid #e2e2e2;
    padding: 27px 28px 48px;
  }
  
  @media screen and (min-width: 1024px) {
    .feedback-section {
      background: #fff;
      padding: 36px 20px 48px;
    }
  }
  
  .feedback-section .title {
    margin-bottom: 0;
  }
  
  .feedback-section .feedback-item {
    border-bottom: 1px solid #e2e2e2;
  }
  
  @media screen and (min-width: 1024px) {
    .feedback-section .feedback-item {
      display: flex;
      padding-top: 20px;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .feedback-section .feedback-item {
      margin: 0 -29px;
      padding: 20px 29px 20px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .feedback-section .feedback-item:last-of-type {
      border: none;
    }
  }
  
  .feedback-section .feedback-list {
    font-weight: 600;
  }
  
  @media screen and (min-width: 1024px) {
    .feedback-section .feedback-list {
      min-width: 18%;
    }
  }
  
  @media screen and (max-width: 1023px) {
    .feedback-section .feedback-list {
      margin-bottom: 36px;
    }
  }
  
  .feedback-section .feedback-list li {
    margin-bottom: 21px;
  }
  
  .feedback-section .feedback-list span {
    color: #656d78;
    min-width: 115px;
    display: inline-block;
  }
  
  .feedback-section .feedback-list .orange {
    color: #e45f4d;
  }
  
  .feedback-section .feedback-list .purple {
    color: #d04de4;
  }
  
  .feedback-section .feedback-list .blue {
    color: #4dd0e4;
  }
  
  @media screen and (min-width: 768px) {
    .feedback-section .collapse {
      display: block;
    }
  }
  
  .feedback-section .feedback-text {
    font-size: 14px;
  }
  
  .feedback-section .read-more {
    color: #656d78;
  }
  
  .feedback .title {
    text-align: left;
    margin-bottom: 22px;
  }
  
  .feedback .read-more {
    display: block !important;
    color: #656d78;
    font-size: 14px;
  }
  
  @media screen and (max-width: 479px) {
    .feedback .read-more {
      font-size: 12px;
      margin-top: 20px;
    }
  }
  
  .feedback .feedback-holder {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  @media screen and (min-width: 1024px) {
    .feedback .feedback-holder {
      padding: 37px 19px;
    }
  }
  
  .feedback .address-feedback {
    color: #363b42;
  }
  
  .feedback .address-feedback address {
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  @media screen and (min-width: 1024px) {
    .feedback .address-feedback address {
      margin-bottom: 3px;
    }
  }
  
  .feedback .feedback-text {
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
  }
  
  @media screen and (min-width: 1024px) {
    .feedback .feedback-text {
      margin-bottom: 26px;
    }
  }
  
  .feedback .feedback-text.last-item {
    padding-left: 20px;
  }
  
  .feedback .feedback-text:first-of-type {
    margin-top: 35px;
  }
  
  .feedback .btn {
    padding: 13px 66px;
    font-size: 14px;
  }
  
  .name-information {
    margin-bottom: 12px;
  }
  
  .name-information .name {
    font-size: 16px;
    display: block;
    font-weight: 600;
    color: #363b42;
  }
  
  @media screen and (max-width: 767px) {
    .name-information .name {
      font-size: 2.5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .name-information .name {
      font-size: 4vw;
    }
  }
  
  .name-information .date {
    font-size: 14px;
  }
  
  @media screen and (max-width: 767px) {
    .name-information .date {
      font-size: 2vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .name-information .date {
      font-size: 3vw;
    }
  }
  
  .feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  @media screen and (max-width: 479px) {
    .feedback-header {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  .feedback-header .date {
    font-size: 16px;
  }
  
  @media screen and (max-width: 767px) {
    .feedback-header .date {
      font-size: 2.5vw;
    }
  }
  
  @media screen and (max-width: 479px) {
    .feedback-header .date {
      font-size: 4vw;
    }
  }
  
  .send-feedback-message {
    min-height: 120px;
    border: 1px solid #e2e2e2 !important;
    padding: 14px 14px 14px 20px;
    margin-bottom: 34px;
    box-shadow: none;
    -webkit-appearance: none;
  }
  
  .message-contact-agent .btn {
    margin-top: -5px;
  }
  
  @media screen and (max-width: 480px) {
    .message-contact-agent .btn {
      margin-top: -10px;
      padding: 10px;
    }
  }
  
  /* Mobile view of data tables (viewings, ad summaries etc) */
  .mobile-data-table .mobile-data-table-title {
    border-top: 1px solid #e2e2e2;
    padding: 10px 0;
    font-size: 4.5vw;
    text-decoration: none;
    color: #626362;
    /* No border on first element */
    /* Vertically align glyph icons */
    /* Toggle chevron and bolding based on expanded state */
  }
  
  .mobile-data-table .mobile-data-table-title#title-1 {
    border-top: 1px solid white;
  }
  
  .mobile-data-table .mobile-data-table-title .glyphicon.pull-right {
    padding-top: 3px;
  }
  
  .mobile-data-table .mobile-data-table-title[aria-expanded=true] {
    font-weight: 600;
  }
  
  .mobile-data-table .mobile-data-table-title[aria-expanded=true] .glyphicon-chevron-down {
    display: none;
  }
  
  .mobile-data-table .mobile-data-table-title[aria-expanded=false] .glyphicon-chevron-up {
    display: none;
  }
  
  .mobile-data-table .mobile-data-table-title b.date {
    font-weight: 700;
    color: #626362;
  }
  
  .mobile-data-table .mobile-data-table-detail table td {
    vertical-align: top;
    padding-bottom: 10px;
  }
  
  .mobile-data-table .mobile-data-table-detail table td.mobile-data-table-label {
    font-weight: 600;
    width: 40%;
  }
  
  .mobile-data-table .mobile-data-table-detail table td .bid-buttons-mobile {
    width: 100%;
    color: white;
    margin-bottom: 15px;
  }
  
  .mobile-data-table .mobile-data-table-unit.mobile-message-summary-unit {
    border-bottom: 1px solid #e2e2e2;
    position: relative;
    padding-bottom: 10px;
  }
  
  .mobile-data-table .mobile-data-table-unit.mobile-message-summary-unit .mobile-data-table-title {
    color: #363b42;
  }
  
  .mobile-data-table .mobile-data-table-unit.mobile-message-summary-unit .right-arrow {
    color: #363b42;
    position: absolute;
    right: 0;
    top: 50%;
  }
  
  .mobile-data-table .mobile-data-table-unit.mobile-message-summary-unit .mobile-data-table-detail.message-holder {
    color: #656d78;
    margin-right: 10px;
  }
  
  .table > tbody > tr > th.table-sub-heading,
  .mobile-data-table-title.table-sub-heading {
    background: white;
    padding-top: 20px;
  }
  
  button.fc-blackout-delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    height: auto;
    max-height: 100%;
    line-height: 1;
    min-width: auto;
  }
  
  button.fc-blackout-delete-btn.btn.btn-link {
    color: #fff;
  }
  
  .fc-td-init-selection {
    background-color: #0badb7;
  }
  
  .fc-td-init-selection[href]:hover, .fc-td-init-selection[href]:focus {
    background-color: #088087;
  }
  
  .calendar-legend .label {
    font-size: 12px;
  }
  
  .calendar-legend .label-blackout {
    background-color: #00878f;
  }
  
  .calendar-legend .label-blackout[href]:hover, .calendar-legend .label-blackout[href]:focus {
    background-color: #00575c;
  }
  
  .calendar-legend .label-agent-hosted-viewing {
    background-color: #0fccd8;
  }
  
  .calendar-legend .label-agent-hosted-viewing[href]:hover, .calendar-legend .label-agent-hosted-viewing[href]:focus {
    background-color: #0c9fa8;
  }
  
  .calendar-legend .label-agent-hosted-open-viewing {
    background-color: #3E00FF;
  }
  
  .calendar-legend .label-agent-hosted-open-viewing[href]:hover, .calendar-legend .label-agent-hosted-open-viewing[href]:focus {
    background-color: #3200cc;
  }
  
  .calendar-legend .label-hosted-viewing {
    background-color: #CD9700;
  }
  
  .calendar-legend .label-hosted-viewing[href]:hover, .calendar-legend .label-hosted-viewing[href]:focus {
    background-color: #9a7100;
  }
  
  .calendar-legend .label-hosted-open-viewing {
    background-color: #FF5733;
  }
  
  .calendar-legend .label-hosted-open-viewing[href]:hover, .calendar-legend .label-hosted-open-viewing[href]:focus {
    background-color: #ff2d00;
  }
  
  .calendar-legend .label-viewing {
    background-color: #5FB800;
  }
  
  .calendar-legend .label-viewing[href]:hover, .calendar-legend .label-viewing[href]:focus {
    background-color: #458500;
  }
  
  .calendar-legend .label-valuation {
    background-color: #4A90E2;
  }
  
  .calendar-legend .label-valuation[href]:hover, .calendar-legend .label-valuation[href]:focus {
    background-color: #2275d7;
  }
  
  .calendar-legend .label-legend {
    padding: 0.9em !important;
    margin: 0 0.5em;
    vertical-align: sub;
  }
  
  .user-calendar {
    position: relative;
    margin-bottom: 22px;
  }
  
  .user-calendar .fc-right h2 {
    font-size: 16px;
  }
  
  .user-calendar .fc-right .fc-button-group .fc-button {
    font-size: 0.6em;
  }
  
  .user-calendar .fc-right .fc-button-group .fc-button:focus {
    outline: none;
    border: none;
  }
  
  .user-calendar .fc-left .fc-button-group .fc-button {
    background: #fff;
    border: none;
    color: #656d78;
    font-size: 14px;
    text-transform: capitalize;
  }
  
  .user-calendar .fc-left .fc-button-group .fc-button:focus {
    outline: none;
    border: none;
  }
  
  .user-calendar .fc-left .fc-button-group .fc-button.fc-state-active, .user-calendar .fc-left .fc-button-group .fc-button:hover {
    border: none;
    box-shadow: none;
    color: #0fccd8;
  }
  
  .user-calendar .fc-left .fc-today-button {
    display: none;
  }
  
  .user-calendar .fc-view-container table thead.fc-head .fc-head-container table th.fc-widget-header {
    font-size: 14px;
  }
  
  .user-calendar .fc-view-container table tbody.fc-body .fc-widget-content .fc-slats table td.fc-axis {
    font-size: 14px;
  }
  
  .user-calendar .fc-view-container table tbody.fc-body .fc-widget-content .fc-week td.fc-event-container .fc-day-grid-event span.fc-title {
    display: block;
  }
  
  .calendar-legend .label {
    display: inline-block;
    padding: 0.3em 0.6em;
  }
  
  .calendar-legend .faq-list {
    padding: 0;
    margin-bottom: 0;
  }
  
  @media screen and (min-width: 1024px) {
    .calendar-legend .faq-list {
      padding: 0;
      margin-bottom: 0;
    }
  }
  
  @media screen and (max-width: 767px) {
    .calendar-legend .faq-list {
      padding: 0;
    }
  }
  
  .calendar-legend .faq-list li {
    position: relative;
    padding: 0;
  }
  
  @media screen and (min-width: 1024px) {
    .calendar-legend .faq-list li {
      padding: 0;
    }
  }
  
  @media screen and (max-width: 767px) {
    .calendar-legend .faq-list li {
      padding: 0;
    }
  }
  
  .calendar-legend .faq-list li + li {
    margin-top: 0;
  }
  
  .calendar-legend .faq-list li:last-child {
    margin-bottom: 20px;
  }
  
  #loading-calendar {
    background-color: #fff;
    position: absolute;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    margin: 0px;
    padding: 0px;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 998;
  }
  
  #loading-calendar img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    z-index: 999;
  }
  
  .content-form .main {
    padding-top: 106px;
  }
  
  @media screen and (min-width: 1024px) {
    .content-form .main {
      padding-top: 91px;
    }
  }
  
  .content-form .h2 {
    margin-bottom: 6px;
  }
  
  .content-form .title {
    margin-top: 20px;
    margin-bottom: 55px;
  }
  
  .content-form .contact-text {
    text-align: center;
    margin-bottom: 100px;
    color: #363b42;
  }
  
  @media screen and (min-width: 1024px) {
    .content-form .contact-text {
      margin-bottom: 85px;
    }
  }
  
  .content-form .contact-text .send-feedback {
    display: block;
    margin-bottom: 20px;
  }
  
  .content-form .contact-text a {
    text-decoration: underline;
  }
  
  .content-form .contact-address {
    display: flex;
    justify-content: space-between;
    margin-bottom: 102px;
    color: #363b42;
  }
  
  @media screen and (min-width: 1024px) {
    .content-form .contact-address {
      justify-content: center;
      margin-bottom: 57px;
    }
  }
  
  .content-form .contact-address span {
    font-size: 18px;
    display: block;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  @media screen and (min-width: 1024px) {
    .content-form .phone {
      margin-right: 77px;
    }
  }
  
  .content-form .phone a {
    color: #363b42;
  }
  
  .content-form .form-group {
    margin-bottom: 21px;
  }
  
  .content-form .select2-container {
    margin-bottom: 0;
  }
  
  .content-form .select2 {
    border-bottom: 2px solid #e2e2e2;
  }
  
  .content-form .select2-selection__placeholder {
    color: #a5a5a5 !important;
  }
  
  .content-form .select2-dropdown {
    padding: 0 !important;
  }
  
  .content-form input, .content-form textarea, .content-form select {
    color: #363b42;
    border-color: #e2e2e2;
    outline: none;
  }
  
  .content-form input::-webkit-input-placeholder, .content-form textarea::-webkit-input-placeholder, .content-form select::-webkit-input-placeholder {
    color: #a5a5a5;
  }
  
  .content-form input::-moz-placeholder, .content-form textarea::-moz-placeholder, .content-form select::-moz-placeholder {
    opacity: 1;
    color: #a5a5a5;
  }
  
  .content-form input:-moz-placeholder, .content-form textarea:-moz-placeholder, .content-form select:-moz-placeholder {
    color: #a5a5a5;
  }
  
  .content-form input:-ms-input-placeholder, .content-form textarea:-ms-input-placeholder, .content-form select:-ms-input-placeholder {
    color: #a5a5a5;
  }
  
  .content-form input.placeholder, .content-form textarea.placeholder, .content-form select.placeholder {
    color: #a5a5a5;
  }
  
  .content-form input:focus, .content-form textarea:focus, .content-form select:focus {
    color: #626362;
    border-color: #0fccd8;
  }
  
  .content-form input[type="submit"] {
    width: 100%;
    color: #fff;
    padding: 13px 10px;
    font-size: 14px;
  }
  
  @media screen and (min-width: 1024px) {
    .content-form input[type="submit"] {
      width: 165px;
    }
  }
  
  .content-form .btn-holder {
    margin: 34px 0 76px;
  }
  
  @media screen and (min-width: 1024px) {
    .content-form .btn-holder {
      margin-bottom: 36px;
    }
  }
  
  textarea {
    border: none;
    border-bottom: 2px solid #0fccd8;
    width: 100%;
    resize: vertical;
    min-height: 118px;
  }
  
  .success-message, .error-message, .info-message {
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 7px;
    margin-bottom: 20px;
  }
  
  .error-message {
    background-color: #d61212;
  }
  
  .success-message {
    background-color: #0fccd8;
  }
  
  .info-message {
    background-color: #128bd6;
  }
  
  .no-empty {
    color: #363b42 !important;
    border-color: #0fccd8 !important;
  }
  
  .no-empty + .select2 {
    border-bottom: 2px solid #0fccd8;
  }
  
  .info-text {
    margin-top: 60px;
    margin-bottom: 82px;
  }
  
  .valuation-step {
    margin-bottom: 30px;
  }
  
  .valuation-step .agent-info {
    margin-bottom: 15px;
  }
  
  .valuation-step .agent-info .profile-img {
    margin-bottom: 5p;
  }
  
  .valuation-step .agent-info .profile-img x img {
    height: 80px;
    width: 80px;
    border-radius: 15%;
  }
  
  .valuation-step .agent-info .job-title img {
    margin-right: 5px;
  }
  
  .valuation-header {
    margin-bottom: 10px;
  }
  
  .valuation-header .valuation-detail-list {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 0;
    font-size: 16px;
  }
  
  .valuation-header .valuation-detail-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 33.3333%;
    counter-increment: a;
  }
  
  .valuation-header .valuation-detail-list li.disabled {
    pointer-events: none;
  }
  
  .valuation-header .valuation-detail-list li:first-child {
    transform: translateX(calc(-50% + 19px));
  }
  
  .valuation-header .valuation-detail-list li:last-child {
    transform: translateX(calc(50% - 19px));
  }
  
  .valuation-header .valuation-detail-list li.complete, .valuation-header .valuation-detail-list li.active {
    color: #0fccd8;
  }
  
  .valuation-header .valuation-detail-list li.complete:before, .valuation-header .valuation-detail-list li.active:before {
    background: #0fccd8;
    border: 1px solid #0fccd8;
  }
  
  .valuation-header .valuation-detail-list li:before {
    content: counter(a);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 0;
    background: #ccc;
    border-radius: 50%;
    border: 1px solid #ccc;
    color: #fff;
  }
  
  .valuation-header .valuation-detail-list li p {
    margin-bottom: 0;
  }
  
  .valuation-header .valuation-detail-list li p,
  .valuation-header .valuation-detail-list li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .valuation-header .valuation-detail-list a:hover {
    opacity: .8;
  }
  
  .valuation-header .valuation-progress {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: calc(100% - 30px);
    height: 4px;
    margin: 0;
    border: none;
    background-color: #ccc;
  }
  
  .valuation-header .valuation-progress.step2-active {
    background: linear-gradient(to right, #0fccd8 50%, #ccc 50%);
  }
  
  .valuation-header .valuation-progress.step2-complete.step3-active {
    background-color: #0fccd8;
  }
  
  .viewing-booking .datepicker tr:nth-child(even) td {
    background: none;
  }
  
  .viewing-booking .datepicker tr th, .viewing-booking .datepicker tr td {
    padding: 5px 10px;
    text-align: center;
  }
  
  .viewing-booking .datepicker tr td {
    padding: 5px;
    width: 15%;
    font-size: 15px;
  }
  
  @media only screen and (max-width: 600px) {
    .viewing-booking .datepicker tr td {
      font-size: 12px;
      padding: 0 5px;
    }
  }
  
  .viewing-booking .datepicker tr td:hover:not(.ui-datepicker-unselectable), .viewing-booking .datepicker tr td:hover:not(.ui-datepicker-unselectable) a {
    cursor: pointer;
    background: #0fccd8;
    color: #fff;
  }
  
  .viewing-booking .datepicker tr td.ui-datepicker-unselectable {
    color: #656d78;
  }
  
  .viewing-booking .datepicker tr td.ui-datepicker-current-day {
    background: #0fccd8;
  }
  
  .viewing-booking .datepicker tr td.ui-datepicker-current-day a {
    color: #fff;
  }
  
  .viewing-booking .datepicker table {
    margin: 0 auto;
    max-width: 100% !important;
    table-layout: fixed !important;
  }
  
  .viewing-booking .datepicker .ui-datepicker-prev {
    float: left;
  }
  
  .viewing-booking .datepicker .ui-datepicker-next {
    float: right;
  }
  
  .viewing-booking .datepicker .ui-datepicker-title {
    font-size: 20px;
  }
  
  .viewing-booking .datepicker .ui-datepicker-unselectable .ui-state-default {
    text-decoration: line-through;
  }
  
  .viewing-booking .datepicker .ui-datepicker {
    border-radius: 5px 5px 5px 5px;
  }
  
  .viewing-booking .datepicker .ui-datepicker-header:hover {
    cursor: pointer;
  }
  
  .viewing-booking .datepicker .ui-datepicker-header .ui-state-disabled {
    color: #656d78;
  }
  
  .viewing-booking .datepicker .ui-datepicker-header .ui-state-disabled:hover {
    cursor: default;
    text-decoration: none;
  }
  
  .viewing-booking .calendar-content .jcf-list-content li {
    font-size: 16px;
  }
  
  .viewing-booking .no-viewing-message {
    margin-bottom: 35px;
  }
  
  .viewings-container .viewing-cancelled, .content-container .viewing-cancelled {
    color: lightgray;
  }
  
  .viewings-container .viewing-cancelled a, .content-container .viewing-cancelled a {
    color: lightgray;
  }
  
  .viewings-container .viewing-cancelled a:hover, .content-container .viewing-cancelled a:hover {
    text-decoration: none;
  }
  
  .viewings-container .viewing-cancelled button, .content-container .viewing-cancelled button {
    color: lightgray;
  }
  
  .viewings-container .message-to-buyer img, .content-container .message-to-buyer img {
    float: right;
  }
  
  .calendar-content .jcf-list-box {
    min-width: 0;
  }
  
  @media (max-width: 768px) {
    .calendar-content .jcf-list-box {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
    .calendar-content .jcf-list-box .jcf-option {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
  }
  
  .calendar-content .jcf-list-content::-webkit-scrollbar-thumb {
    background-color: #0fccd8;
  }
  
  @media screen and (max-width: 767px) {
    .btn-cancel-viewing, .btn-confirm-viewing {
      padding: 13px !important;
    }
  }
  
  .js-lightbox-gallery {
    overflow: hidden;
  }
  
  .js-lightbox-gallery .slide {
    max-width: 100%;
  }
  
  .js-lightbox-gallery .slide.slide-hidden {
    display: none;
  }
  
  .trusted-slider {
    padding: 0 60px;
  }
  
  .trusted-slider .slick-arrow {
    position: absolute;
    top: 25%;
    left: 5px;
    transform: translateY(-50%);
    z-index: 10;
    text-indent: -9999px;
    width: 30px;
    height: 30px;
    background: #0fccd8;
    border-radius: 50px;
    border: none;
  }
  
  .trusted-slider .slick-arrow:focus {
    outline: none;
  }
  
  .trusted-slider .slick-arrow::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(65%, 50%);
  }
  
  .trusted-slider .slick-arrow.slick-next {
    left: auto;
    right: 5px;
  }
  
  .trusted-slider .slick-arrow.slick-next::after {
    left: auto;
    right: 0;
    transform: translate(-25%, 50%);
    background: url("../img/arrow-right.svg") no-repeat;
  }
  
  .trusted-slider .slick-arrow.slick-prev::after {
    background: url("../img/arrow-left.svg") no-repeat;
  }
  
  @media screen and (min-width: 1024px) {
    .trusted-slider {
      width: 80%;
      margin: 0 auto;
    }
  }
  
  .lightbox-gallery-holder {
    display: block;
    width: 100%;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    background: none;
    padding: 70px;
  }
  
  @media screen and (max-width: 767px) {
    .lightbox-gallery-holder {
      padding: 80px 20px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  }
  
  .lightbox-gallery-holder .slick-arrow {
    position: absolute;
    width: 29px;
    height: 48px;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    text-indent: -9999px;
    background: none;
    border: none;
  }
  
  @media screen and (max-width: 767px) {
    .lightbox-gallery-holder .slick-arrow {
      width: 15px;
      height: 34px;
      left: 10px;
    }
  }
  
  .lightbox-gallery-holder .slick-arrow.slick-next {
    left: auto;
    right: -50px;
    background: url("../img/arrow-right.svg") no-repeat;
  }
  
  @media screen and (max-width: 767px) {
    .lightbox-gallery-holder .slick-arrow.slick-next {
      right: 10px;
    }
  }
  
  .lightbox-gallery-holder .slick-arrow.slick-prev {
    background: url("../img/arrow-left.svg") no-repeat;
  }
  
  .lightbox-gallery-holder .slick-arrow.slick-disabled {
    display: none !important;
  }
  
  .thumbs-holder {
    width: calc((40px + 5px) * 6);
    overflow: hidden;
  }
  
  @media screen and (min-width: 768px) {
    .thumbs-holder {
      width: calc((70px + 5px) * 4);
    }
  }
  
  @media screen and (min-width: 1024px) {
    .thumbs-holder {
      width: calc((112px + 5px) * 7);
    }
  }
  
  .gallery-thumbs {
    width: calc((40px + 5px) * 5);
  }
  
  @media screen and (min-width: 768px) {
    .gallery-thumbs {
      width: calc((70px + 5px) * 5);
    }
  }
  
  @media screen and (min-width: 1024px) {
    .gallery-thumbs {
      width: calc((112px + 5px) * 5);
    }
  }
  
  .gallery-thumbs .slick-track {
    margin: 0;
  }
  
  .gallery-thumbs .slide {
    width: 40px;
    margin: 0 5px 0 0;
    overflow: hidden;
    opacity: 0.5;
    cursor: pointer;
  }
  
  @media screen and (min-width: 768px) {
    .gallery-thumbs .slide {
      width: 70px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .gallery-thumbs .slide {
      width: 112px;
    }
  }
  
  .gallery-thumbs .slide.floorplan {
    width: 0 !important;
  }
  
  .gallery-thumbs .slide.active {
    opacity: 1;
  }
  
  .floorplan-thumb {
    width: 40px;
    overflow: hidden;
    opacity: 0.5;
    cursor: pointer;
  }
  
  @media screen and (min-width: 768px) {
    .floorplan-thumb {
      width: 70px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .floorplan-thumb {
      width: 112px;
    }
  }
  
  .floorplan-thumb.active {
    opacity: 1;
  }
  
  .hidden-search {
    display: none !important;
  }
  
  .select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
  
  .select2-results__options::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
  
  .select2-results__options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #0fccd8;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  
  .checkout-holder {
    margin: 0 -15px;
    background: #f8f8f8;
  }
  
  @media screen and (min-width: 1024px) {
    .checkout-holder {
      margin: 0 0 40px 0;
    }
  }
  
  .checkout-holder .title {
    height: 32px;
    background-color: #0fccd8;
    padding: 5px 15px;
    color: #fff;
    font-size: 18px;
  }
  
  .checkout-title {
    margin-bottom: 20px;
  }
  
  .toggle-cart-item {
    color: #e2e2e2;
  }
  
  .toggle-cart-item:focus, .toggle-cart-item:hover, .toggle-cart-item:active {
    color: #e2e2e2;
  }
  
  .toggle-cart-item.in-cart {
    color: #0fccd8;
  }
  
  .toggle-cart-item.in-cart:focus, .toggle-cart-item.in-cart:hover, .toggle-cart-item.in-cart:active {
    color: #0fccd8;
  }
  
  .toggle-cart-item.in-cart.disabled {
    color: #e2e2e2;
  }
  
  .toggle-cart-item.in-cart.disabled:focus, .toggle-cart-item.in-cart.disabled:hover, .toggle-cart-item.in-cart.disabled:active {
    color: #e2e2e2;
  }
  
  @media screen and (max-width: 1024px) {
    .pay-button {
      padding: 12px 24px;
    }
  }
  
  .price-col {
    white-space: nowrap;
  }
  
  #desktop-basket-content-block {
    background-color: white;
    padding: 11px 7px;
    font-size: 14px;
  }
  
  @media screen and (max-width: 1120px) {
    #desktop-basket-content-block {
      font-size: 12px;
    }
  }
  
  .set-fixed {
    position: fixed;
  }
  
  .body-fixed {
    position: fixed !important;
    width: 100% !important;
  }
  
  @media screen and (max-width: 480px) {
    .mobile-btn {
      width: 48%;
      padding: 17px 20px;
    }
  }
  
  .mobile-package-header {
    /* Toggle chevron and bolding based on expanded state */
  }
  
  .mobile-package-header[aria-expanded=true] .glyphicon-chevron-down {
    display: none;
  }
  
  .mobile-package-header[aria-expanded=false] .glyphicon-chevron-up {
    display: none;
  }
  
  .fee-title {
    font-weight: bold;
  }
  
  .fee-info {
    margin-bottom: 25px;
  }
  
  .optional-extras-container #optional-extra-title-holder {
    /* Toggle chevron and bolding based on expanded state */
  }
  
  .optional-extras-container #optional-extra-title-holder[aria-expanded=true] .glyphicon-chevron-down {
    display: none;
  }
  
  .optional-extras-container #optional-extra-title-holder[aria-expanded=false] .glyphicon-chevron-up {
    display: none;
  }
  
  .optional-extras-container table tr td {
    /* Make mobile click target large - use of icons means iOS click target very small */
  }
  
  .optional-extras-container table tr td a {
    display: block;
    height: 100%;
    width: 100%;
  }
  
  #mobile-extra-poa-container h3 {
    font-weight: normal;
  }
  
  .ui-datepicker {
    background: #FFF;
    border: 1px solid #d1d2d4;
    text-align: center;
    font-weight: 400;
    /* !important is necessary since JS is hardcoding z-index:1 via JS */
    z-index: 3 !important;
    width: 100%;
    left: 0 !important;
    top: initial !important;
  }
  
  .ui-datepicker-header {
    background: #0fccd8;
    position: relative;
    padding: 10px;
    border-bottom: 1px solid #d1d2d4;
    text-transform: uppercase;
  }
  
  .ui-datepicker-header select.ui-datepicker-month,
  .ui-datepicker-header select.ui-datepicker-year {
    background: #fff;
    color: black;
    padding: 0 5px;
    font-size: 16px;
    border-radius: 0;
    font-weight: 300;
  }
  
  .ui-datepicker-header .ui-datepicker-prev,
  .ui-datepicker-header .ui-datepicker-next {
    position: absolute;
    background: #0fccd8;
    color: #fff;
    width: 20px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
  }
  
  .ui-datepicker-header .ui-datepicker-prev-hover,
  .ui-datepicker-header .ui-datepicker-next-hover {
    background: #fff;
    color: #0fccd8;
  }
  
  .ui-datepicker-header .ui-datepicker-prev.ui-state-disabled,
  .ui-datepicker-header .ui-datepicker-next.ui-state-disabled {
    background: #cacccd;
    color: #fff;
    cursor: default;
  }
  
  .ui-datepicker-header .ui-datepicker-prev:after,
  .ui-datepicker-header .ui-datepicker-next:after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
  }
  
  .ui-datepicker-header .ui-datepicker-title {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
  }
  
  .ui-datepicker-header .ui-datepicker-prev {
    left: 10px;
  }
  
  .ui-datepicker-header .ui-datepicker-prev:after {
    content: '<';
  }
  
  .ui-datepicker-header .ui-datepicker-next {
    right: 10px;
  }
  
  .ui-datepicker-header .ui-datepicker-next:after {
    content: '>';
  }
  
  .ui-datepicker-header select.ui-datepicker-month,
  .ui-datepicker-header select.ui-datepicker-year {
    width: 30%;
  }
  
  .ui-datepicker-header select.ui-datepicker-month + select.ui-datepicker-month,
  .ui-datepicker-header select.ui-datepicker-month + select.ui-datepicker-year,
  .ui-datepicker-header select.ui-datepicker-year + select.ui-datepicker-month,
  .ui-datepicker-header select.ui-datepicker-year + select.ui-datepicker-year {
    margin-left: 35px;
  }
  
  .ui-datepicker-calendar {
    width: 100%;
  }
  
  .ui-datepicker-calendar th {
    background: #5b6770;
    color: white;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    border: 1px solid #d1d2d4;
    text-align: center;
  }
  
  .ui-datepicker-calendar td {
    font-size: 12px;
    border: 1px solid #d1d2d4;
  }
  
  .ui-datepicker-calendar tr:nth-child(even) td {
    background: #e7e7e8;
  }
  
  .ui-datepicker-calendar a,
  .ui-datepicker-calendar span {
    display: inline-block;
    vertical-align: baseline;
    zoom: 1;
    width: 100%;
    padding: 10px;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .ui-datepicker-calendar a,
    .ui-datepicker-calendar span {
      padding: 10px 5px;
    }
  }
  
  .ui-datepicker-calendar .ui-state-active {
    background: #0fccd8;
    color: #fff;
  }
  
  .ui-datepicker-calendar .ui-datepicker-unselectable .ui-state-default {
    color: #cacccd;
  }
  
  .ui-datepicker-calendar  {
    max-width: 100%;
    table-layout: fixed;
  }
  
  .ui-datepicker-calendar thead a, .ui-datepicker-calendar thead span {
    padding-left: 0px;
    padding-right: 0px;
  }
  
  @media (max-width: 768px) {
    .ui-datepicker-calendar thead a, .ui-datepicker-calendar thead span {
      padding-top: 5px;
      padding-bottom: 5px;
    }
  }
  
  .calendar-content .jcf-list-content {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }