/* blueimp-file-upload/css/jquery.fileupload-ui.css */

@charset "UTF-8";
/*
 * jQuery File Upload UI Plugin CSS
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * https://opensource.org/licenses/MIT
 */

.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
  margin-bottom: 5px;
}
.progress-animated .progress-bar,
.progress-animated .bar {
  background: url("../../../assets/vendor/blueimp-file-upload/progressbar.gif") !important;
  filter: none;
}
.fileupload-process {
  float: right;
  display: none;
}
.fileupload-processing .fileupload-process,
.files .processing .preview {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../../../assets/vendor/blueimp-file-upload/loading.gif") center no-repeat;
  background-size: contain;
}
.files audio,
.files video {
  max-width: 300px;
}

@media (max-width: 767px) {
  .fileupload-buttonbar .toggle,
  .files .toggle,
  .files .btn span {
    display: none;
  }
  .files .name {
    width: 80px;
    word-wrap: break-word;
  }
  .files audio,
  .files video {
    max-width: 80px;
  }
  .files img,
  .files canvas {
    max-width: 100%;
  }
}


/* fullcalendar/dist/fullcalendar.css */

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

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

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

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

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

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

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  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: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  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;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  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;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent; }

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

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

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

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

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

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

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

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

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0;
  /* 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 {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

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

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */ }

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */ }

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fc-unthemed .fc-list-empty {
  /* theme will provide own background */
  background-color: #eee; }


/* chosen/chosen.css */

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.7.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2017 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.chosen-container * {
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("../../../assets/vendor/chosen/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../../../assets/vendor/chosen/chosen-sprite.png") no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url("../../../assets/vendor/chosen/chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("../../../assets/vendor/chosen/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url("../../../assets/vendor/chosen/chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("../../../assets/vendor/chosen/chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* @end */


/* font-awesome/css/font-awesome.css */

/*!
 *  Font Awesome 4.7.0 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("../../../assets/vendor/font-awesome/fontawesome-webfont.eot?v=4.7.0");
  src: url("../../../assets/vendor/font-awesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'), url("../../../assets/vendor/font-awesome/fontawesome-webfont.woff2?v=4.7.0") format('woff2'), url("../../../assets/vendor/font-awesome/fontawesome-webfont.woff?v=4.7.0") format('woff'), url("../../../assets/vendor/font-awesome/fontawesome-webfont.ttf?v=4.7.0") format('truetype'), url("../../../assets/vendor/font-awesome/fontawesome-webfont.svg?v=4.7.0#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.33333333em;
  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.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  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 {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -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: #ffffff;
}
/* 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: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.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;
}


/* bootstrap/dist/css/bootstrap.css */

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-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 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
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 {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          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-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-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("../../../assets/vendor/bootstrap/glyphicons-halflings-regular.eot");
  src: url("../../../assets/vendor/bootstrap/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'), url("../../../assets/vendor/bootstrap/glyphicons-halflings-regular.woff2") format('woff2'), url("../../../assets/vendor/bootstrap/glyphicons-halflings-regular.woff") format('woff'), url("../../../assets/vendor/bootstrap/glyphicons-halflings-regular.ttf") format('truetype'), url("../../../assets/vendor/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";
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.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;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.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;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.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: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
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.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
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;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  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 {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.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-right: 15px;
  padding-left: 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-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@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-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@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-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@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-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  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 > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.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 > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.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;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.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 > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.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 > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.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 > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.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 > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.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 {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    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 > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .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 > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td: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 > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td: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 > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          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: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .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 {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  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: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  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-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.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;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.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;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.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;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@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 {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.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: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.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 {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
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: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].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: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  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;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .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;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.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;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.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 {
    right: auto;
    left: 0;
  }
}
.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-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .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 .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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .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 > .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-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-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-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  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-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[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-right: 0;
  padding-left: 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-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.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: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  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-top-right-radius: 0;
  border-bottom-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-top-left-radius: 0;
  border-bottom-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 {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.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: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 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.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.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: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-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-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            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-right: 0;
    padding-left: 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-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .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;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.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;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  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: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .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: 20px;
  }
  .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: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@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;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 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: #5e5e5e;
  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 {
  color: #555;
  background-color: #e7e7e7;
}
@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,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.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: #080808;
}
.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 {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .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: #080808;
  }
  .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: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.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: #eee;
}
.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: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.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;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  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;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  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 {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.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 {
  padding-left: 0;
  margin-bottom: 20px;
}
.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-left-radius: 4px;
  border-top-right-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,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  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 {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.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: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .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: #c7ddef;
}
.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,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
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,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
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,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
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,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
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: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  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-left-radius: 3px;
  border-top-right-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-left-radius: 0;
  border-top-right-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-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .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 > 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-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .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 td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th: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-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .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 td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th: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-responsive:last-child > .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 > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .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 td:first-child,
.panel > .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 td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th: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-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .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 td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th: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-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td: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-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td: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-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.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: #333;
  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: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.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;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          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;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.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 {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(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: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.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 {
  right: 5px;
  bottom: 0;
  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: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

  line-break: auto;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  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 {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  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: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 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;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.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;
  font-family: serif;
  line-height: 1;
}
.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%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(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 {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: 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;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.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;
  }
}
/*# sourceMappingURL=bootstrap.css.map */


/* bootstrap-datepicker/dist/css/bootstrap-datepicker.css */

/*!
 * Datepicker for Bootstrap v1.7.1 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */

.datepicker {
  padding: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: -moz-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -ms-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
  background-image: -webkit-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: -moz-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -ms-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
  background-image: -webkit-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -o-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: linear-gradient(to bottom, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
  background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
  background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  margin-top: 3px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
/*# sourceMappingURL=bootstrap-datepicker.css.map */

/* jt.timepicker/jquery.timepicker.min.css */

.ui-timepicker-wrapper{overflow-y:auto;max-height:150px;width:6.5em;background:#fff;border:1px solid #ddd;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);outline:0;z-index:10001;margin:0}.ui-timepicker-wrapper.ui-timepicker-with-duration{width:13em}.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-30,.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-60{width:11em}.ui-timepicker-list{margin:0;padding:0;list-style:none}.ui-timepicker-duration{margin-left:5px;color:#888}.ui-timepicker-list:hover .ui-timepicker-duration{color:#888}.ui-timepicker-list li{padding:3px 0 3px 5px;cursor:pointer;white-space:nowrap;color:#000;list-style:none;margin:0}.ui-timepicker-list:hover .ui-timepicker-selected{background:#fff;color:#000}li.ui-timepicker-selected,.ui-timepicker-list li:hover,.ui-timepicker-list .ui-timepicker-selected:hover{background:#1980EC;color:#fff}li.ui-timepicker-selected .ui-timepicker-duration,.ui-timepicker-list li:hover .ui-timepicker-duration{color:#ccc}.ui-timepicker-list li.ui-timepicker-disabled,.ui-timepicker-list li.ui-timepicker-disabled:hover,.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled{color:#888;cursor:default}.ui-timepicker-list li.ui-timepicker-disabled:hover,.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled{background:#f2f2f2}

/* At.js/dist/css/jquery.atwho.css */

.atwho-view {
    position:absolute;
    top: 0;
    left: 0;
    display: none;
    margin-top: 18px;
    background: white;
    color: black;
    border: 1px solid #DDD;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    min-width: 120px;
    z-index: 11110 !important;
}

.atwho-view .atwho-header {
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    border-bottom: solid 1px #eaeff1;
    color: #6f8092;
    font-size: 11px;
    font-weight: bold;
}

.atwho-view .atwho-header .small {
    color: #6f8092;
    float: right;
    padding-top: 2px;
    margin-right: -5px;
    font-size: 12px;
    font-weight: normal;
}

.atwho-view .atwho-header:hover {
    cursor: default;
}

.atwho-view .cur {
    background: #3366FF;
    color: white;
}
.atwho-view .cur small {
    color: white;
}
.atwho-view strong {
    color: #3366FF;
}
.atwho-view .cur strong {
    color: white;
    font:bold;
}
.atwho-view ul {
    /* width: 100px; */
    list-style:none;
    padding:0;
    margin:auto;
    max-height: 200px;
    overflow-y: auto;
}
.atwho-view ul li {
    display: block;
    padding: 5px 10px;
    border-bottom: 1px solid #DDD;
    cursor: pointer;
    /* border-top: 1px solid #C8C8C8; */
}
.atwho-view small {
    font-size: smaller;
    color: #777;
    font-weight: normal;
}

/* Our Updates */
.atwho-view-header {
  color: #111;
  background-color: #eee;
  border-color: #ddd;
  padding: 0 10px;
  display: block;
  height: 30px;
  line-height: 29px;
  font-size: 13px;
}
.atwho-view-header > img {
  height: 17px;
  width: auto;
  vertical-align: sub;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.atwho-view {
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 20px;
}
.command-item span.command {
  color: #3c3c3c;
  font-size: 14px;
  font-weight: 900;
}
.command-item.cur span.command {
  color: #fff;
}


/* wdt-emoji-bundle/wdt-emoji-bundle.css */

.wdt-emoji-popup,
.wdt-emoji-popup * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* hide unavailable fonts @todo - check fallbacks */
body[data-wdt-emoji-bundle='google'] .wdt-emoji[data-has-img-google='false'],
body[data-wdt-emoji-bundle='emojione'] .wdt-emoji[data-has-img-emojione='false'],
body[data-wdt-emoji-bundle='google'] .wdt-emoji[data-has-img-google='false'],
body[data-wdt-emoji-bundle='apple'] .wdt-emoji[data-has-img-apple='false'] {
  display: none;
}

/* picker styles */
.wdt-emoji-picker {
  position: absolute;
  right: 5px;
  bottom: 5px;

  width: 20px;
  height: 20px;
}

.wdt-emoji-picker:hover {
  cursor: pointer;
}

.wdt-emoji-picker-parent {
  position: relative;
}

.wdt-emoji-picker span.emoji-outer.emoji-sizer {
  width: 18px;
  height: 18px;

  pointer-events: none;
}

/* bundle popup styles */
.wdt-emoji-popup {
  position: absolute;
  top: 0;
  left: 0;

  visibility: hidden;

  width: 357px;
  max-width: 100%;
  height: 357px;
  max-height: 100%;

  transition: opacity 50ms ease, bottom 1s ease-out;

  opacity: 0;
  border: 1px solid #dedede;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
}

.wdt-emoji-popup.open {
  visibility: visible;

  opacity: 1;
}

.wdt-emoji-menu-header {
  padding: 4px 0 0 7px;

  border-bottom: 1px solid rgba(0, 0, 0, .15);
  background: #f7f7f7;
}

.wdt-emoji-tab {
  display: inline-block;

  width: 28px;
  margin-right: 2.5px;
  padding: 4px;

  transition: border-color 150ms ease-out;
  text-align: center;

  color: #9e9ea6;
  border-bottom: 3px solid transparent;
}

.wdt-emoji-tab:hover {
  cursor: pointer;
  text-decoration: none;
}

.wdt-emoji-tab.active {
  padding-top: 3px;

  color: #9e9ea6;
  border-bottom: 3px solid #e7543d;
}

.wdt-emoji-search,
.wdt-emoji-search:focus {
  font-size: 15px;
  line-height: 20px;

  width: 95%;
  max-width: 100%;
  height: 28px;
  margin: .5rem 9px .6rem;
  padding: 15px 2rem;

  transition: border-color 150ms ease-out;

  color: #444;
  border: 1px solid #c5c5c5;
  border-radius: 3px;
  outline: none;
}

.wdt-emoji-search:focus {
  border-color: #a0a0a0;
}

.wdt-emoji-popup h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;

  position: relative;

  margin: 0;
  padding: 8px;

  color: #555;
  background: rgba(255, 255, 255, .95);
}

.wdt-emoji-popup h3.sticky {
  position: absolute;
  z-index: 4;

  width: 330px;
}

.wdt-emoji-scroll-wrapper {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-anchor: none;
  height: 257px;
  padding-bottom: 30px;
}

.wdt-emoji-sections {
  padding: 0 5px;
}

.wdt-emoji {
  line-height: 1rem;

  position: relative;

  display: inline-block;

  margin-right: 2.5px !important;
  margin-bottom: 1px;
  padding: 6px;

  -webkit-transition: background 500ms ease-out;
  -moz-transition: background 500ms ease-out;
  -ms-transition: background 500ms ease-out;
  -o-transition: background 500ms ease-out;
  transition: background 500ms ease-out;
  text-align: center;

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.wdt-emoji.not-matched {
  display: none;
}

.wdt-emoji:hover {
  cursor: pointer;
}

.wdt-emoji.gray:hover {
  background-color: rgba(175, 175, 175, .32);
}

.wdt-emoji.green:hover {
  background-color: #b7e887;
}

.wdt-emoji.pink:hover {
  background-color: #f3c1fd;
}

.wdt-emoji.yellow:hover {
  background-color: #f9ef67;
}

.wdt-emoji.blue:hover {
  background-color: #b5e0fe;
}

.wdt-emoji-tab .emoji-outer {
  width: 18px;
  height: 18px;
}

span.emoji {
  display: -moz-inline-box;
  display: inline-block;

  width: 1em;
  height: 1em;

  vertical-align: baseline;
  text-indent: -9999px;

  background-repeat: no-repeat;
  background-position: 50%, 50%;
  background-size: 1em;
  background-size: contain;

  -moz-box-orient: vertical;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}

span.emoji-sizer {
  font-size: 1em;
  line-height: .81em;
}

span.emoji-outer {
  display: -moz-inline-box;
  display: inline-block;

  width: 22px;
  height: 22px;
  margin-top: -2px;

  vertical-align: middle;

  *display: inline;
}

span.emoji-inner {
  display: -moz-inline-box;
  display: inline-block;

  width: 100%;
  height: 100%;

  vertical-align: baseline;
  text-indent: -9999px;

  *vertical-align: auto;
  *zoom: 1;
}

img.emoji {
  width: 1em;
  height: 1em;
}

.wdt-emoji-footer {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  padding-bottom: .4rem;

  border-top: 1px solid rgba(0, 0, 0, .15);
  background: #f7f7f7;
}

.wdt-emoji-no-result {
  font-size: 10px;
  font-weight: 400;

  clear: both;

  padding: 20px;

  text-align: center;

  color: #bababa;
}

.wdt-emoji-preview {
  padding: .3rem 0 0 .7rem;

  -webkit-transition: opacity .1s ease-in .1s;
  -moz-transition: opacity .1s ease-in .1s;
  transition: opacity .1s ease-in .1s;

  opacity: 0;
}

.wdt-emoji-preview-img {
  font-size: 2rem;
  line-height: 2rem;

  float: left;

  width: 46px;
  height: 54px;
  padding: .6rem .5rem 0 .1rem;

  vertical-align: middle;
}

.wdt-emoji-preview-bundle {
  font-size: 17px;
  font-weight: bold;

  position: absolute;
  bottom: 19px;
  left: 14px;

  -webkit-transition: opacity .1s ease-in .1s;
  -moz-transition: opacity .1s ease-in .1s;
  transition: opacity .1s ease-in .1s;

  opacity: 1;
  color: #989ba0;
}

.wdt-emoji-search-result-title,
.wdt-emoji-no-result {
  display: none;
}

.wdt-emoji-search-result-title.wdt-show,
.wdt-emoji-no-result.wdt-show {
  display: block;

  margin: 0 5px;
}

.wdt-inline {
  display: inline;
}

.wdt-search-on {
  display: none;
}

.wdt-emoji-popup.preview-mode .wdt-emoji-preview-bundle {
  opacity: 0;
}

.wdt-emoji-popup.preview-mode .wdt-emoji-preview {
  opacity: 1;
}

.wdt-emoji-preview-img span.emoji-outer.emoji-sizer {
  position: relative;
  top: 3px;
  left: 4px;

  width: 40px;
  height: 40px;
}

.wdt-emoji-preview-text {
  font-size: 13px;

  position: relative;
  top: 9px;
  left: 10px !important;

  color: #777;
}

.wdt-emoji-preview-name {
  font-weight: bold;

  position: relative;
  left: 3px;

  color: #444;
}

.wdt-emoji-popup-mobile-closer {
  font-size: 25px !important;
  font-weight: bold;
  line-height: 35px;

  position: absolute;
  top: -35px;
  left: 50%;

  visibility: hidden;

  width: 40px;
  height: 35px;

  transform: translateX(-50%);
  text-align: center;

  opacity: 0;
  color: #444;
  border: 1px solid rgba(0, 0, 0, .1);
  border-bottom-color: #e7543d;
  border-radius: 50% 50% 0 0;
  background-color: rgba(255, 255, 255, .8);
}

/* iPhone 2G-4S-5-5S in portrait */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (orientation: portrait) {
  .wdt-emoji-picker {
    display: none;
  }

  .wdt-emoji-tab {
    width: 24px;
  }

  .wdt-emoji {
    margin-right: 0 !important;
  }

  .wdt-emoji-footer {
    display: none;
  }

  .wdt-emoji-scroll-wrapper {
    height: 170px;
  }

  .wdt-emoji-popup {
    height: 206px;

    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  .wdt-emoji-search {
    display: none;
  }

  .wdt-emoji-popup-mobile-closer {
    visibility: visible;

    opacity: 1;
  }

  .wdt-emoji-popup h3.sticky {
    width: 300px;
  }
}

/* iPhone 6 in portrait */
@media only screen
and (min-device-width: 375px)
and (max-device-width: 667px)
and (orientation: portrait) {
  .wdt-emoji {
    margin-right: -1px !important;
  }

  .wdt-emoji-tab {
    width: 30px;
  }

  .wdt-emoji-popup h3.sticky {
    width: 359px;
  }
}


/* fancybox/jquery.fancybox.css */

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

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

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}

/* Import all files we made */
@import url(https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i);
.break-word {
  /* 	grabbed from cssticks to break lines with long urls
    https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
  */
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Thin.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Thin.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Thin.ttf?v=1.1.0") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Light.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Light.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Light.ttf?v=1.1.0") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Regular.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Regular.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Regular.ttf?v=1.1.0") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Regular.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Regular.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Regular.ttf?v=1.1.0") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Medium.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Medium.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Medium.ttf?v=1.1.0") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Bold.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Bold.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Bold.ttf?v=1.1.0") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Bold.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Bold.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Bold.ttf?v=1.1.0") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url("../../../assets/fonts/roboto/Roboto-Black.woff2?v=1.1.0") format("woff2"), url("../../../assets/fonts/roboto/Roboto-Black.woff?v=1.1.0") format("woff"), url("../../../assets/fonts/roboto/Roboto-Black.ttf?v=1.1.0") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'shareto';
  src: url('../../../assets/fonts/shareto.eot?-s8va8n');
  src: url('../../../assets/fonts/shareto.eot?#iefix-s8va8n') format('embedded-opentype'), url('../../../assets/fonts/shareto.woff?-s8va8n') format('woff'), url('../../../assets/fonts/shareto.ttf?-s8va8n') format('truetype'), url('../../../assets/fonts/shareto.svg?-s8va8n#shareto') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="shicon-"],
[class*=" shicon-"] {
  font-family: 'shareto';
  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;
}
.shicon-alarm:before {
  content: "\e600";
}
.shicon-arrow-down:before {
  content: "\e601";
}
.shicon-arrow-down2:before {
  content: "\e602";
}
.shicon-arrow-down3:before {
  content: "\e603";
}
.shicon-arrow-left:before {
  content: "\e604";
}
.shicon-arrow-left2:before {
  content: "\e605";
}
.shicon-arrow-left3:before {
  content: "\e606";
}
.shicon-arrow-right:before {
  content: "\e607";
}
.shicon-arrow-right2:before {
  content: "\e608";
}
.shicon-arrow-right3:before {
  content: "\e609";
}
.shicon-arrow-up:before {
  content: "\e60a";
}
.shicon-arrow-up2:before {
  content: "\e60b";
}
.shicon-arrow-up3:before {
  content: "\e60c";
}
.shicon-bidirectional:before {
  content: "\e60d";
}
.shicon-bug:before {
  content: "\e60e";
}
.shicon-calendar:before {
  content: "\e60f";
}
.shicon-category:before {
  content: "\e610";
}
.shicon-ccw:before {
  content: "\e611";
}
.shicon-chart:before {
  content: "\e612";
}
.shicon-chat:before {
  content: "\e613";
}
.shicon-chat-3:before {
  content: "\e614";
}
.shicon-check:before {
  content: "\e615";
}
.shicon-check-alt:before {
  content: "\e616";
}
.shicon-circle:before {
  content: "\e617";
}
.shicon-circle-o:before {
  content: "\e618";
}
.shicon-circles:before {
  content: "\e619";
}
.shicon-clip:before {
  content: "\e61a";
}
.shicon-close:before {
  content: "\e61b";
}
.shicon-close-alt:before {
  content: "\e61c";
}
.shicon-cog:before {
  content: "\e61d";
}
.shicon-cog2:before {
  content: "\e61e";
}
.shicon-comment:before {
  content: "\e61f";
}
.shicon-comments:before {
  content: "\e620";
}
.shicon-contact:before {
  content: "\e621";
}
.shicon-cross:before {
  content: "\e622";
}
.shicon-crown:before {
  content: "\e623";
}
.shicon-cw:before {
  content: "\e624";
}
.shicon-denied:before {
  content: "\e625";
}
.shicon-diamond:before {
  content: "\e626";
}
.shicon-diamond-color .path1:before {
  content: "\e627";
  color: #2b86d8;
}
.shicon-diamond-color .path2:before {
  content: "\e628";
  margin-left: -1em;
  color: #37aa37;
}
.shicon-diamond-color .path3:before {
  content: "\e629";
  margin-left: -1em;
  color: #ed204c;
}
.shicon-diamond-color .path4:before {
  content: "\e62a";
  margin-left: -1em;
  color: #efc516;
}
.shicon-download:before {
  content: "\e62b";
}
.shicon-download-file:before {
  content: "\e62c";
}
.shicon-download-folder:before {
  content: "\e62d";
}
.shicon-drag-area:before {
  content: "\e62e";
}
.shicon-dropbox:before {
  content: "\e62f";
}
.shicon-earth:before {
  content: "\e630";
}
.shicon-edit:before {
  content: "\e631";
}
.shicon-ellipsis:before {
  content: "\e632";
}
.shicon-envelope:before {
  content: "\e633";
}
.shicon-exit:before {
  content: "\e634";
}
.shicon-eye:before {
  content: "\e635";
}
.shicon-feed:before {
  content: "\e636";
}
.shicon-file:before {
  content: "\e637";
}
.shicon-file-code-o:before {
  content: "\e638";
}
.shicon-file-excel-o:before {
  content: "\e639";
}
.shicon-file-movie-o:before {
  content: "\e63a";
}
.shicon-file-o:before {
  content: "\e63b";
}
.shicon-file-pdf-o:before {
  content: "\e63c";
}
.shicon-file-photo-o:before {
  content: "\e63d";
}
.shicon-file-powerpoint-o:before {
  content: "\e63e";
}
.shicon-file-sound-o:before {
  content: "\e63f";
}
.shicon-file-text-o:before {
  content: "\e640";
}
.shicon-file-word-o:before {
  content: "\e641";
}
.shicon-file-zip-o:before {
  content: "\e642";
}
.shicon-flag:before {
  content: "\e643";
}
.shicon-flag-outline:before {
  content: "\e644";
}
.shicon-folder:before {
  content: "\e645";
}
.shicon-folder2:before {
  content: "\e646";
}
.shicon-folder-write:before {
  content: "\e647";
}
.shicon-forward:before {
  content: "\e648";
}
.shicon-forward2:before {
  content: "\e649";
}
.shicon-globe:before {
  content: "\e64a";
}
.shicon-google-drive:before {
  content: "\e64b";
}
.shicon-grantchart:before {
  content: "\e64c";
}
.shicon-grid:before {
  content: "\e64d";
}
.shicon-grid2:before {
  content: "\e64e";
}
.shicon-group:before {
  content: "\e64f";
}
.shicon-help:before {
  content: "\e650";
}
.shicon-home:before {
  content: "\e651";
}
.shicon-in:before {
  content: "\e652";
}
.shicon-info:before {
  content: "\e653";
}
.shicon-inherit:before {
  content: "\e654";
}
.shicon-like:before {
  content: "\e655";
}
.shicon-link:before {
  content: "\e656";
}
.shicon-list:before {
  content: "\e657";
}
.shicon-list2:before {
  content: "\e658";
}
.shicon-lock:before {
  content: "\e659";
}
.shicon-mail:before {
  content: "\e65a";
}
.shicon-mark:before {
  content: "\e65b";
}
.shicon-menu:before {
  content: "\e65c";
}
.shicon-message:before {
  content: "\e65d";
}
.shicon-minus:before {
  content: "\e65e";
}
.shicon-note:before {
  content: "\e65f";
}
.shicon-notification:before {
  content: "\e660";
}
.shicon-out:before {
  content: "\e661";
}
.shicon-pencil:before {
  content: "\e662";
}
.shicon-pencil2:before {
  content: "\e663";
}
.shicon-pencil3:before {
  content: "\e664";
}
.shicon-phone:before {
  content: "\e665";
}
.shicon-plugin:before {
  content: "\e666";
}
.shicon-plus:before {
  content: "\e667";
}
.shicon-plus2:before {
  content: "\e668";
}
.shicon-popout:before {
  content: "\e669";
}
.shicon-print:before {
  content: "\e66a";
}
.shicon-project:before {
  content: "\e66b";
}
.shicon-publish:before {
  content: "\e66c";
}
.shicon-redo:before {
  content: "\e66d";
}
.shicon-remove:before {
  content: "\e66e";
}
.shicon-remove-write:before {
  content: "\e66f";
}
.shicon-reply:before {
  content: "\e670";
}
.shicon-reply2:before {
  content: "\e671";
}
.shicon-reply-all:before {
  content: "\e672";
}
.shicon-save:before {
  content: "\e673";
}
.shicon-search:before {
  content: "\e674";
}
.shicon-search2:before {
  content: "\e675";
}
.shicon-setting:before {
  content: "\e676";
}
.shicon-settings:before {
  content: "\e677";
}
.shicon-shareto:before {
  content: "\e678";
}
.shicon-source-box:before {
  content: "\e679";
}
.shicon-source-dropbox:before {
  content: "\e67a";
}
.shicon-source-evernote:before {
  content: "\e67b";
}
.shicon-source-exchange:before {
  content: "\e67c";
}
.shicon-source-facebook:before {
  content: "\e67d";
}
.shicon-source-google:before {
  content: "\e67e";
}
.shicon-source-google_drive:before {
  content: "\e67e";
}
.shicon-source-google_calendar:before {
  content: "\e67e";
}
.shicon-source-linkedin:before {
  content: "\e67f";
}
.shicon-source-office365:before {
  content: "\e680";
}
.shicon-source-onedrive:before {
  content: "\e681";
}
.shicon-source-salesforce:before {
  content: "\e682";
}
.shicon-source-sharepoint:before {
  content: "\e683";
}
.shicon-star:before {
  content: "\e684";
}
.shicon-tags:before {
  content: "\e685";
}
.shicon-task:before {
  content: "\e686";
}
.shicon-task-check:before {
  content: "\e687";
}
.shicon-text:before {
  content: "\e688";
}
.shicon-time:before {
  content: "\e689";
}
.shicon-tool:before {
  content: "\e68a";
}
.shicon-type:before {
  content: "\e68b";
}
.shicon-types:before {
  content: "\e68c";
}
.shicon-undo:before {
  content: "\e68d";
}
.shicon-user:before {
  content: "\e68e";
}
.shicon-user2:before {
  content: "\e68f";
}
.shicon-users:before {
  content: "\e690";
}
.shicon-workspace:before {
  content: "\e691";
}
.shicon-add:before {
  content: "\e692";
}
/* ADDED CLASSES*/
.shicon-contacts:before {
  content: "\e621";
}
.shicon-documents:before {
  content: "\E63B";
}
.shicon-links:before {
  content: "\e656";
}
.shicon-notes:before {
  content: "\e65f";
}
.shicon-tasks:before {
  content: "\e686";
}
.shicon-shares:before {
  content: "\e678";
}
.shicon-shareconferences:before {
  content: "\e678";
}
.shicon-document:before {
  content: "\E63B";
}
@font-face {
  font-family: 'Linearicons';
  src: url('../../../assets/fonts/Linearicons.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: 'Linearicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-home:before {
  content: "\e600";
}
.icon-home2:before {
  content: "\e601";
}
.icon-home3:before {
  content: "\e602";
}
.icon-home4:before {
  content: "\e603";
}
.icon-home5:before {
  content: "\e604";
}
.icon-home6:before {
  content: "\e605";
}
.icon-bathtub:before {
  content: "\e606";
}
.icon-toothbrush:before {
  content: "\e607";
}
.icon-bed:before {
  content: "\e608";
}
.icon-couch:before {
  content: "\e609";
}
.icon-chair:before {
  content: "\e60a";
}
.icon-city:before {
  content: "\e60b";
}
.icon-apartment:before {
  content: "\e60c";
}
.icon-pencil:before {
  content: "\e60d";
}
.icon-pencil2:before {
  content: "\e60e";
}
.icon-pen:before {
  content: "\e60f";
}
.icon-pencil3:before {
  content: "\e610";
}
.icon-eraser:before {
  content: "\e611";
}
.icon-pencil4:before {
  content: "\e612";
}
.icon-pencil5:before {
  content: "\e613";
}
.icon-feather:before {
  content: "\e614";
}
.icon-feather2:before {
  content: "\e615";
}
.icon-feather3:before {
  content: "\e616";
}
.icon-pen2:before {
  content: "\e617";
}
.icon-pen-add:before {
  content: "\e618";
}
.icon-pen-remove:before {
  content: "\e619";
}
.icon-vector:before {
  content: "\e61a";
}
.icon-pen3:before {
  content: "\e61b";
}
.icon-blog:before {
  content: "\e61c";
}
.icon-brush:before {
  content: "\e61d";
}
.icon-brush2:before {
  content: "\e61e";
}
.icon-spray:before {
  content: "\e61f";
}
.icon-paint-roller:before {
  content: "\e620";
}
.icon-stamp:before {
  content: "\e621";
}
.icon-tape:before {
  content: "\e622";
}
.icon-desk-tape:before {
  content: "\e623";
}
.icon-texture:before {
  content: "\e624";
}
.icon-eye-dropper:before {
  content: "\e625";
}
.icon-palette:before {
  content: "\e626";
}
.icon-color-sampler:before {
  content: "\e627";
}
.icon-bucket:before {
  content: "\e628";
}
.icon-gradient:before {
  content: "\e629";
}
.icon-gradient2:before {
  content: "\e62a";
}
.icon-magic-wand:before {
  content: "\e62b";
}
.icon-magnet:before {
  content: "\e62c";
}
.icon-pencil-ruler:before {
  content: "\e62d";
}
.icon-pencil-ruler2:before {
  content: "\e62e";
}
.icon-compass:before {
  content: "\e62f";
}
.icon-aim:before {
  content: "\e630";
}
.icon-gun:before {
  content: "\e631";
}
.icon-bottle:before {
  content: "\e632";
}
.icon-drop:before {
  content: "\e633";
}
.icon-drop-crossed:before {
  content: "\e634";
}
.icon-drop2:before {
  content: "\e635";
}
.icon-snow:before {
  content: "\e636";
}
.icon-snow2:before {
  content: "\e637";
}
.icon-fire:before {
  content: "\e638";
}
.icon-lighter:before {
  content: "\e639";
}
.icon-knife:before {
  content: "\e63a";
}
.icon-dagger:before {
  content: "\e63b";
}
.icon-tissue:before {
  content: "\e63c";
}
.icon-toilet-paper:before {
  content: "\e63d";
}
.icon-poop:before {
  content: "\e63e";
}
.icon-umbrella:before {
  content: "\e63f";
}
.icon-umbrella2:before {
  content: "\e640";
}
.icon-rain:before {
  content: "\e641";
}
.icon-tornado:before {
  content: "\e642";
}
.icon-wind:before {
  content: "\e643";
}
.icon-fan:before {
  content: "\e644";
}
.icon-contrast:before {
  content: "\e645";
}
.icon-sun-small:before {
  content: "\e646";
}
.icon-sun:before {
  content: "\e647";
}
.icon-sun2:before {
  content: "\e648";
}
.icon-moon:before {
  content: "\e649";
}
.icon-cloud:before {
  content: "\e64a";
}
.icon-cloud-upload:before {
  content: "\e64b";
}
.icon-cloud-download:before {
  content: "\e64c";
}
.icon-cloud-rain:before {
  content: "\e64d";
}
.icon-cloud-hailstones:before {
  content: "\e64e";
}
.icon-cloud-snow:before {
  content: "\e64f";
}
.icon-cloud-windy:before {
  content: "\e650";
}
.icon-sun-wind:before {
  content: "\e651";
}
.icon-cloud-fog:before {
  content: "\e652";
}
.icon-cloud-sun:before {
  content: "\e653";
}
.icon-cloud-lightning:before {
  content: "\e654";
}
.icon-cloud-sync:before {
  content: "\e655";
}
.icon-cloud-lock:before {
  content: "\e656";
}
.icon-cloud-gear:before {
  content: "\e657";
}
.icon-cloud-alert:before {
  content: "\e658";
}
.icon-cloud-check:before {
  content: "\e659";
}
.icon-cloud-cross:before {
  content: "\e65a";
}
.icon-cloud-crossed:before {
  content: "\e65b";
}
.icon-cloud-database:before {
  content: "\e65c";
}
.icon-database:before {
  content: "\e65d";
}
.icon-database-add:before {
  content: "\e65e";
}
.icon-database-remove:before {
  content: "\e65f";
}
.icon-database-lock:before {
  content: "\e660";
}
.icon-database-refresh:before {
  content: "\e661";
}
.icon-database-check:before {
  content: "\e662";
}
.icon-database-history:before {
  content: "\e663";
}
.icon-database-upload:before {
  content: "\e664";
}
.icon-database-download:before {
  content: "\e665";
}
.icon-server:before {
  content: "\e666";
}
.icon-shield:before {
  content: "\e667";
}
.icon-shield-check:before {
  content: "\e668";
}
.icon-shield-alert:before {
  content: "\e669";
}
.icon-shield-cross:before {
  content: "\e66a";
}
.icon-lock:before {
  content: "\e66b";
}
.icon-rotation-lock:before {
  content: "\e66c";
}
.icon-unlock:before {
  content: "\e66d";
}
.icon-key:before {
  content: "\e66e";
}
.icon-key-hole:before {
  content: "\e66f";
}
.icon-toggle-off:before {
  content: "\e670";
}
.icon-toggle-on:before {
  content: "\e671";
}
.icon-cog:before {
  content: "\e672";
}
.icon-cog2:before {
  content: "\e673";
}
.icon-wrench:before {
  content: "\e674";
}
.icon-screwdriver:before {
  content: "\e675";
}
.icon-hammer-wrench:before {
  content: "\e676";
}
.icon-hammer:before {
  content: "\e677";
}
.icon-saw:before {
  content: "\e678";
}
.icon-axe:before {
  content: "\e679";
}
.icon-axe2:before {
  content: "\e67a";
}
.icon-shovel:before {
  content: "\e67b";
}
.icon-pickaxe:before {
  content: "\e67c";
}
.icon-factory:before {
  content: "\e67d";
}
.icon-factory2:before {
  content: "\e67e";
}
.icon-recycle:before {
  content: "\e67f";
}
.icon-trash:before {
  content: "\e680";
}
.icon-trash2:before {
  content: "\e681";
}
.icon-trash3:before {
  content: "\e682";
}
.icon-broom:before {
  content: "\e683";
}
.icon-game:before {
  content: "\e684";
}
.icon-gamepad:before {
  content: "\e685";
}
.icon-joystick:before {
  content: "\e686";
}
.icon-dice:before {
  content: "\e687";
}
.icon-spades:before {
  content: "\e688";
}
.icon-diamonds:before {
  content: "\e689";
}
.icon-clubs:before {
  content: "\e68a";
}
.icon-hearts:before {
  content: "\e68b";
}
.icon-heart:before {
  content: "\e68c";
}
.icon-star:before {
  content: "\e68d";
}
.icon-star-half:before {
  content: "\e68e";
}
.icon-star-empty:before {
  content: "\e68f";
}
.icon-flag:before {
  content: "\e690";
}
.icon-flag2:before {
  content: "\e691";
}
.icon-flag3:before {
  content: "\e692";
}
.icon-mailbox-full:before {
  content: "\e693";
}
.icon-mailbox-empty:before {
  content: "\e694";
}
.icon-at-sign:before {
  content: "\e695";
}
.icon-envelope:before {
  content: "\e696";
}
.icon-envelope-open:before {
  content: "\e697";
}
.icon-paperclip:before {
  content: "\e698";
}
.icon-paper-plane:before {
  content: "\e699";
}
.icon-reply:before {
  content: "\e69a";
}
.icon-reply-all:before {
  content: "\e69b";
}
.icon-inbox:before {
  content: "\e69c";
}
.icon-inbox2:before {
  content: "\e69d";
}
.icon-outbox:before {
  content: "\e69e";
}
.icon-box:before {
  content: "\e69f";
}
.icon-archive:before {
  content: "\e6a0";
}
.icon-archive2:before {
  content: "\e6a1";
}
.icon-drawers:before {
  content: "\e6a2";
}
.icon-drawers2:before {
  content: "\e6a3";
}
.icon-drawers3:before {
  content: "\e6a4";
}
.icon-eye:before {
  content: "\e6a5";
}
.icon-eye-crossed:before {
  content: "\e6a6";
}
.icon-eye-plus:before {
  content: "\e6a7";
}
.icon-eye-minus:before {
  content: "\e6a8";
}
.icon-binoculars:before {
  content: "\e6a9";
}
.icon-binoculars2:before {
  content: "\e6aa";
}
.icon-hdd:before {
  content: "\e6ab";
}
.icon-hdd-down:before {
  content: "\e6ac";
}
.icon-hdd-up:before {
  content: "\e6ad";
}
.icon-floppy-disk:before {
  content: "\e6ae";
}
.icon-disc:before {
  content: "\e6af";
}
.icon-tape2:before {
  content: "\e6b0";
}
.icon-printer:before {
  content: "\e6b1";
}
.icon-shredder:before {
  content: "\e6b2";
}
.icon-file-empty:before {
  content: "\e6b3";
}
.icon-file-add:before {
  content: "\e6b4";
}
.icon-file-check:before {
  content: "\e6b5";
}
.icon-file-lock:before {
  content: "\e6b6";
}
.icon-files:before {
  content: "\e6b7";
}
.icon-copy:before {
  content: "\e6b8";
}
.icon-compare:before {
  content: "\e6b9";
}
.icon-folder:before {
  content: "\e6ba";
}
.icon-folder-search:before {
  content: "\e6bb";
}
.icon-folder-plus:before {
  content: "\e6bc";
}
.icon-folder-minus:before {
  content: "\e6bd";
}
.icon-folder-download:before {
  content: "\e6be";
}
.icon-folder-upload:before {
  content: "\e6bf";
}
.icon-folder-star:before {
  content: "\e6c0";
}
.icon-folder-heart:before {
  content: "\e6c1";
}
.icon-folder-user:before {
  content: "\e6c2";
}
.icon-folder-shared:before {
  content: "\e6c3";
}
.icon-folder-music:before {
  content: "\e6c4";
}
.icon-folder-picture:before {
  content: "\e6c5";
}
.icon-folder-film:before {
  content: "\e6c6";
}
.icon-scissors:before {
  content: "\e6c7";
}
.icon-paste:before {
  content: "\e6c8";
}
.icon-clipboard-empty:before {
  content: "\e6c9";
}
.icon-clipboard-pencil:before {
  content: "\e6ca";
}
.icon-clipboard-text:before {
  content: "\e6cb";
}
.icon-clipboard-check:before {
  content: "\e6cc";
}
.icon-clipboard-down:before {
  content: "\e6cd";
}
.icon-clipboard-left:before {
  content: "\e6ce";
}
.icon-clipboard-alert:before {
  content: "\e6cf";
}
.icon-clipboard-user:before {
  content: "\e6d0";
}
.icon-register:before {
  content: "\e6d1";
}
.icon-enter:before {
  content: "\e6d2";
}
.icon-exit:before {
  content: "\e6d3";
}
.icon-papers:before {
  content: "\e6d4";
}
.icon-news:before {
  content: "\e6d5";
}
.icon-reading:before {
  content: "\e6d6";
}
.icon-typewriter:before {
  content: "\e6d7";
}
.icon-document:before {
  content: "\e6d8";
}
.icon-document2:before {
  content: "\e6d9";
}
.icon-graduation-hat:before {
  content: "\e6da";
}
.icon-license:before {
  content: "\e6db";
}
.icon-license2:before {
  content: "\e6dc";
}
.icon-medal-empty:before {
  content: "\e6dd";
}
.icon-medal-first:before {
  content: "\e6de";
}
.icon-medal-second:before {
  content: "\e6df";
}
.icon-medal-third:before {
  content: "\e6e0";
}
.icon-podium:before {
  content: "\e6e1";
}
.icon-trophy:before {
  content: "\e6e2";
}
.icon-trophy2:before {
  content: "\e6e3";
}
.icon-music-note:before {
  content: "\e6e4";
}
.icon-music-note2:before {
  content: "\e6e5";
}
.icon-music-note3:before {
  content: "\e6e6";
}
.icon-playlist:before {
  content: "\e6e7";
}
.icon-playlist-add:before {
  content: "\e6e8";
}
.icon-guitar:before {
  content: "\e6e9";
}
.icon-trumpet:before {
  content: "\e6ea";
}
.icon-album:before {
  content: "\e6eb";
}
.icon-shuffle:before {
  content: "\e6ec";
}
.icon-repeat-one:before {
  content: "\e6ed";
}
.icon-repeat:before {
  content: "\e6ee";
}
.icon-headphones:before {
  content: "\e6ef";
}
.icon-headset:before {
  content: "\e6f0";
}
.icon-loudspeaker:before {
  content: "\e6f1";
}
.icon-equalizer:before {
  content: "\e6f2";
}
.icon-theater:before {
  content: "\e6f3";
}
.icon-3d-glasses:before {
  content: "\e6f4";
}
.icon-ticket:before {
  content: "\e6f5";
}
.icon-presentation:before {
  content: "\e6f6";
}
.icon-play:before {
  content: "\e6f7";
}
.icon-film-play:before {
  content: "\e6f8";
}
.icon-clapboard-play:before {
  content: "\e6f9";
}
.icon-media:before {
  content: "\e6fa";
}
.icon-film:before {
  content: "\e6fb";
}
.icon-film2:before {
  content: "\e6fc";
}
.icon-surveillance:before {
  content: "\e6fd";
}
.icon-surveillance2:before {
  content: "\e6fe";
}
.icon-camera:before {
  content: "\e6ff";
}
.icon-camera-crossed:before {
  content: "\e700";
}
.icon-camera-play:before {
  content: "\e701";
}
.icon-time-lapse:before {
  content: "\e702";
}
.icon-record:before {
  content: "\e703";
}
.icon-camera2:before {
  content: "\e704";
}
.icon-camera-flip:before {
  content: "\e705";
}
.icon-panorama:before {
  content: "\e706";
}
.icon-time-lapse2:before {
  content: "\e707";
}
.icon-shutter:before {
  content: "\e708";
}
.icon-shutter2:before {
  content: "\e709";
}
.icon-face-detection:before {
  content: "\e70a";
}
.icon-flare:before {
  content: "\e70b";
}
.icon-convex:before {
  content: "\e70c";
}
.icon-concave:before {
  content: "\e70d";
}
.icon-picture:before {
  content: "\e70e";
}
.icon-picture2:before {
  content: "\e70f";
}
.icon-picture3:before {
  content: "\e710";
}
.icon-pictures:before {
  content: "\e711";
}
.icon-book:before {
  content: "\e712";
}
.icon-audio-book:before {
  content: "\e713";
}
.icon-book2:before {
  content: "\e714";
}
.icon-bookmark:before {
  content: "\e715";
}
.icon-bookmark2:before {
  content: "\e716";
}
.icon-label:before {
  content: "\e717";
}
.icon-library:before {
  content: "\e718";
}
.icon-library2:before {
  content: "\e719";
}
.icon-contacts:before {
  content: "\e71a";
}
.icon-profile:before {
  content: "\e71b";
}
.icon-portrait:before {
  content: "\e71c";
}
.icon-portrait2:before {
  content: "\e71d";
}
.icon-user:before {
  content: "\e71e";
}
.icon-user-plus:before {
  content: "\e71f";
}
.icon-user-minus:before {
  content: "\e720";
}
.icon-user-lock:before {
  content: "\e721";
}
.icon-users:before {
  content: "\e722";
}
.icon-users2:before {
  content: "\e723";
}
.icon-users-plus:before {
  content: "\e724";
}
.icon-users-minus:before {
  content: "\e725";
}
.icon-group-work:before {
  content: "\e726";
}
.icon-woman:before {
  content: "\e727";
}
.icon-man:before {
  content: "\e728";
}
.icon-baby:before {
  content: "\e729";
}
.icon-baby2:before {
  content: "\e72a";
}
.icon-baby3:before {
  content: "\e72b";
}
.icon-baby-bottle:before {
  content: "\e72c";
}
.icon-walk:before {
  content: "\e72d";
}
.icon-hand-waving:before {
  content: "\e72e";
}
.icon-jump:before {
  content: "\e72f";
}
.icon-run:before {
  content: "\e730";
}
.icon-woman2:before {
  content: "\e731";
}
.icon-man2:before {
  content: "\e732";
}
.icon-man-woman:before {
  content: "\e733";
}
.icon-height:before {
  content: "\e734";
}
.icon-weight:before {
  content: "\e735";
}
.icon-scale:before {
  content: "\e736";
}
.icon-button:before {
  content: "\e737";
}
.icon-bow-tie:before {
  content: "\e738";
}
.icon-tie:before {
  content: "\e739";
}
.icon-socks:before {
  content: "\e73a";
}
.icon-shoe:before {
  content: "\e73b";
}
.icon-shoes:before {
  content: "\e73c";
}
.icon-hat:before {
  content: "\e73d";
}
.icon-pants:before {
  content: "\e73e";
}
.icon-shorts:before {
  content: "\e73f";
}
.icon-flip-flops:before {
  content: "\e740";
}
.icon-shirt:before {
  content: "\e741";
}
.icon-hanger:before {
  content: "\e742";
}
.icon-laundry:before {
  content: "\e743";
}
.icon-store:before {
  content: "\e744";
}
.icon-haircut:before {
  content: "\e745";
}
.icon-store-24:before {
  content: "\e746";
}
.icon-barcode:before {
  content: "\e747";
}
.icon-barcode2:before {
  content: "\e748";
}
.icon-barcode3:before {
  content: "\e749";
}
.icon-cashier:before {
  content: "\e74a";
}
.icon-bag:before {
  content: "\e74b";
}
.icon-bag2:before {
  content: "\e74c";
}
.icon-cart:before {
  content: "\e74d";
}
.icon-cart-empty:before {
  content: "\e74e";
}
.icon-cart-full:before {
  content: "\e74f";
}
.icon-cart-plus:before {
  content: "\e750";
}
.icon-cart-plus2:before {
  content: "\e751";
}
.icon-cart-add:before {
  content: "\e752";
}
.icon-cart-remove:before {
  content: "\e753";
}
.icon-cart-exchange:before {
  content: "\e754";
}
.icon-tag:before {
  content: "\e755";
}
.icon-tags:before {
  content: "\e756";
}
.icon-receipt:before {
  content: "\e757";
}
.icon-wallet:before {
  content: "\e758";
}
.icon-credit-card:before {
  content: "\e759";
}
.icon-cash-dollar:before {
  content: "\e75a";
}
.icon-cash-euro:before {
  content: "\e75b";
}
.icon-cash-pound:before {
  content: "\e75c";
}
.icon-cash-yen:before {
  content: "\e75d";
}
.icon-bag-dollar:before {
  content: "\e75e";
}
.icon-bag-euro:before {
  content: "\e75f";
}
.icon-bag-pound:before {
  content: "\e760";
}
.icon-bag-yen:before {
  content: "\e761";
}
.icon-coin-dollar:before {
  content: "\e762";
}
.icon-coin-euro:before {
  content: "\e763";
}
.icon-coin-pound:before {
  content: "\e764";
}
.icon-coin-yen:before {
  content: "\e765";
}
.icon-calculator:before {
  content: "\e766";
}
.icon-calculator2:before {
  content: "\e767";
}
.icon-abacus:before {
  content: "\e768";
}
.icon-vault:before {
  content: "\e769";
}
.icon-telephone:before {
  content: "\e76a";
}
.icon-phone-lock:before {
  content: "\e76b";
}
.icon-phone-wave:before {
  content: "\e76c";
}
.icon-phone-pause:before {
  content: "\e76d";
}
.icon-phone-outgoing:before {
  content: "\e76e";
}
.icon-phone-incoming:before {
  content: "\e76f";
}
.icon-phone-in-out:before {
  content: "\e770";
}
.icon-phone-error:before {
  content: "\e771";
}
.icon-phone-sip:before {
  content: "\e772";
}
.icon-phone-plus:before {
  content: "\e773";
}
.icon-phone-minus:before {
  content: "\e774";
}
.icon-voicemail:before {
  content: "\e775";
}
.icon-dial:before {
  content: "\e776";
}
.icon-telephone2:before {
  content: "\e777";
}
.icon-pushpin:before {
  content: "\e778";
}
.icon-pushpin2:before {
  content: "\e779";
}
.icon-map-marker:before {
  content: "\e77a";
}
.icon-map-marker-user:before {
  content: "\e77b";
}
.icon-map-marker-down:before {
  content: "\e77c";
}
.icon-map-marker-check:before {
  content: "\e77d";
}
.icon-map-marker-crossed:before {
  content: "\e77e";
}
.icon-radar:before {
  content: "\e77f";
}
.icon-compass2:before {
  content: "\e780";
}
.icon-map:before {
  content: "\e781";
}
.icon-map2:before {
  content: "\e782";
}
.icon-location:before {
  content: "\e783";
}
.icon-road-sign:before {
  content: "\e784";
}
.icon-calendar-empty:before {
  content: "\e785";
}
.icon-calendar-check:before {
  content: "\e786";
}
.icon-calendar-cross:before {
  content: "\e787";
}
.icon-calendar-31:before {
  content: "\e788";
}
.icon-calendar-full:before {
  content: "\e789";
}
.icon-calendar-insert:before {
  content: "\e78a";
}
.icon-calendar-text:before {
  content: "\e78b";
}
.icon-calendar-user:before {
  content: "\e78c";
}
.icon-mouse:before {
  content: "\e78d";
}
.icon-mouse-left:before {
  content: "\e78e";
}
.icon-mouse-right:before {
  content: "\e78f";
}
.icon-mouse-both:before {
  content: "\e790";
}
.icon-keyboard:before {
  content: "\e791";
}
.icon-keyboard-up:before {
  content: "\e792";
}
.icon-keyboard-down:before {
  content: "\e793";
}
.icon-delete:before {
  content: "\e794";
}
.icon-spell-check:before {
  content: "\e795";
}
.icon-escape:before {
  content: "\e796";
}
.icon-enter2:before {
  content: "\e797";
}
.icon-screen:before {
  content: "\e798";
}
.icon-aspect-ratio:before {
  content: "\e799";
}
.icon-signal:before {
  content: "\e79a";
}
.icon-signal-lock:before {
  content: "\e79b";
}
.icon-signal-80:before {
  content: "\e79c";
}
.icon-signal-60:before {
  content: "\e79d";
}
.icon-signal-40:before {
  content: "\e79e";
}
.icon-signal-20:before {
  content: "\e79f";
}
.icon-signal-0:before {
  content: "\e7a0";
}
.icon-signal-blocked:before {
  content: "\e7a1";
}
.icon-sim:before {
  content: "\e7a2";
}
.icon-flash-memory:before {
  content: "\e7a3";
}
.icon-usb-drive:before {
  content: "\e7a4";
}
.icon-phone:before {
  content: "\e7a5";
}
.icon-smartphone:before {
  content: "\e7a6";
}
.icon-smartphone-notification:before {
  content: "\e7a7";
}
.icon-smartphone-vibration:before {
  content: "\e7a8";
}
.icon-smartphone-embed:before {
  content: "\e7a9";
}
.icon-smartphone-waves:before {
  content: "\e7aa";
}
.icon-tablet:before {
  content: "\e7ab";
}
.icon-tablet2:before {
  content: "\e7ac";
}
.icon-laptop:before {
  content: "\e7ad";
}
.icon-laptop-phone:before {
  content: "\e7ae";
}
.icon-desktop:before {
  content: "\e7af";
}
.icon-launch:before {
  content: "\e7b0";
}
.icon-new-tab:before {
  content: "\e7b1";
}
.icon-window:before {
  content: "\e7b2";
}
.icon-cable:before {
  content: "\e7b3";
}
.icon-cable2:before {
  content: "\e7b4";
}
.icon-tv:before {
  content: "\e7b5";
}
.icon-radio:before {
  content: "\e7b6";
}
.icon-remote-control:before {
  content: "\e7b7";
}
.icon-power-switch:before {
  content: "\e7b8";
}
.icon-power:before {
  content: "\e7b9";
}
.icon-power-crossed:before {
  content: "\e7ba";
}
.icon-flash-auto:before {
  content: "\e7bb";
}
.icon-lamp:before {
  content: "\e7bc";
}
.icon-flashlight:before {
  content: "\e7bd";
}
.icon-lampshade:before {
  content: "\e7be";
}
.icon-cord:before {
  content: "\e7bf";
}
.icon-outlet:before {
  content: "\e7c0";
}
.icon-battery-power:before {
  content: "\e7c1";
}
.icon-battery-empty:before {
  content: "\e7c2";
}
.icon-battery-alert:before {
  content: "\e7c3";
}
.icon-battery-error:before {
  content: "\e7c4";
}
.icon-battery-low1:before {
  content: "\e7c5";
}
.icon-battery-low2:before {
  content: "\e7c6";
}
.icon-battery-low3:before {
  content: "\e7c7";
}
.icon-battery-mid1:before {
  content: "\e7c8";
}
.icon-battery-mid2:before {
  content: "\e7c9";
}
.icon-battery-mid3:before {
  content: "\e7ca";
}
.icon-battery-full:before {
  content: "\e7cb";
}
.icon-battery-charging:before {
  content: "\e7cc";
}
.icon-battery-charging2:before {
  content: "\e7cd";
}
.icon-battery-charging3:before {
  content: "\e7ce";
}
.icon-battery-charging4:before {
  content: "\e7cf";
}
.icon-battery-charging5:before {
  content: "\e7d0";
}
.icon-battery-charging6:before {
  content: "\e7d1";
}
.icon-battery-charging7:before {
  content: "\e7d2";
}
.icon-chip:before {
  content: "\e7d3";
}
.icon-chip-x64:before {
  content: "\e7d4";
}
.icon-chip-x86:before {
  content: "\e7d5";
}
.icon-bubble:before {
  content: "\e7d6";
}
.icon-bubbles:before {
  content: "\e7d7";
}
.icon-bubble-dots:before {
  content: "\e7d8";
}
.icon-bubble-alert:before {
  content: "\e7d9";
}
.icon-bubble-question:before {
  content: "\e7da";
}
.icon-bubble-text:before {
  content: "\e7db";
}
.icon-bubble-pencil:before {
  content: "\e7dc";
}
.icon-bubble-picture:before {
  content: "\e7dd";
}
.icon-bubble-video:before {
  content: "\e7de";
}
.icon-bubble-user:before {
  content: "\e7df";
}
.icon-bubble-quote:before {
  content: "\e7e0";
}
.icon-bubble-heart:before {
  content: "\e7e1";
}
.icon-bubble-emoticon:before {
  content: "\e7e2";
}
.icon-bubble-attachment:before {
  content: "\e7e3";
}
.icon-phone-bubble:before {
  content: "\e7e4";
}
.icon-quote-open:before {
  content: "\e7e5";
}
.icon-quote-close:before {
  content: "\e7e6";
}
.icon-dna:before {
  content: "\e7e7";
}
.icon-heart-pulse:before {
  content: "\e7e8";
}
.icon-pulse:before {
  content: "\e7e9";
}
.icon-syringe:before {
  content: "\e7ea";
}
.icon-pills:before {
  content: "\e7eb";
}
.icon-first-aid:before {
  content: "\e7ec";
}
.icon-lifebuoy:before {
  content: "\e7ed";
}
.icon-bandage:before {
  content: "\e7ee";
}
.icon-bandages:before {
  content: "\e7ef";
}
.icon-thermometer:before {
  content: "\e7f0";
}
.icon-microscope:before {
  content: "\e7f1";
}
.icon-brain:before {
  content: "\e7f2";
}
.icon-beaker:before {
  content: "\e7f3";
}
.icon-skull:before {
  content: "\e7f4";
}
.icon-bone:before {
  content: "\e7f5";
}
.icon-construction:before {
  content: "\e7f6";
}
.icon-construction-cone:before {
  content: "\e7f7";
}
.icon-pie-chart:before {
  content: "\e7f8";
}
.icon-pie-chart2:before {
  content: "\e7f9";
}
.icon-graph:before {
  content: "\e7fa";
}
.icon-chart-growth:before {
  content: "\e7fb";
}
.icon-chart-bars:before {
  content: "\e7fc";
}
.icon-chart-settings:before {
  content: "\e7fd";
}
.icon-cake:before {
  content: "\e7fe";
}
.icon-gift:before {
  content: "\e7ff";
}
.icon-balloon:before {
  content: "\e800";
}
.icon-rank:before {
  content: "\e801";
}
.icon-rank2:before {
  content: "\e802";
}
.icon-rank3:before {
  content: "\e803";
}
.icon-crown:before {
  content: "\e804";
}
.icon-lotus:before {
  content: "\e805";
}
.icon-diamond:before {
  content: "\e806";
}
.icon-diamond2:before {
  content: "\e807";
}
.icon-diamond3:before {
  content: "\e808";
}
.icon-diamond4:before {
  content: "\e809";
}
.icon-linearicons:before {
  content: "\e80a";
}
.icon-teacup:before {
  content: "\e80b";
}
.icon-teapot:before {
  content: "\e80c";
}
.icon-glass:before {
  content: "\e80d";
}
.icon-bottle2:before {
  content: "\e80e";
}
.icon-glass-cocktail:before {
  content: "\e80f";
}
.icon-glass2:before {
  content: "\e810";
}
.icon-dinner:before {
  content: "\e811";
}
.icon-dinner2:before {
  content: "\e812";
}
.icon-chef:before {
  content: "\e813";
}
.icon-scale2:before {
  content: "\e814";
}
.icon-egg:before {
  content: "\e815";
}
.icon-egg2:before {
  content: "\e816";
}
.icon-eggs:before {
  content: "\e817";
}
.icon-platter:before {
  content: "\e818";
}
.icon-steak:before {
  content: "\e819";
}
.icon-hamburger:before {
  content: "\e81a";
}
.icon-hotdog:before {
  content: "\e81b";
}
.icon-pizza:before {
  content: "\e81c";
}
.icon-sausage:before {
  content: "\e81d";
}
.icon-chicken:before {
  content: "\e81e";
}
.icon-fish:before {
  content: "\e81f";
}
.icon-carrot:before {
  content: "\e820";
}
.icon-cheese:before {
  content: "\e821";
}
.icon-bread:before {
  content: "\e822";
}
.icon-ice-cream:before {
  content: "\e823";
}
.icon-ice-cream2:before {
  content: "\e824";
}
.icon-candy:before {
  content: "\e825";
}
.icon-lollipop:before {
  content: "\e826";
}
.icon-coffee-bean:before {
  content: "\e827";
}
.icon-coffee-cup:before {
  content: "\e828";
}
.icon-cherry:before {
  content: "\e829";
}
.icon-grapes:before {
  content: "\e82a";
}
.icon-citrus:before {
  content: "\e82b";
}
.icon-apple:before {
  content: "\e82c";
}
.icon-leaf:before {
  content: "\e82d";
}
.icon-landscape:before {
  content: "\e82e";
}
.icon-pine-tree:before {
  content: "\e82f";
}
.icon-tree:before {
  content: "\e830";
}
.icon-cactus:before {
  content: "\e831";
}
.icon-paw:before {
  content: "\e832";
}
.icon-footprint:before {
  content: "\e833";
}
.icon-speed-slow:before {
  content: "\e834";
}
.icon-speed-medium:before {
  content: "\e835";
}
.icon-speed-fast:before {
  content: "\e836";
}
.icon-rocket:before {
  content: "\e837";
}
.icon-hammer2:before {
  content: "\e838";
}
.icon-balance:before {
  content: "\e839";
}
.icon-briefcase:before {
  content: "\e83a";
}
.icon-luggage-weight:before {
  content: "\e83b";
}
.icon-dolly:before {
  content: "\e83c";
}
.icon-plane:before {
  content: "\e83d";
}
.icon-plane-crossed:before {
  content: "\e83e";
}
.icon-helicopter:before {
  content: "\e83f";
}
.icon-traffic-lights:before {
  content: "\e840";
}
.icon-siren:before {
  content: "\e841";
}
.icon-road:before {
  content: "\e842";
}
.icon-engine:before {
  content: "\e843";
}
.icon-oil-pressure:before {
  content: "\e844";
}
.icon-coolant-temperature:before {
  content: "\e845";
}
.icon-car-battery:before {
  content: "\e846";
}
.icon-gas:before {
  content: "\e847";
}
.icon-gallon:before {
  content: "\e848";
}
.icon-transmission:before {
  content: "\e849";
}
.icon-car:before {
  content: "\e84a";
}
.icon-car-wash:before {
  content: "\e84b";
}
.icon-car-wash2:before {
  content: "\e84c";
}
.icon-bus:before {
  content: "\e84d";
}
.icon-bus2:before {
  content: "\e84e";
}
.icon-car2:before {
  content: "\e84f";
}
.icon-parking:before {
  content: "\e850";
}
.icon-car-lock:before {
  content: "\e851";
}
.icon-taxi:before {
  content: "\e852";
}
.icon-car-siren:before {
  content: "\e853";
}
.icon-car-wash3:before {
  content: "\e854";
}
.icon-car-wash4:before {
  content: "\e855";
}
.icon-ambulance:before {
  content: "\e856";
}
.icon-truck:before {
  content: "\e857";
}
.icon-trailer:before {
  content: "\e858";
}
.icon-scale-truck:before {
  content: "\e859";
}
.icon-train:before {
  content: "\e85a";
}
.icon-ship:before {
  content: "\e85b";
}
.icon-ship2:before {
  content: "\e85c";
}
.icon-anchor:before {
  content: "\e85d";
}
.icon-boat:before {
  content: "\e85e";
}
.icon-bicycle:before {
  content: "\e85f";
}
.icon-bicycle2:before {
  content: "\e860";
}
.icon-dumbbell:before {
  content: "\e861";
}
.icon-bench-press:before {
  content: "\e862";
}
.icon-swim:before {
  content: "\e863";
}
.icon-football:before {
  content: "\e864";
}
.icon-baseball-bat:before {
  content: "\e865";
}
.icon-baseball:before {
  content: "\e866";
}
.icon-tennis:before {
  content: "\e867";
}
.icon-tennis2:before {
  content: "\e868";
}
.icon-ping-pong:before {
  content: "\e869";
}
.icon-hockey:before {
  content: "\e86a";
}
.icon-8ball:before {
  content: "\e86b";
}
.icon-bowling:before {
  content: "\e86c";
}
.icon-bowling-pins:before {
  content: "\e86d";
}
.icon-golf:before {
  content: "\e86e";
}
.icon-golf2:before {
  content: "\e86f";
}
.icon-archery:before {
  content: "\e870";
}
.icon-slingshot:before {
  content: "\e871";
}
.icon-soccer:before {
  content: "\e872";
}
.icon-basketball:before {
  content: "\e873";
}
.icon-cube:before {
  content: "\e874";
}
.icon-3d-rotate:before {
  content: "\e875";
}
.icon-puzzle:before {
  content: "\e876";
}
.icon-glasses:before {
  content: "\e877";
}
.icon-glasses2:before {
  content: "\e878";
}
.icon-accessibility:before {
  content: "\e879";
}
.icon-wheelchair:before {
  content: "\e87a";
}
.icon-wall:before {
  content: "\e87b";
}
.icon-fence:before {
  content: "\e87c";
}
.icon-wall2:before {
  content: "\e87d";
}
.icon-icons:before {
  content: "\e87e";
}
.icon-resize-handle:before {
  content: "\e87f";
}
.icon-icons2:before {
  content: "\e880";
}
.icon-select:before {
  content: "\e881";
}
.icon-select2:before {
  content: "\e882";
}
.icon-site-map:before {
  content: "\e883";
}
.icon-earth:before {
  content: "\e884";
}
.icon-earth-lock:before {
  content: "\e885";
}
.icon-network:before {
  content: "\e886";
}
.icon-network-lock:before {
  content: "\e887";
}
.icon-planet:before {
  content: "\e888";
}
.icon-happy:before {
  content: "\e889";
}
.icon-smile:before {
  content: "\e88a";
}
.icon-grin:before {
  content: "\e88b";
}
.icon-tongue:before {
  content: "\e88c";
}
.icon-sad:before {
  content: "\e88d";
}
.icon-wink:before {
  content: "\e88e";
}
.icon-dream:before {
  content: "\e88f";
}
.icon-shocked:before {
  content: "\e890";
}
.icon-shocked2:before {
  content: "\e891";
}
.icon-tongue2:before {
  content: "\e892";
}
.icon-neutral:before {
  content: "\e893";
}
.icon-happy-grin:before {
  content: "\e894";
}
.icon-cool:before {
  content: "\e895";
}
.icon-mad:before {
  content: "\e896";
}
.icon-grin-evil:before {
  content: "\e897";
}
.icon-evil:before {
  content: "\e898";
}
.icon-wow:before {
  content: "\e899";
}
.icon-annoyed:before {
  content: "\e89a";
}
.icon-wondering:before {
  content: "\e89b";
}
.icon-confused:before {
  content: "\e89c";
}
.icon-zipped:before {
  content: "\e89d";
}
.icon-grumpy:before {
  content: "\e89e";
}
.icon-mustache:before {
  content: "\e89f";
}
.icon-tombstone-hipster:before {
  content: "\e8a0";
}
.icon-tombstone:before {
  content: "\e8a1";
}
.icon-ghost:before {
  content: "\e8a2";
}
.icon-ghost-hipster:before {
  content: "\e8a3";
}
.icon-halloween:before {
  content: "\e8a4";
}
.icon-christmas:before {
  content: "\e8a5";
}
.icon-easter-egg:before {
  content: "\e8a6";
}
.icon-mustache2:before {
  content: "\e8a7";
}
.icon-mustache-glasses:before {
  content: "\e8a8";
}
.icon-pipe:before {
  content: "\e8a9";
}
.icon-alarm:before {
  content: "\e8aa";
}
.icon-alarm-add:before {
  content: "\e8ab";
}
.icon-alarm-snooze:before {
  content: "\e8ac";
}
.icon-alarm-ringing:before {
  content: "\e8ad";
}
.icon-bullhorn:before {
  content: "\e8ae";
}
.icon-hearing:before {
  content: "\e8af";
}
.icon-volume-high:before {
  content: "\e8b0";
}
.icon-volume-medium:before {
  content: "\e8b1";
}
.icon-volume-low:before {
  content: "\e8b2";
}
.icon-volume:before {
  content: "\e8b3";
}
.icon-mute:before {
  content: "\e8b4";
}
.icon-lan:before {
  content: "\e8b5";
}
.icon-lan2:before {
  content: "\e8b6";
}
.icon-wifi:before {
  content: "\e8b7";
}
.icon-wifi-lock:before {
  content: "\e8b8";
}
.icon-wifi-blocked:before {
  content: "\e8b9";
}
.icon-wifi-mid:before {
  content: "\e8ba";
}
.icon-wifi-low:before {
  content: "\e8bb";
}
.icon-wifi-low2:before {
  content: "\e8bc";
}
.icon-wifi-alert:before {
  content: "\e8bd";
}
.icon-wifi-alert-mid:before {
  content: "\e8be";
}
.icon-wifi-alert-low:before {
  content: "\e8bf";
}
.icon-wifi-alert-low2:before {
  content: "\e8c0";
}
.icon-stream:before {
  content: "\e8c1";
}
.icon-stream-check:before {
  content: "\e8c2";
}
.icon-stream-error:before {
  content: "\e8c3";
}
.icon-stream-alert:before {
  content: "\e8c4";
}
.icon-communication:before {
  content: "\e8c5";
}
.icon-communication-crossed:before {
  content: "\e8c6";
}
.icon-broadcast:before {
  content: "\e8c7";
}
.icon-antenna:before {
  content: "\e8c8";
}
.icon-satellite:before {
  content: "\e8c9";
}
.icon-satellite2:before {
  content: "\e8ca";
}
.icon-mic:before {
  content: "\e8cb";
}
.icon-mic-mute:before {
  content: "\e8cc";
}
.icon-mic2:before {
  content: "\e8cd";
}
.icon-spotlights:before {
  content: "\e8ce";
}
.icon-hourglass:before {
  content: "\e8cf";
}
.icon-loading:before {
  content: "\e8d0";
}
.icon-loading2:before {
  content: "\e8d1";
}
.icon-loading3:before {
  content: "\e8d2";
}
.icon-refresh:before {
  content: "\e8d3";
}
.icon-refresh2:before {
  content: "\e8d4";
}
.icon-undo:before {
  content: "\e8d5";
}
.icon-redo:before {
  content: "\e8d6";
}
.icon-jump2:before {
  content: "\e8d7";
}
.icon-undo2:before {
  content: "\e8d8";
}
.icon-redo2:before {
  content: "\e8d9";
}
.icon-sync:before {
  content: "\e8da";
}
.icon-repeat-one2:before {
  content: "\e8db";
}
.icon-sync-crossed:before {
  content: "\e8dc";
}
.icon-sync2:before {
  content: "\e8dd";
}
.icon-repeat-one3:before {
  content: "\e8de";
}
.icon-sync-crossed2:before {
  content: "\e8df";
}
.icon-return:before {
  content: "\e8e0";
}
.icon-return2:before {
  content: "\e8e1";
}
.icon-refund:before {
  content: "\e8e2";
}
.icon-history:before {
  content: "\e8e3";
}
.icon-history2:before {
  content: "\e8e4";
}
.icon-self-timer:before {
  content: "\e8e5";
}
.icon-clock:before {
  content: "\e8e6";
}
.icon-clock2:before {
  content: "\e8e7";
}
.icon-clock3:before {
  content: "\e8e8";
}
.icon-watch:before {
  content: "\e8e9";
}
.icon-alarm2:before {
  content: "\e8ea";
}
.icon-alarm-add2:before {
  content: "\e8eb";
}
.icon-alarm-remove:before {
  content: "\e8ec";
}
.icon-alarm-check:before {
  content: "\e8ed";
}
.icon-alarm-error:before {
  content: "\e8ee";
}
.icon-timer:before {
  content: "\e8ef";
}
.icon-timer-crossed:before {
  content: "\e8f0";
}
.icon-timer2:before {
  content: "\e8f1";
}
.icon-timer-crossed2:before {
  content: "\e8f2";
}
.icon-download:before {
  content: "\e8f3";
}
.icon-upload:before {
  content: "\e8f4";
}
.icon-download2:before {
  content: "\e8f5";
}
.icon-upload2:before {
  content: "\e8f6";
}
.icon-enter-up:before {
  content: "\e8f7";
}
.icon-enter-down:before {
  content: "\e8f8";
}
.icon-enter-left:before {
  content: "\e8f9";
}
.icon-enter-right:before {
  content: "\e8fa";
}
.icon-exit-up:before {
  content: "\e8fb";
}
.icon-exit-down:before {
  content: "\e8fc";
}
.icon-exit-left:before {
  content: "\e8fd";
}
.icon-exit-right:before {
  content: "\e8fe";
}
.icon-enter-up2:before {
  content: "\e8ff";
}
.icon-enter-down2:before {
  content: "\e900";
}
.icon-enter-vertical:before {
  content: "\e901";
}
.icon-enter-left2:before {
  content: "\e902";
}
.icon-enter-right2:before {
  content: "\e903";
}
.icon-enter-horizontal:before {
  content: "\e904";
}
.icon-exit-up2:before {
  content: "\e905";
}
.icon-exit-down2:before {
  content: "\e906";
}
.icon-exit-left2:before {
  content: "\e907";
}
.icon-exit-right2:before {
  content: "\e908";
}
.icon-cli:before {
  content: "\e909";
}
.icon-bug:before {
  content: "\e90a";
}
.icon-code:before {
  content: "\e90b";
}
.icon-file-code:before {
  content: "\e90c";
}
.icon-file-image:before {
  content: "\e90d";
}
.icon-file-zip:before {
  content: "\e90e";
}
.icon-file-audio:before {
  content: "\e90f";
}
.icon-file-video:before {
  content: "\e910";
}
.icon-file-preview:before {
  content: "\e911";
}
.icon-file-charts:before {
  content: "\e912";
}
.icon-file-stats:before {
  content: "\e913";
}
.icon-file-spreadsheet:before {
  content: "\e914";
}
.icon-link:before {
  content: "\e915";
}
.icon-unlink:before {
  content: "\e916";
}
.icon-link2:before {
  content: "\e917";
}
.icon-unlink2:before {
  content: "\e918";
}
.icon-thumbs-up:before {
  content: "\e919";
}
.icon-thumbs-down:before {
  content: "\e91a";
}
.icon-thumbs-up2:before {
  content: "\e91b";
}
.icon-thumbs-down2:before {
  content: "\e91c";
}
.icon-thumbs-up3:before {
  content: "\e91d";
}
.icon-thumbs-down3:before {
  content: "\e91e";
}
.icon-share:before {
  content: "\e91f";
}
.icon-share2:before {
  content: "\e920";
}
.icon-share3:before {
  content: "\e921";
}
.icon-magnifier:before {
  content: "\e922";
}
.icon-file-search:before {
  content: "\e923";
}
.icon-find-replace:before {
  content: "\e924";
}
.icon-zoom-in:before {
  content: "\e925";
}
.icon-zoom-out:before {
  content: "\e926";
}
.icon-loupe:before {
  content: "\e927";
}
.icon-loupe-zoom-in:before {
  content: "\e928";
}
.icon-loupe-zoom-out:before {
  content: "\e929";
}
.icon-cross:before {
  content: "\e92a";
}
.icon-menu:before {
  content: "\e92b";
}
.icon-list:before {
  content: "\e92c";
}
.icon-list2:before {
  content: "\e92d";
}
.icon-list3:before {
  content: "\e92e";
}
.icon-menu2:before {
  content: "\e92f";
}
.icon-list4:before {
  content: "\e930";
}
.icon-menu3:before {
  content: "\e931";
}
.icon-exclamation:before {
  content: "\e932";
}
.icon-question:before {
  content: "\e933";
}
.icon-check:before {
  content: "\e934";
}
.icon-cross2:before {
  content: "\e935";
}
.icon-plus:before {
  content: "\e936";
}
.icon-minus:before {
  content: "\e937";
}
.icon-percent:before {
  content: "\e938";
}
.icon-chevron-up:before {
  content: "\e939";
}
.icon-chevron-down:before {
  content: "\e93a";
}
.icon-chevron-left:before {
  content: "\e93b";
}
.icon-chevron-right:before {
  content: "\e93c";
}
.icon-chevrons-expand-vertical:before {
  content: "\e93d";
}
.icon-chevrons-expand-horizontal:before {
  content: "\e93e";
}
.icon-chevrons-contract-vertical:before {
  content: "\e93f";
}
.icon-chevrons-contract-horizontal:before {
  content: "\e940";
}
.icon-arrow-up:before {
  content: "\e941";
}
.icon-arrow-down:before {
  content: "\e942";
}
.icon-arrow-left:before {
  content: "\e943";
}
.icon-arrow-right:before {
  content: "\e944";
}
.icon-arrow-up-right:before {
  content: "\e945";
}
.icon-arrows-merge:before {
  content: "\e946";
}
.icon-arrows-split:before {
  content: "\e947";
}
.icon-arrow-divert:before {
  content: "\e948";
}
.icon-arrow-return:before {
  content: "\e949";
}
.icon-expand:before {
  content: "\e94a";
}
.icon-contract:before {
  content: "\e94b";
}
.icon-expand2:before {
  content: "\e94c";
}
.icon-contract2:before {
  content: "\e94d";
}
.icon-move:before {
  content: "\e94e";
}
.icon-tab:before {
  content: "\e94f";
}
.icon-arrow-wave:before {
  content: "\e950";
}
.icon-expand3:before {
  content: "\e951";
}
.icon-expand4:before {
  content: "\e952";
}
.icon-contract3:before {
  content: "\e953";
}
.icon-notification:before {
  content: "\e954";
}
.icon-warning:before {
  content: "\e955";
}
.icon-notification-circle:before {
  content: "\e956";
}
.icon-question-circle:before {
  content: "\e957";
}
.icon-menu-circle:before {
  content: "\e958";
}
.icon-checkmark-circle:before {
  content: "\e959";
}
.icon-cross-circle:before {
  content: "\e95a";
}
.icon-plus-circle:before {
  content: "\e95b";
}
.icon-circle-minus:before {
  content: "\e95c";
}
.icon-percent-circle:before {
  content: "\e95d";
}
.icon-arrow-up-circle:before {
  content: "\e95e";
}
.icon-arrow-down-circle:before {
  content: "\e95f";
}
.icon-arrow-left-circle:before {
  content: "\e960";
}
.icon-arrow-right-circle:before {
  content: "\e961";
}
.icon-chevron-up-circle:before {
  content: "\e962";
}
.icon-chevron-down-circle:before {
  content: "\e963";
}
.icon-chevron-left-circle:before {
  content: "\e964";
}
.icon-chevron-right-circle:before {
  content: "\e965";
}
.icon-backward-circle:before {
  content: "\e966";
}
.icon-first-circle:before {
  content: "\e967";
}
.icon-previous-circle:before {
  content: "\e968";
}
.icon-stop-circle:before {
  content: "\e969";
}
.icon-play-circle:before {
  content: "\e96a";
}
.icon-pause-circle:before {
  content: "\e96b";
}
.icon-next-circle:before {
  content: "\e96c";
}
.icon-last-circle:before {
  content: "\e96d";
}
.icon-forward-circle:before {
  content: "\e96e";
}
.icon-eject-circle:before {
  content: "\e96f";
}
.icon-crop:before {
  content: "\e970";
}
.icon-frame-expand:before {
  content: "\e971";
}
.icon-frame-contract:before {
  content: "\e972";
}
.icon-focus:before {
  content: "\e973";
}
.icon-transform:before {
  content: "\e974";
}
.icon-grid:before {
  content: "\e975";
}
.icon-grid-crossed:before {
  content: "\e976";
}
.icon-layers:before {
  content: "\e977";
}
.icon-layers-crossed:before {
  content: "\e978";
}
.icon-toggle:before {
  content: "\e979";
}
.icon-rulers:before {
  content: "\e97a";
}
.icon-ruler:before {
  content: "\e97b";
}
.icon-funnel:before {
  content: "\e97c";
}
.icon-flip-horizontal:before {
  content: "\e97d";
}
.icon-flip-vertical:before {
  content: "\e97e";
}
.icon-flip-horizontal2:before {
  content: "\e97f";
}
.icon-flip-vertical2:before {
  content: "\e980";
}
.icon-angle:before {
  content: "\e981";
}
.icon-angle2:before {
  content: "\e982";
}
.icon-subtract:before {
  content: "\e983";
}
.icon-combine:before {
  content: "\e984";
}
.icon-intersect:before {
  content: "\e985";
}
.icon-exclude:before {
  content: "\e986";
}
.icon-align-center-vertical:before {
  content: "\e987";
}
.icon-align-right:before {
  content: "\e988";
}
.icon-align-bottom:before {
  content: "\e989";
}
.icon-align-left:before {
  content: "\e98a";
}
.icon-align-center-horizontal:before {
  content: "\e98b";
}
.icon-align-top:before {
  content: "\e98c";
}
.icon-square:before {
  content: "\e98d";
}
.icon-plus-square:before {
  content: "\e98e";
}
.icon-minus-square:before {
  content: "\e98f";
}
.icon-percent-square:before {
  content: "\e990";
}
.icon-arrow-up-square:before {
  content: "\e991";
}
.icon-arrow-down-square:before {
  content: "\e992";
}
.icon-arrow-left-square:before {
  content: "\e993";
}
.icon-arrow-right-square:before {
  content: "\e994";
}
.icon-chevron-up-square:before {
  content: "\e995";
}
.icon-chevron-down-square:before {
  content: "\e996";
}
.icon-chevron-left-square:before {
  content: "\e997";
}
.icon-chevron-right-square:before {
  content: "\e998";
}
.icon-check-square:before {
  content: "\e999";
}
.icon-cross-square:before {
  content: "\e99a";
}
.icon-menu-square:before {
  content: "\e99b";
}
.icon-prohibited:before {
  content: "\e99c";
}
.icon-circle:before {
  content: "\e99d";
}
.icon-radio-button:before {
  content: "\e99e";
}
.icon-ligature:before {
  content: "\e99f";
}
.icon-text-format:before {
  content: "\e9a0";
}
.icon-text-format-remove:before {
  content: "\e9a1";
}
.icon-text-size:before {
  content: "\e9a2";
}
.icon-bold:before {
  content: "\e9a3";
}
.icon-italic:before {
  content: "\e9a4";
}
.icon-underline:before {
  content: "\e9a5";
}
.icon-strikethrough:before {
  content: "\e9a6";
}
.icon-highlight:before {
  content: "\e9a7";
}
.icon-text-align-left:before {
  content: "\e9a8";
}
.icon-text-align-center:before {
  content: "\e9a9";
}
.icon-text-align-right:before {
  content: "\e9aa";
}
.icon-text-align-justify:before {
  content: "\e9ab";
}
.icon-line-spacing:before {
  content: "\e9ac";
}
.icon-indent-increase:before {
  content: "\e9ad";
}
.icon-indent-decrease:before {
  content: "\e9ae";
}
.icon-text-wrap:before {
  content: "\e9af";
}
.icon-pilcrow:before {
  content: "\e9b0";
}
.icon-direction-ltr:before {
  content: "\e9b1";
}
.icon-direction-rtl:before {
  content: "\e9b2";
}
.icon-page-break:before {
  content: "\e9b3";
}
.icon-page-break2:before {
  content: "\e9b4";
}
.icon-sort-alpha-asc:before {
  content: "\e9b5";
}
.icon-sort-alpha-desc:before {
  content: "\e9b6";
}
.icon-sort-numeric-asc:before {
  content: "\e9b7";
}
.icon-sort-numeric-desc:before {
  content: "\e9b8";
}
.icon-sort-amount-asc:before {
  content: "\e9b9";
}
.icon-sort-amount-desc:before {
  content: "\e9ba";
}
.icon-sort-time-asc:before {
  content: "\e9bb";
}
.icon-sort-time-desc:before {
  content: "\e9bc";
}
.icon-sigma:before {
  content: "\e9bd";
}
.icon-pencil-line:before {
  content: "\e9be";
}
.icon-hand:before {
  content: "\e9bf";
}
.icon-pointer-up:before {
  content: "\e9c0";
}
.icon-pointer-right:before {
  content: "\e9c1";
}
.icon-pointer-down:before {
  content: "\e9c2";
}
.icon-pointer-left:before {
  content: "\e9c3";
}
.icon-finger-tap:before {
  content: "\e9c4";
}
.icon-fingers-tap:before {
  content: "\e9c5";
}
.icon-reminder:before {
  content: "\e9c6";
}
.icon-fingers-crossed:before {
  content: "\e9c7";
}
.icon-fingers-victory:before {
  content: "\e9c8";
}
.icon-gesture-zoom:before {
  content: "\e9c9";
}
.icon-gesture-pinch:before {
  content: "\e9ca";
}
.icon-fingers-scroll-horizontal:before {
  content: "\e9cb";
}
.icon-fingers-scroll-vertical:before {
  content: "\e9cc";
}
.icon-fingers-scroll-left:before {
  content: "\e9cd";
}
.icon-fingers-scroll-right:before {
  content: "\e9ce";
}
.icon-hand2:before {
  content: "\e9cf";
}
.icon-pointer-up2:before {
  content: "\e9d0";
}
.icon-pointer-right2:before {
  content: "\e9d1";
}
.icon-pointer-down2:before {
  content: "\e9d2";
}
.icon-pointer-left2:before {
  content: "\e9d3";
}
.icon-finger-tap2:before {
  content: "\e9d4";
}
.icon-fingers-tap2:before {
  content: "\e9d5";
}
.icon-reminder2:before {
  content: "\e9d6";
}
.icon-gesture-zoom2:before {
  content: "\e9d7";
}
.icon-gesture-pinch2:before {
  content: "\e9d8";
}
.icon-fingers-scroll-horizontal2:before {
  content: "\e9d9";
}
.icon-fingers-scroll-vertical2:before {
  content: "\e9da";
}
.icon-fingers-scroll-left2:before {
  content: "\e9db";
}
.icon-fingers-scroll-right2:before {
  content: "\e9dc";
}
.icon-fingers-scroll-vertical3:before {
  content: "\e9dd";
}
.icon-border-style:before {
  content: "\e9de";
}
.icon-border-all:before {
  content: "\e9df";
}
.icon-border-outer:before {
  content: "\e9e0";
}
.icon-border-inner:before {
  content: "\e9e1";
}
.icon-border-top:before {
  content: "\e9e2";
}
.icon-border-horizontal:before {
  content: "\e9e3";
}
.icon-border-bottom:before {
  content: "\e9e4";
}
.icon-border-left:before {
  content: "\e9e5";
}
.icon-border-vertical:before {
  content: "\e9e6";
}
.icon-border-right:before {
  content: "\e9e7";
}
.icon-border-none:before {
  content: "\e9e8";
}
.icon-ellipsis:before {
  content: "\e9e9";
}
.icon-uni21:before {
  content: "\21";
}
.icon-uni22:before {
  content: "\22";
}
.icon-uni23:before {
  content: "\23";
}
.icon-uni24:before {
  content: "\24";
}
.icon-uni25:before {
  content: "\25";
}
.icon-uni26:before {
  content: "\26";
}
.icon-uni27:before {
  content: "\27";
}
.icon-uni28:before {
  content: "\28";
}
.icon-uni29:before {
  content: "\29";
}
.icon-uni2a:before {
  content: "\2a";
}
.icon-uni2b:before {
  content: "\2b";
}
.icon-uni2c:before {
  content: "\2c";
}
.icon-uni2d:before {
  content: "\2d";
}
.icon-uni2e:before {
  content: "\2e";
}
.icon-uni2f:before {
  content: "\2f";
}
.icon-uni30:before {
  content: "\30";
}
.icon-uni31:before {
  content: "\31";
}
.icon-uni32:before {
  content: "\32";
}
.icon-uni33:before {
  content: "\33";
}
.icon-uni34:before {
  content: "\34";
}
.icon-uni35:before {
  content: "\35";
}
.icon-uni36:before {
  content: "\36";
}
.icon-uni37:before {
  content: "\37";
}
.icon-uni38:before {
  content: "\38";
}
.icon-uni39:before {
  content: "\39";
}
.icon-uni3a:before {
  content: "\3a";
}
.icon-uni3b:before {
  content: "\3b";
}
.icon-uni3c:before {
  content: "\3c";
}
.icon-uni3d:before {
  content: "\3d";
}
.icon-uni3e:before {
  content: "\3e";
}
.icon-uni3f:before {
  content: "\3f";
}
.icon-uni40:before {
  content: "\40";
}
.icon-uni41:before {
  content: "\41";
}
.icon-uni42:before {
  content: "\42";
}
.icon-uni43:before {
  content: "\43";
}
.icon-uni44:before {
  content: "\44";
}
.icon-uni45:before {
  content: "\45";
}
.icon-uni46:before {
  content: "\46";
}
.icon-uni47:before {
  content: "\47";
}
.icon-uni48:before {
  content: "\48";
}
.icon-uni49:before {
  content: "\49";
}
.icon-uni4a:before {
  content: "\4a";
}
.icon-uni4b:before {
  content: "\4b";
}
.icon-uni4c:before {
  content: "\4c";
}
.icon-uni4d:before {
  content: "\4d";
}
.icon-uni4e:before {
  content: "\4e";
}
.icon-uni4f:before {
  content: "\4f";
}
.icon-uni50:before {
  content: "\50";
}
.icon-uni51:before {
  content: "\51";
}
.icon-uni52:before {
  content: "\52";
}
.icon-uni53:before {
  content: "\53";
}
.icon-uni54:before {
  content: "\54";
}
.icon-uni55:before {
  content: "\55";
}
.icon-uni56:before {
  content: "\56";
}
.icon-uni57:before {
  content: "\57";
}
.icon-uni58:before {
  content: "\58";
}
.icon-uni59:before {
  content: "\59";
}
.icon-uni5a:before {
  content: "\5a";
}
.icon-uni5b:before {
  content: "\5b";
}
.icon-uni5c:before {
  content: "\5c";
}
.icon-uni5d:before {
  content: "\5d";
}
.icon-uni5e:before {
  content: "\5e";
}
.icon-uni5f:before {
  content: "\5f";
}
.icon-uni60:before {
  content: "\60";
}
.icon-uni61:before {
  content: "\61";
}
.icon-uni62:before {
  content: "\62";
}
.icon-uni63:before {
  content: "\63";
}
.icon-uni64:before {
  content: "\64";
}
.icon-uni65:before {
  content: "\65";
}
.icon-uni66:before {
  content: "\66";
}
.icon-uni67:before {
  content: "\67";
}
.icon-uni68:before {
  content: "\68";
}
.icon-uni69:before {
  content: "\69";
}
.icon-uni6a:before {
  content: "\6a";
}
.icon-uni6b:before {
  content: "\6b";
}
.icon-uni6c:before {
  content: "\6c";
}
.icon-uni6d:before {
  content: "\6d";
}
.icon-uni6e:before {
  content: "\6e";
}
.icon-uni6f:before {
  content: "\6f";
}
.icon-uni70:before {
  content: "\70";
}
.icon-uni71:before {
  content: "\71";
}
.icon-uni72:before {
  content: "\72";
}
.icon-uni73:before {
  content: "\73";
}
.icon-uni74:before {
  content: "\74";
}
.icon-uni75:before {
  content: "\75";
}
.icon-uni76:before {
  content: "\76";
}
.icon-uni77:before {
  content: "\77";
}
.icon-uni78:before {
  content: "\78";
}
.icon-uni79:before {
  content: "\79";
}
.icon-uni7a:before {
  content: "\7a";
}
.icon-uni7b:before {
  content: "\7b";
}
.icon-uni7c:before {
  content: "\7c";
}
.icon-uni7d:before {
  content: "\7d";
}
.icon-uni7e:before {
  content: "\7e";
}
.icon-copyright:before {
  content: "\a9";
}
.bright-color {
  color: #939393;
}
.split-line {
  border-bottom: 1px solid #CFCFCF;
  border-top: 1px solid #FFFFFF;
  height: 0;
  margin: 20px 0;
  opacity: 0.4;
  width: 100%;
}
.accordion-group {
  border: none;
}
.guest-welcome-page-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #000;
}
.guest-welcome-page {
  position: relative;
  z-index: 5;
}
.guest-welcome-page input[type=text],
.guest-welcome-page input[type=password] {
  border-radius: 3px 3px 3px 3px;
  box-shadow: 0 0 0;
  font-size: 15px;
  height: 30px;
  width: 212px;
  padding-left: 7px;
  border-color: #D6D6D6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.guest-welcome-page input[type=text]:focus,
.guest-welcome-page input[type=password]:focus {
  border-color: #44B2FF;
}
.guest-welcome-page .error-bubble {
  background-color: #FFF4F4;
  border: 1px solid #D58A8A;
  border-radius: 3px 3px 3px 3px;
  display: block;
  padding: 0 12px;
  position: absolute;
  right: 235px;
  white-space: nowrap;
  top: 0;
}
.guest-welcome-page .error-bubble .error-message {
  color: #D58A8A;
  font-size: 13px;
  line-height: 36px;
}
.guest-welcome-page .error-bubble .error-bubble-arrow-border {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #D58A8A;
  border-style: solid;
  border-width: 6px;
  display: block;
  height: 0;
  position: absolute;
  right: -13px;
  top: 12px;
  width: 0;
}
.guest-welcome-page .error-bubble .error-bubble-arrow {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #FFF4F4;
  border-style: solid;
  border-width: 6px;
  height: 0;
  position: absolute;
  right: -11px;
  top: 12px;
  width: 0;
}
.form-section-container {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: "Open Sans";
  font-size: 15px;
  font-weight: normal;
  margin: 50px auto;
  overflow: auto;
  padding: 20px 20px 40px;
  text-align: center;
  width: 920px;
  min-height: 500px;
}
.form-section-container a {
  font-size: 15px;
  color: #1E89DA;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-section-container a:hover {
  color: #2B98E6;
}
.form-section-container img {
  margin: 0px auto;
  width: 39px;
}
.form-section-container .messaging-container {
  float: left;
  width: 620px;
}
.form-section-container .messaging-container img {
  float: left;
  margin-left: 170px;
  margin-top: 30px;
  width: 305px;
}
.form-section-container .messaging-container .messaging-text {
  float: left;
  font-weight: lighter;
  margin-left: 35px;
  margin-top: 10px;
  width: 560px;
}
.form-section-container .messaging-container .messaging-text h1 {
  color: #1E89DA;
  font-size: 30px;
  font-weight: lighter;
  line-height: 35px;
  margin-bottom: 20px;
  text-align: left;
}
.form-section-container .messaging-container .messaging-text h4 {
  color: #000000;
  font-size: 16px;
  font-weight: inherit;
  line-height: 22px;
  text-align: left;
}
.form-section-container .form-container {
  float: right;
  width: 300px;
}
.form-section-container .form-container .signup-container {
  margin-bottom: 10px;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-title {
  font-size: 13px;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-footer {
  margin-bottom: 10px;
  font-size: 13px;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container {
  height: 32px;
  margin: 10px auto;
  width: 225px;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container a {
  border: 1px solid;
  color: #FFFFFF;
  display: block;
  float: left;
  font-size: 17px;
  font-weight: 400;
  height: 30px;
  line-height: 28px;
  margin-right: 4px;
  text-align: center;
  width: 70px;
  border-radius: 3px 3px 3px 3px;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container a.fbsignup {
  background-color: #335795;
  border-color: #335795;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container a.fbsignup:hover {
  background-color: #3D62B3;
  border-color: #3D62B3;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container a.insignup {
  background-color: #0078A8;
  border-color: #0078A8;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container a.insignup:hover {
  background-color: #006CAE;
  border-color: #006CAE;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container a.gsignup {
  background-color: #C21A01;
  border-color: #C21A01;
  margin-right: 0;
  line-height: 24px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-section-container .form-container .signup-container .signup-social-container .signup-social-button-container a.gsignup:hover {
  background-color: #CF2006;
  border-color: #CF2006;
}
.form-section-container .form-container .signup-container #register-partial-container {
  margin: auto;
  width: 225px;
}
.form-section-container .form-container .signup-container #register-partial-container #register-partial {
  overflow: hidden;
}
.form-section-container .form-container .signup-container #register-partial-container #register-partial > div {
  position: relative;
}
.form-section-container .form-container .signup-container #register-partial-container #register-footer #tos-agree-field {
  text-align: left;
}
.form-section-container .form-container .signup-container #register-partial-container #register-footer #tos-agree-field a {
  font-size: 13px;
}
.form-section-container .form-container .signup-container #register-partial-container #register-footer label {
  float: left;
  margin-bottom: 10px;
  margin-top: 5px;
}
.form-section-container .form-container .signup-container #register-partial-container #register-footer label input[type=checkbox] {
  float: left;
  margin-right: 10px;
}
.form-section-container .form-container .signup-container #register-partial-container input[type=submit] {
  background: none repeat scroll 0 0 #1E89DA;
  border: medium none;
  border-radius: 3px 3px 3px 3px;
  box-shadow: 0 0 0;
  color: #FFFFFF;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 0;
  height: 40px;
  width: 225px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-section-container .form-container .signup-container #register-partial-container input[type=submit]:hover {
  background: none repeat scroll 0 0 #2B98E6;
}
.form-section-container .form-container .signup-container .signup-button {
  background: none repeat scroll 0 0 #1E89DA;
  color: #FFFFFF;
  display: inline-block;
  font-size: 15px;
  line-height: 40px;
  width: 225px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-section-container .form-container .signup-container .signup-button:hover {
  background: none repeat scroll 0 0 #2B98E6;
}
.form-section-container .form-container .signin-container .signin-button {
  font-size: 15px;
  color: #1E89DA;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.form-section-container .form-container .signin-container .signin-button:hover {
  color: #2B98E6;
}
.guest-welcome-page .arrow-up {
  border-bottom: 10px solid #D3D3D3;
  border-left: 10px solid rgba(0, 0, 0, 0);
  border-right: 10px solid rgba(0, 0, 0, 0);
  height: 0;
  left: 290px;
  position: absolute;
  top: -10px;
  width: 0;
}
.guest-welcome-page .arrow-down {
  display: none;
}
.guest-welcome-page.login-page #signin-partial-container {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: none;
  box-shadow: 0 0 0;
}
.guest-welcome-page.login-page .form-section-container {
  width: 500px;
}
.guest-welcome-page.login-page #signin-partial-container {
  top: -510px !important;
}
.guest-welcome-page.expand .arrow-up {
  display: none;
}
.guest-welcome-page.expand .arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #D3D3D3;
  left: 290px;
  position: absolute;
  bottom: -10px;
  display: block;
}
.guest-welcome-page.expand #signin-partial-container {
  text-align: center;
  top: -570px;
}
.modal-bg {
  background-color: #FFFFFF;
  height: 100%;
  opacity: 0.6;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.signin-social-container .signin-social-title {
  font-size: 13px;
}
.signin-social-container .signin-social-footer {
  margin-bottom: 10px;
  font-size: 13px;
}
.signin-social-container .signin-social-button-container {
  height: 32px;
  margin: 10px auto;
  width: 225px;
}
.signin-social-container .signin-social-button-container a {
  border: 1px solid;
  color: #FFFFFF;
  display: block;
  float: left;
  font-size: 17px;
  font-weight: 400;
  height: 30px;
  line-height: 28px;
  margin-right: 4px;
  text-align: center;
  width: 70px;
  border-radius: 3px 3px 3px 3px;
}
.signin-social-container .signin-social-button-container a.fbsignin {
  background-color: #335795;
  border-color: #335795;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signin-social-container .signin-social-button-container a.fbsignin:hover {
  background-color: #3D62B3;
  border-color: #3D62B3;
}
.signin-social-container .signin-social-button-container a.insignin {
  background-color: #0078A8;
  border-color: #0078A8;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signin-social-container .signin-social-button-container a.insignin:hover {
  background-color: #006CAE;
  border-color: #006CAE;
}
.signin-social-container .signin-social-button-container a.gsignin {
  background-color: #C21A01;
  border-color: #C21A01;
  margin-right: 0;
  line-height: 24px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signin-social-container .signin-social-button-container a.gsignin:hover {
  background-color: #CF2006;
  border-color: #CF2006;
}
.login-page-container #signin-partial-container #signin-partial {
  height: 225px;
  margin: 0 auto;
  width: 225px;
}
.login-page-container #signin-partial-container #signin-partial > div {
  position: relative;
}
.login-page-container #signin-partial-container #signin-partial > div .error-bubble {
  margin-bottom: 10px;
  margin-left: -20px;
  position: static;
  width: 240px;
}
.register-page-container #signin-partial-container #signin-partial {
  height: 225px;
  margin: 0 auto;
  width: 225px;
}
.register-page-container #signin-partial-container #signin-partial > div {
  position: relative;
}
#signin-partial-container .register-title {
  margin-top: 20px;
}
#signin-partial-container #signin-footer #tos-agree-field {
  text-align: left;
}
#signin-partial-container #signin-footer #tos-agree-field a {
  font-size: 13px;
}
#signin-partial-container #signin-footer input[type=checkbox] {
  float: left;
  margin-right: 5px;
}
#signin-partial-container #signin-footer label {
  float: left;
  margin-bottom: 0;
  margin-top: -1px;
}
#signin-partial-container input[type=submit] {
  background: none repeat scroll 0 0 #1E89DA;
  border: medium none;
  border-radius: 3px 3px 3px 3px;
  box-shadow: 0 0 0;
  color: #FFFFFF;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 0;
  height: 40px;
  width: 225px;
}
#signin-partial-container input[type=submit]:hover {
  background: none repeat scroll 0 0 #2B98E6;
}
.signin-button-modal {
  background: none repeat scroll 0 0 #1E89DA;
  color: #FFFFFF;
  display: inline-block;
  font-size: 15px;
  line-height: 40px;
  width: 225px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.signin-button-modal:hover {
  background: none repeat scroll 0 0 #2B98E6;
}
#signin-partial-container {
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #CECECE;
  border-radius: 3px 3px 3px 3px;
  box-shadow: 0 0 6px #DEDEDE;
  height: 270px;
  margin: 0 auto;
  padding: 15px 0;
  position: relative;
  top: -90px;
  width: 320px;
  z-index: 20;
}
#signin-partial-container #signin-partial .signin-col {
  float: left;
  padding-left: 37px;
  padding-right: 37px;
  width: 225px;
  border-left: 1px solid #EDEDED;
}
#signin-partial-container #signin-partial .signin-col:first-child {
  border-left: none;
}
#signin-partial-container #signin-partial .signin-col #login-footer label {
  text-align: left;
  float: left;
}
#signin-partial-container #signin-partial .signin-col #login-footer label input[type=checkbox] {
  float: left;
  margin-right: 10px;
}
#signin-partial-container #signin-partial .signin-col #login-footer input[type=submit] {
  background: none repeat scroll 0 0 #1E89DA;
  border: medium none;
  border-radius: 3px 3px 3px 3px;
  box-shadow: 0 0 0;
  color: #FFFFFF;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 0;
  height: 40px;
  width: 225px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#signin-partial-container #signin-partial .signin-col #login-footer input[type=submit]:hover {
  background: none repeat scroll 0 0 #2B98E6;
}
#signin-partial-container #signin-partial .signin-col #social-login a {
  border: 1px solid;
  color: #FFFFFF;
  display: block;
  float: left;
  font-size: 15px;
  font-weight: 400;
  height: 40px;
  line-height: 38px;
  margin-bottom: 19px;
  text-align: center;
  width: 223px;
  background-color: #CDCDCD;
  border-color: #CDCDCD;
  border-radius: 3px 3px 3px 3px;
}
#signin-partial-container #signin-partial .signin-col #social-login a:last-child {
  margin-bottom: 0px;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.fbsignin {
  background-color: #335795;
  border-color: #335795;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.fbsignin:hover {
  background-color: #3D62B3;
  border-color: #3D62B3;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.twsignin {
  background-color: #1B84B5;
  border-color: #1B84B5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.twsignin:hover {
  background-color: #2396cb;
  border-color: #2396cb;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.insignin {
  background-color: #006CAE;
  border-color: #006CAE;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.insignin:hover {
  background-color: #0078A8;
  border-color: #0078A8;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.gsignin {
  background-color: #C21A01;
  border-color: #C21A01;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#signin-partial-container #signin-partial .signin-col.right-col #social-login a.gsignin:hover {
  background-color: #CF2006;
  border-color: #CF2006;
}
.prospect-join-page {
  text-align: center;
  height: 100%;
  background: #f7f7f7;
  overflow: auto;
}
.prospect-join-page .container {
  max-width: 500px;
}
.prospect-join-page .container .logo {
  max-width: 100px;
  margin: 25px auto 10px;
}
.prospect-join-page .container form {
  max-width: 250px;
  margin: 25px auto!important;
}
.prospect-join-page .container form .form-control {
  font-size: 16px!important;
}
.prospect-join-page .container p.text {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
  text-align: left;
  font-size: 13px;
}
.prospect-join-page .container .error-bubble {
  text-align: left;
  color: #a94442;
  font-size: 12px;
  margin: 5px;
}
.prospect-join-page .container .prospect-login-form h4.desc {
  width: 250px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.prospect-bot-date {
  position: relative;
  text-align: center;
  color: #838383;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  padding: 5px;
  width: 100%;
  margin: 5px 0;
}
.prospect-bot-date:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
  top: 12px;
  left: 0;
}
.prospect-bot-date:after {
  content: attr(title);
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  padding: 10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.prospect-bot-page {
  padding: 10px 25px 0;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}
.prospect-bot-page .prospect-bot-messages {
  margin-left: 63px;
  margin-right: 60px;
}
.prospect-bot-page .prospect-bot-messages .prospect-bot-name {
  line-height: 20px;
  color: #009688;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 3px;
  text-decoration: none;
}
.prospect-bot-page .prospect-bot-messages .prospect-bot-messages-list {
  line-height: 1.5;
}
.prospect-bot-page .prospect-bot-messages .prospect-bot-messages-list li {
  padding: 5px 0;
}
.prospect-bot-page .prospect-bot-messages .prospect-bot-messages-list li.prospect-join-form .form-control,
.prospect-bot-page .prospect-bot-messages .prospect-bot-messages-list li.prospect-login-form .form-control {
  display: inline-block;
  width: 250px;
}
.prospect-bot-page .prospect-bot-messages .prospect-bot-messages-list li.prospect-login-form {
  display: none;
}
.prospect-bot-page.prospect-login-mode .prospect-bot-messages .prospect-bot-messages-list li.prospect-join-form .btn {
  display: none;
}
.prospect-bot-page.prospect-login-mode .prospect-bot-messages .prospect-bot-messages-list li.prospect-login-form {
  display: block;
}
.centercenter {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.topcenter {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: center;
  justify-content: center;
}
#app_version {
  position: fixed;
  bottom: 7px;
  text-align: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
}
#login-page {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  background-color: #455a64;
}
#login-page .logincontainer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 500px;
  width: 500px;
}
#login-page .logincontainer > div.loginbrand {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
}
#login-page .logincontainer > div.loginbrand .brandcontainer {
  width: 160px;
  height: 64px;
  background-image: url('../../../assets/img/applogo.png');
  background-size: cover;
}
#login-page .logincontainer > div.loginbrand .apptitle {
  font-size: 32px;
  font-weight: bold;
  color: #FFF;
}
#login-page .logincontainer > div.loginmessage {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  -webkit-transition: visibility 1s;
  transition: visibility 1s;
}
#login-page .logincontainer > div.loginmessage .messagecontainer i {
  font-size: 24px;
  line-height: 44px;
  width: 28px;
  color: #ffffff;
  float: left;
}
#login-page .logincontainer > div.loginmessage .messagecontainer span {
  font-size: 14px;
  color: #ffffff;
  line-height: 44px;
  float: left;
}
#login-page .logincontainer > div.appform {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex: 4 0 0;
  flex: 4 0 0;
}
#login-page .logincontainer > div.appform .formcontainer {
  width: 50%;
  min-height: 100px;
}
#login-page .logincontainer > div.appform .formcontainer .loginform label {
  display: block;
  margin: 0;
}
#login-page .logincontainer > div.appform .formcontainer .loginform label i {
  position: absolute;
  font-size: 24px;
  line-height: 44px;
  width: 44px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
#login-page .logincontainer > div.appform .formcontainer .loginform label input {
  width: 100%;
  padding-left: 44px;
}
#login-page .logincontainer > div.appform .formcontainer .loginform label select {
  margin-left: 44px;
  width: 206px;
}
#login-page .logincontainer > div.appform .formcontainer .loginform label input,
#login-page .logincontainer > div.appform .formcontainer .loginform label select {
  border: none;
  box-sizing: border-box;
  line-height: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0);
  color: #FFF;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: border-bottom 0.5s;
  transition: border-bottom 0.5s;
}
#login-page .logincontainer > div.appform .formcontainer .loginform label input:focus,
#login-page .logincontainer > div.appform .formcontainer .loginform label select:focus {
  outline: none !important;
  box-shadow: none;
  border-bottom: 1px solid #ff9800;
}
#login-page .logincontainer > div.appform .formcontainer .loginform label input option,
#login-page .logincontainer > div.appform .formcontainer .loginform label select option {
  color: #455a64;
}
#login-page .logincontainer > div.appform .formcontainer .loginform label:first-child input,
#login-page .logincontainer > div.appform .formcontainer .loginform label:first-child select {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#login-page .logincontainer > div.appform .formcontainer .loginform button {
  margin-top: 44px;
  width: 100%;
  border: none;
  height: 44px;
  line-height: 44px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  background-color: #f77d33;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
#login-page .logincontainer > div.appform .formcontainer .loginform button:hover {
  background-color: #f18200;
}
#login-page .logincontainer > div.appform .formcontainer .loginform button:focus {
  outline: none !important;
  box-shadow: none;
  background-color: #f18200;
}
#login-page .logincontainer > div.appform .formcontainer .loginform .login-form-step2 {
  display: none;
}
#login-page .logincontainer > div.appform .formcontainer .loginform .login-form-step2 > p {
  color: rgba(255, 255, 255, 0.83);
  margin-bottom: 5px;
}
#login-page .logincontainer > div.appform .formcontainer .loginform .login-form-step2 .back-to-step1 {
  color: #fff;
  float: right;
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.83);
}
#login-page .logincontainer > div.appform .formcontainer .loginform.login-step2 .login-form-step1 {
  display: none;
}
#login-page .logincontainer > div.appform .formcontainer .loginform.login-step2 .login-form-step2 {
  display: block;
}
#login-page .logincontainer > div.loginactions {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
}
#login-page .logincontainer > div.loginactions .actionscontainer {
  width: 50%;
  height: 30px;
}
#login-page .logincontainer > div.loginactions .actionscontainer a {
  text-decoration: none;
  line-height: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: color .7s;
  transition: color .7s;
}
#login-page .logincontainer > div.loginactions .actionscontainer a:first-child {
  float: left;
}
#login-page .logincontainer > div.loginactions .actionscontainer a:last-child {
  float: right;
}
#login-page .logincontainer > div.loginactions .actionscontainer a:hover {
  color: #ffffff;
}
#login-page .logincontainer > div.loginactions .actionscontainer a:focus {
  outline: none !important;
  box-shadow: none;
  color: #ffffff;
}
.btn-tip {
  position: absolute!important;
  width: 40px!important;
  height: 40px!important;
  z-index: 1000;
  cursor: pointer;
}
.btn-tip:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  filter: alpha(opacity=60);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #aed7f5;
  border: 3px solid #aed7f5;
  -webkit-box-shadow: 0px 0px 2px 1px rgba(174, 215, 245, 0.2);
  box-shadow: 0px 0px 2px 1px rgba(174, 215, 245, 0.2);
  animation: taping 0.8s linear infinite;
}
.btn-tip:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #3c8ec8;
}
@keyframes taping {
  0% {
    width: 80%;
    height: 80%;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 80%;
    height: 80%;
  }
}
@-webkit-keyframes taping {
  0% {
    width: 80%;
    height: 80%;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 80%;
    height: 80%;
  }
}
.popover-tip {
  max-width: 465px;
  min-width: 400px;
  border-radius: 4px;
}
.popover-tip .popover-title {
  padding: 25px 20px 15px;
  background-color: #fff;
  border: none;
  font-size: 22px;
  color: #2B2B2B;
}
.popover-tip .popover-title strong {
  font-weight: 300;
}
.popover-tip .popover-content {
  padding: 10px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #6F6F6F;
  font-family: 'Lato', sans-serif;
  font-style: italic;
}
.popover-tip .popover-content p .btn-success {
  float: right;
  border-radius: 2px;
  padding: 5px 20px;
  outline: none;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}
.notif-box {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 56px;
  left: 0px;
  background-color: #1F1F1F;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.25);
}
.notif-box .header {
  padding: 15px 30px 15px 10px;
  position: relative;
}
.notif-box .header span.icon {
  background-image: url('../../../assets/img/mobile-icon.png');
  background-size: contain;
  width: 13px;
  height: 28px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 20px;
}
.notif-box .header h3 {
  font-size: 10px;
  color: #fff;
  margin: 0 0 0 35px;
  font-weight: 400;
  line-height: 1.6;
  display: inline-block;
}
.notif-box .header button.close {
  position: absolute;
  font-size: 16px;
  color: #fff;
  top: 10px;
  right: 10px;
  text-shaddow: none;
}
.notif-box .content {
  padding: 0 10px 15px;
}
.notif-box .content p {
  font-size: 11px;
  color: #fff;
  margin: 0;
}
.notif-box .content a.btn-link {
  padding: 5px 10px;
  width: 95px;
  border: 1px solid #fff;
  color: #fff;
  background-color: #1f1f1f;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.notif-box .content a.btn-link:first-child {
  margin-right: 10px;
}
.notif-box .content a.btn-link:hover {
  background-color: #666;
}
#sidebar {
  background: #333;
}
#sidebar .sidebar-body {
  position: absolute;
  bottom: 0;
  top: 0;
  left: -225px;
  height: 100%;
  width: 225px;
  background: #333;
}
#sidebar .sidebar-body > div {
  height: 100%;
  display: inline-block;
  width: 100%;
}
#sidebar .sidebar-body > div > div {
  height: auto;
  display: inline-block;
  width: 100%;
  position: relative;
}
#sidebar .sidebar-body .search-holder {
  height: 60px;
  position: relative;
  font-size: 0;
}
#sidebar .sidebar-body .search-holder .share-search,
#sidebar .sidebar-body .search-holder .chat-search,
#sidebar .sidebar-body .search-holder .livechat-search {
  width: 100%;
  padding: 0px 5px 0px 26px;
  height: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  outline: none;
  box-shadow: none;
  color: #9e9e9e;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 300;
  vertical-align: middle;
}
#sidebar .sidebar-body .search-holder .share-search + i.icon,
#sidebar .sidebar-body .search-holder .chat-search + i.icon,
#sidebar .sidebar-body .search-holder .livechat-search + i.icon {
  font-size: 14px;
  position: absolute;
  left: 5px;
  top: 17px;
  line-height: 26px;
  color: #7a7a7a;
}
#sidebar .sidebar-body .search-holder .share-search:focus,
#sidebar .sidebar-body .search-holder .chat-search:focus,
#sidebar .sidebar-body .search-holder .livechat-search:focus {
  color: #FFF;
}
#sidebar .sidebar-body .search-holder .reset {
  position: absolute;
  top: 22px;
  right: 7px;
  color: #7a7a7a;
  z-index: 2;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}
#sidebar .sidebar-body .search-holder .reset:before {
  content: "\f057";
}
#sidebar .sidebar-body .search-holder.with-tags .share-search {
  width: 182px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#sidebar .sidebar-body .search-holder.with-tags .share-tags {
  height: 30px;
}
#sidebar .sidebar-body .search-holder.with-tags .share-tags .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #9e9e9e;
  border: none;
  height: 30px;
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  -webkit-box-shadow: none!important;
  box-shadow: none!important;
}
#sidebar .sidebar-body .search-holder.with-tags .share-tags .btn:hover {
  color: #FFF;
}
#sidebar .sidebar-body .search-holder.with-tags .share-tags .dropdown-menu span.custom-bg {
  display: inline-block;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle;
}
#sidebar .sidebar-body .search-holder.with-tags .share-tags .dropdown-menu .fa-archive {
  color: #adadad;
}
#sidebar .sidebar-body .search-holder.with-tags .reset {
  right: 35px;
}
#sidebar .sidebar-body .filter-holder {
  float: left;
  width: 40px;
  height: 35px;
  margin-left: 5px;
}
#sidebar .sidebar-body .filter-holder .btn-filter {
  margin-top: 5px;
  margin-bottom: 5px;
  outline: none;
  box-shadow: none;
  color: #9e9e9e;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 300;
  height: 30px;
  width: 40px;
}
#sidebar .sidebar-body .filter-holder .btn-filter .caret {
  border-top: 4px solid #9e9e9e;
}
#sidebar .sidebar-body .filter-holder .dropdown-menu li {
  position: relative;
}
#sidebar .sidebar-body .filter-holder .dropdown-menu li i.icon {
  position: absolute;
  top: 5px;
  left: 10px;
}
#sidebar .sidebar-body .filter-holder .dropdown-menu li span {
  padding-left: 15px;
}
#sidebar .sidebar-body ul.body-share-ul,
#sidebar .sidebar-body ul.body-chat-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sidebar .sidebar-body .share-holder-side {
  padding: 0 5px;
}
#sidebar .sidebar-body .share-holder-side .new-share {
  display: block;
  border: 1px solid #F77D33;
  border-radius: 0px;
  padding: 10px 0 5px;
  text-align: center;
  margin-top: 5px;
  background-color: #F77D33;
  color: #fff;
  width: 100%;
  height: 40px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
  cursor: pointer;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}
#sidebar .sidebar-body .share-holder-side .new-share:hover {
  border: 1px solid #FF741F;
  background-color: #FF741F;
}
#sidebar .sidebar-body .share-holder-side .new-share i.icon {
  margin-right: 10px;
}
#sidebar .sidebar-body .share-holder-side .new-share + .body-share {
  top: 115px;
}
#sidebar .sidebar-body .share-holder-side .badge {
  top: 7px;
  margin-right: 10px;
  right: 0;
}
#sidebar .sidebar-body .share-holder-side .circle-body {
  width: 5px;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border-radius: 0px;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
}
#sidebar .sidebar-body .share-holder-side .body-share {
  overflow: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0;
  top: 60px;
}
#sidebar .sidebar-body .share-holder-side .body-share li {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #3c3c3c;
  height: 50px;
}
#sidebar .sidebar-body .share-holder-side .body-share li:hover {
  border-radius: 0px;
}
#sidebar .sidebar-body .share-holder-side .body-share li:hover .circle-body {
  background: rgba(247, 125, 51, 0.2);
}
#sidebar .sidebar-body .share-holder-side .body-share li.active {
  border-radius: 0px;
  background-color: #252525;
}
#sidebar .sidebar-body .share-holder-side .body-share li.active .circle-body {
  background: #F77D33;
}
#sidebar .sidebar-body .share-holder-side .body-share li.archived-share {
  opacity: 0.6;
}
#sidebar .sidebar-body .share-holder-side .body-share li.archived-share:hover .circle-body {
  background: rgba(153, 152, 146, 0.2);
}
#sidebar .sidebar-body .share-holder-side .body-share li.archived-share.active {
  opacity: 1;
}
#sidebar .sidebar-body .share-holder-side .body-share li.archived-share.active .circle-body {
  background: #999892;
}
#sidebar .sidebar-body .share-holder-side .body-share li.highlighted-share {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  animation: shareBgBlink 3s infinite;
  -moz-animation: shareBgBlink 3s infinite;
  -webkit-animation: shareBgBlink 3s infinite;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info {
  width: 100%;
  height: 100%;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis {
  color: #444;
  width: 100%;
  height: 100%;
  display: block;
  float: left;
  line-height: 16px;
  padding: 8px 15px;
  text-decoration: none;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .share-row-title {
  width: 100%;
  line-height: 15px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .share-row-title:hover {
  color: #ffffff;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .share-row-title.destroying {
  color: #999;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .last-text-share {
  color: #fff;
  font-size: 12px;
  color: #c1c1c1;
  font-weight: 100;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .last-text-share span.emoji-outer {
  width: 12px;
  height: 12px;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .video-conf-indicator {
  color: #c1c1c1;
  position: absolute;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  right: 14px;
  bottom: 8px;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .video-conf-indicator + .last-text-share {
  padding-right: 20px;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis .fa.fa-user-circle-o {
  position: absolute;
  right: -20px;
  top: 18px;
  opacity: 0;
  -webkit-transition: 0.3s;
  /* Safari prior 6.1 */
  transition: 0.3s;
}
#sidebar .sidebar-body .share-holder-side .body-share li .share-info a.ellipsis:hover .fa.fa-user-circle-o {
  opacity: 1;
  right: 14px;
  color: #6d6d6d;
}
#sidebar .sidebar-body .chat-holder-side {
  padding: 0 5px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat {
  overflow: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 60px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li {
  position: relative;
  border-top: 1px solid #444;
  height: 50px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a {
  position: relative;
  color: #fff;
  display: block;
  height: 100%;
  font-size: 11px;
  padding: 4px 10px 4px 10px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a .div-user-sidebar {
  display: inline-block;
  float: left;
  height: 36px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a .div-right {
  height: 100%;
  margin-left: 40px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a .div-right span.username {
  width: 100%;
  display: inline-block;
  height: 17px;
  margin-top: 2px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a .last-text {
  font-size: 12px;
  color: #c1c1c1;
  font-weight: 100;
  line-height: 12px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a .last-text span.emoji-outer {
  width: 12px;
  height: 12px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a .badge {
  text-align: center;
  padding: 1px 8px;
  line-height: 12px;
  display: inline-block;
  border-radius: 5px;
  font-size: 10px;
  background: #fc2616;
  height: 14px;
  position: absolute;
  right: 10px;
  top: 3px;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li a:hover {
  color: #f1f1f1;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li .btn-remove {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 10px;
  font-weight: 100;
  cursor: pointer;
  display: none;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  color: #fafafa;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li .btn-remove:hover {
  color: #c0392b;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li:hover {
  /*.badge{
                            display: none;
                        }*/
}
#sidebar .sidebar-body .chat-holder-side .body-chat li:hover .btn-remove {
  display: inline-block;
}
#sidebar .sidebar-body .chat-holder-side .body-chat li.active {
  background-color: #252525;
}
#sidebar .sidebar-body .chat-holder-side .body-chat.body-chat-search {
  display: none;
}
#sidebar .sidebar-body .chat-holder-side.search-mode .body-chat.body-chat-search {
  display: block;
}
#sidebar .sidebar-body .chat-holder-side.search-mode .body-chat.body-chat-friends {
  display: none;
}
#sidebar .sidebar-body.active {
  left: 0;
}
#sidebar .sidebar-body.sidebar-setting ul li a {
  color: #FFF;
  display: block;
  height: 60px;
  line-height: 50px;
  padding: 5px 15px;
  border-bottom: 1px solid #3c3c3c;
  text-decoration: none!important;
  white-space: nowrap;
}
#sidebar .sidebar-body.sidebar-setting ul li a:hover {
  background: #2b2b2b;
}
#sidebar .sidebar-body.sidebar-setting ul li a .icon {
  font-size: 20px;
  vertical-align: text-bottom;
  margin-right: 10px;
}
#sidebar .sidebar-body.sidebar-setting ul li.active a {
  background: #252525;
}
#sidebar #sidebar-left {
  width: 50px;
  background: #232323;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: 5;
}
#sidebar #sidebar-left .collapse-menu {
  position: relative;
}
#sidebar #sidebar-left .collapse-menu .user-info {
  width: 100%;
  height: 60px;
  display: block;
  position: relative;
  cursor: pointer;
}
#sidebar #sidebar-left .collapse-menu .user-info .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 7px;
}
#sidebar #sidebar-left .collapse-menu .user-info .nav-loading {
  width: 50px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
#sidebar #sidebar-left .collapse-menu .user-info .nav-loading .loading {
  width: 50px;
  height: 60px;
  border-radius: 50%;
  background-color: #232323;
  text-align: center;
}
#sidebar #sidebar-left .collapse-menu .user-info .nav-loading .loading > div {
  width: 10px;
  height: 10px;
  background-color: #FF8135;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  margin-top: 25px;
}
#sidebar #sidebar-left .collapse-menu .user-info .nav-loading .loading > div.bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
#sidebar #sidebar-left .collapse-menu .user-info .nav-loading .loading > div.bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu {
  width: 232px;
  left: 30px;
  top: 75%;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li {
  text-align: left;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li label {
  padding: 3px 20px;
  font-weight: 500;
  color: #333;
  display: block;
  margin: 0;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li label span {
  display: block;
  color: #777;
  font-weight: normal;
  text-overflow: ellipsis;
  font-size: 11px;
  width: 100%;
  overflow: hidden;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li a i.icon {
  margin-right: 10px;
  font-size: 20px;
  float: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li a span {
  margin: 2px 0px;
  display: inline-block;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li a:hover {
  background-color: #46B7FF;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li a:hover i.icon {
  margin-right: 15px;
}
#sidebar #sidebar-left .collapse-menu .dropdown-menu li a.set-chat-status i.icon {
  font-size: 13px;
  line-height: 22px;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu {
  top: auto;
  bottom: 75%;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu .notification-dropdown-content {
  overflow: auto;
  max-height: 350px;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li {
  overflow: auto;
  overflow-x: hidden;
  margin: 0 7px;
  border-bottom: 1px solid #eee;
  position: relative;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite {
  display: block;
  width: 100%;
  height: 100%;
  white-space: normal;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  padding: 5px 7px;
  line-height: 1.4em;
  min-height: 40px;
  color: #444;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a .userImage,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite .userImage,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a .notificationIcon,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite .notificationIcon {
  float: left;
  margin-right: 5px;
  margin-top: 0;
  margin-bottom: 5px;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a .userImage span,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite .userImage span {
  margin: 0;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a .notificationIcon,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite .notificationIcon {
  width: 26px;
  height: 26px;
  font-size: 24px;
  text-align: center;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a .notificationIcon.task-assign,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite .notificationIcon.task-assign {
  color: #49d181;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a .message-content,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite .message-content {
  display: inline;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > a:hover,
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li > .company-invite:hover {
  background: #eee;
  color: #333;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li.seen {
  opacity: 0.8;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li.seen > a {
  color: #838383;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu ul.list > li .company-invite {
  overflow: auto;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu .load-more {
  display: block;
  border-radius: 0;
  margin: 5px 0 0;
  border-left: none;
  border-right: none;
  font-size: 11px;
}
#sidebar #sidebar-left .collapse-menu.notification-menu .dropdown-menu .no-notification {
  text-align: center;
  padding: 10px 15px;
  font-size: 12px;
}
#sidebar #sidebar-left .collapse-menu.notification-menu.has-new-notifications:after {
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  top: 20px;
  right: 10px;
  background: #FC2616;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#sidebar #sidebar-left .sidebar-sections,
#sidebar #sidebar-left .sidebar-bottom {
  list-style: none;
  margin: 10px 0;
  padding: 0 7px;
  width: 100%;
  font-size: 18px;
  line-height: 30px;
}
#sidebar #sidebar-left .sidebar-sections > li,
#sidebar #sidebar-left .sidebar-bottom > li {
  width: 100%;
  text-align: center;
  margin: 5px 0;
}
#sidebar #sidebar-left .sidebar-sections > li.active > a,
#sidebar #sidebar-left .sidebar-bottom > li.active > a,
#sidebar #sidebar-left .sidebar-sections > li.open > a,
#sidebar #sidebar-left .sidebar-bottom > li.open > a,
#sidebar #sidebar-left .sidebar-sections > li:hover > a,
#sidebar #sidebar-left .sidebar-bottom > li:hover > a {
  background: #333;
}
#sidebar #sidebar-left .sidebar-sections > li > a,
#sidebar #sidebar-left .sidebar-bottom > li > a {
  display: block;
  color: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
}
#sidebar #sidebar-left .sidebar-sections > li > a:active,
#sidebar #sidebar-left .sidebar-bottom > li > a:active {
  text-decoration: none;
}
#sidebar #sidebar-left .sidebar-sections > li > a .icon-ticket,
#sidebar #sidebar-left .sidebar-bottom > li > a .icon-ticket {
  font-size: 20px;
}
#sidebar #sidebar-left .sidebar-sections.sidebar-bottom,
#sidebar #sidebar-left .sidebar-bottom.sidebar-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 0;
}
#sidebar #sidebar-right {
  background: #333;
  width: 225px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 3;
}
#sidebar .badge {
  text-align: center;
  padding: 1px 5px;
  line-height: 12px;
  display: inline-block;
  border-radius: 5px;
  font-size: 10px;
  background: #fc2616;
  margin-top: 1px;
  position: absolute;
  right: -6px;
  top: -6px;
  height: 14px;
}
#sidebar .nav-tabs > .active > a,
#sidebar .nav-tabs > .active > a:hover {
  background-color: #e8e8e8;
}
#sidebar #share {
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-top: 20px;
}
#sidebar #share .title {
  padding: 10px;
  margin-left: 5px;
  font-size: 16px;
}
#sidebar #share .title.share-title {
  background: #DD8E19;
}
#sidebar #share .personal {
  border-left: 4px solid #558ED5;
}
#sidebar #share .personal .info {
  border-bottom: 1px solid #eee;
}
#sidebar #share .personal .stuff {
  border-bottom: 1px solid #eee;
  padding: 7px 22px;
  cursor: pointer;
}
#sidebar #share .share {
  border-left: 4px solid #00B050;
  margin-top: 10px;
}
#sidebar #share .share ul.body {
  overflow: visible !important;
  margin: 0;
  list-style: none;
}
#sidebar #share .share ul.body li {
  border-bottom: 1px solid #ddd;
}
#sidebar #share .share ul.body li .circle {
  border: 1px solid #3A5F8D;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  float: left;
  margin: 8px 10px 8px 20px;
  background: #4F81BD;
}
#sidebar #share .share ul.body li.active .circle {
  background: #F1F1F1;
}
#sidebar #share .share ul.body li .title {
  padding: 10px;
  margin-left: 5px;
  font-size: 14px;
}
#sidebar #share .share ul.body li .share-setting {
  width: 15px;
  font-size: 23px;
  color: #ccc;
  position: relative;
  height: 15px;
  bottom: 28px;
  cursor: pointer;
}
#sidebar #share .share ul.body li .share-setting i {
  position: absolute;
  bottom: -2px;
  right: 0px;
  display: none;
}
#sidebar #share .share ul.body li:hover .share-setting i {
  display: inline-block;
}
#sidebar #share .share ul.body li.active {
  background: #DD8E19;
  /*
                            .share-setting{
                                i{
                                    display: inline-block;
                                }
                            }*/
}
#sidebar #share .source {
  border-bottom: 1px solid #eee;
}
#sidebar #share .source ul.body {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
#sidebar #share .source ul.body .source-li {
  padding: 6px 20px;
}
#sidebar #share .source .add-source {
  margin-left: 60px;
  margin-right: 68px;
  text-align: center;
  padding: 5px 5px;
  border: 1px solid #999;
  cursor: pointer;
  background: #B5B2B1;
}
#sidebar #chat .header {
  padding: 15px 27px 15px;
  border-bottom: 1px solid #ddd;
}
#sidebar #chat .header .search-input {
  width: 120px;
  float: left;
}
#sidebar #chat .header .btn-search {
  width: 39px;
  margin-left: 5px;
  height: 27px;
}
#sidebar #chat ul.body {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
#sidebar #chat ul.body li {
  padding: 5px 0px;
  border-bottom: 1px solid #ddd;
}
#sidebar #chat ul.body li .image-holder {
  float: left;
  margin: 5px -15px 5px 20px;
  position: relative;
}
#sidebar #chat ul.body li .image-holder img {
  border-radius: 50%;
  max-width: 50%;
}
#sidebar #chat ul.body li .image-holder::after {
  content: "";
  display: block;
  width: 8px;
  position: absolute;
  border: 2px solid #e9e9e9;
  height: 8px;
  background: #83e740;
  border-radius: 10px;
  left: 21px;
  bottom: 1px;
}
.share-navbar {
  display: block!important;
  background-color: transparent;
  box-shadow: none;
}
.share-navbar .add-new-items {
  cursor: pointer;
}
.share-navbar ul {
  padding: 10px 0px 10px 0px;
  margin: 0px;
  text-align: center;
  font-size: 14px;
}
.share-navbar ul li {
  float: left;
  list-style: none;
  min-width: 70px;
  background: rgba(1, 1, 1, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-left: 1px solid rgba(1, 1, 1, 0.3);
}
.share-navbar ul li .add-new-items span {
  float: left;
  background-image: none;
  border-radius: 30px;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  line-height: 0;
  padding: 10px;
}
.share-navbar ul li.selected,
.share-navbar ul li.main-item-navbar:hover {
  position: relative;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  color: rgba(1, 1, 1, 0.7);
}
.share-navbar ul.pull-right {
  margin-right: 40px;
}
.share-navbar ul.pull-right li {
  width: 125px;
  padding: 10px 0;
  background-color: #129DEB;
  border-left: 0;
  border-radius: 5px;
  color: #fff;
}
.share-navbar ul.pull-left li:first-child {
  border-radius: 5px 0 0 5px;
  border-left: none;
}
.share-navbar ul.pull-left li:last-child {
  border-radius: 0 5px 5px 0;
}
.user-presence-status {
  position: relative;
}
.user-presence-status:after {
  content: "";
  display: block;
  width: 10px;
  position: absolute;
  border: 2px solid #333;
  height: 10px;
  background: #c1c1c1;
  border-radius: 10px;
  left: 25px;
  bottom: 0px;
}
.user-presence-status.no-border.user-presence-status:after {
  border: none;
}
.user-presence-status.online:after,
.user-presence-status.connected:after {
  background: #83e740;
}
.user-presence-status.dnd:after {
  background: #e80000;
}
.user-presence-status.away:after {
  background: #ffb529;
}
.user-presence-status.connecting:after {
  background: #FCF016;
}
.user-presence-status.disconnect:after {
  background: #999892;
}
#connectionAlertBox {
  position: fixed;
  top: 70px;
  left: 50%;
  margin-left: -120px;
  width: 240px;
  background: #f1f1f1;
  line-height: 3;
  border-radius: 5px;
  box-shadow: 0px 0px 7px #ccc;
  cursor: default;
  color: #838383;
  padding: 0 16px;
  -webkit-transition: 0.4s;
  /* Safari prior 6.1 */
  transition: 0.4s;
  opacity: 1;
}
#connectionAlertBox .msg {
  display: none;
}
#connectionAlertBox.connected {
  top: -50px;
  opacity: 0;
}
#connectionAlertBox.connected .connectedMsg {
  display: block;
}
#connectionAlertBox.connecting .connectingMsg {
  display: block;
}
#connectionAlertBox.disconnect .disconnectMsg {
  display: block;
}
#connectionAlertBox.disconnect .disconnectMsg span {
  float: right;
  margin-top: 6px;
  font-size: 11px;
}
.app-modals {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: auto;
}
.app-modals .modal-frame {
  position: absolute;
  width: 95%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin: 30px auto;
}
.app-modals .modal-frame.float-center {
  margin: 0;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.app-modals .modal-frame.modal-small {
  max-width: 400px;
}
.app-modals .modal-frame.modal-medium {
  max-width: 800px;
}
.app-modals .modal-frame.modal-big {
  top: 30px !important;
  right: 20px !important;
  bottom: 30px !important;
  left: 20px !important;
  width: auto;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  margin: 0 !important;
}
.app-modals .modal-frame .input-box-with-tooltip-label {
  position: relative;
  padding-right: 20px;
}
.app-modals .modal-frame .input-box-with-tooltip-label input {
  padding-right: 42px;
}
.app-modals .modal-frame .input-box-with-tooltip-label .help-icon {
  font-size: 24px;
  margin-left: 8px;
  color: #337ab7;
  cursor: pointer;
  position: absolute;
  right: 32px !important;
  top: 50%;
  margin-top: -16px;
}
.app-modals .modal-frame .input-box-with-tooltip-label .help-icon:after {
  padding: 10px 18px;
  min-width: 250px !important;
  white-space: normal !important;
  text-align: justify;
}
.app-wrap.show-conf:not(.conf-compress-mode) .app-modals .modal-frame:not(.float-center) {
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  top: 0!important;
  left: 0!important;
  right: 0!important;
  bottom: 0!important;
  overflow: auto;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.app-wrap.show-conf:not(.conf-compress-mode) .app-modals .modal-frame:not(.float-center).modal-note .body {
  height: calc(100% - 125px);
  padding-bottom: 0;
}
.app-wrap.show-conf:not(.conf-compress-mode) .app-modals {
  left: 55%;
}
.create-frame {
  background-color: #ffffff;
  position: relative;
}
.create-frame .controls {
  padding-right: 20px;
}
.create-frame form .help-inline {
  clear: both;
  display: block;
}
.create-frame form .help-inline.form-validation-error {
  color: #c0392b;
}
.create-frame form .datetime .date {
  width: 100%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.create-frame form .datetime .date > input {
  padding: 10px 5px;
}
.create-frame form .datetime .date > span {
  padding: 8px 8px;
}
.create-frame form .datetime .div-time {
  width: 100%;
}
.create-frame .header {
  width: 100%;
  height: 60px;
  background-color: #E8E8E8;
}
.create-frame .header .pre-title {
  float: left;
  width: 60px;
  height: inherit;
  position: relative;
}
.create-frame .header .pre-title .icon,
.create-frame .header .pre-title .custom-icon {
  width: inherit;
  height: inherit;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 26px;
  line-height: 2.1;
  color: #fff;
}
.create-frame .header .pre-title .custom-icon {
  background-color: #838383;
}
.create-frame .header .pre-title [data-type="share"] {
  background-color: #F77D33;
}
.create-frame .header .pre-title [data-type="task"] {
  background-color: #49d181;
}
.create-frame .header .pre-title [data-type="contact"] {
  background-color: #24bcf4;
}
.create-frame .header .pre-title [data-type="link"] {
  background-color: #d52e2e;
}
.create-frame .header .pre-title [data-type="calendar"] {
  background-color: #8a61b1;
}
.create-frame .header .pre-title [data-type="note"] {
  background-color: #1bc8b2;
}
.create-frame .header .pre-title [data-type="document"] {
  background-color: #bc62be;
}
.create-frame .header .title {
  float: left;
  display: inline-block;
  height: inherit;
  color: #838383;
  font-size: 16px;
  line-height: 1.6;
  padding: 17px 20px;
}
.create-frame .header .action-btns {
  float: right;
  height: inherit;
  padding-right: 20px;
  padding-top: 13px;
}
.create-frame .header .action-btns .btn {
  margin-left: 5px;
}
.create-frame .body {
  padding: 25px 20px;
  position: relative;
}
.create-frame .body .form-control {
  min-height: 40px;
}
.create-frame .body select {
  height: 40px;
}
.create-frame .body input[type="text"] {
  height: 40px;
}
.create-frame .body .form-actions {
  position: absolute;
  height: 60px;
  top: -60px;
  right: 0;
  margin: 0;
  padding-right: 20px;
  padding-top: 13px;
}
.create-frame .body .form-horizontal .form-horizontal.bulk-add-user-form fieldset {
  padding: 0 120px;
}
.create-frame .body .form-horizontal .form-horizontal.bulk-add-user-form fieldset .user-rows .row .btn-add-field {
  display: none;
}
.create-frame .body .form-horizontal .form-horizontal.bulk-add-user-form fieldset .user-rows .row .add-field-btn-holder {
  padding: 0;
}
.create-frame .body .form-horizontal .form-horizontal.bulk-add-user-form fieldset .user-rows .row:last-child .btn-add-field {
  display: inline-block;
}
.create-frame .body .form-horizontal .form-horizontal.bulk-add-user-form fieldset .bulk-add-user-textarea {
  height: 150px;
}
.create-frame .body .form-horizontal .control-label {
  text-align: right;
  padding-right: 0;
  padding-left: 0;
  font-size: 13px;
}
.create-frame .body .form-horizontal fieldset .share-permission-dropdown {
  width: 50%;
  float: left;
}
.create-frame .body .form-horizontal fieldset .share-permission-details {
  float: left;
  margin-left: 10px;
  width: 100px;
}
.create-frame.modal-share .header .pre-title [data-type="share"] {
  display: inline-block;
}
.create-frame.modal-task .header .pre-title [data-type="task"] {
  display: inline-block;
}
.create-frame.modal-task .body .footer .flex-center > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
}
.create-frame.modal-task .body .footer .flex-center > div img {
  width: 45px;
}
.create-frame.modal-task .body .footer .flex-center > div p {
  padding-top: 8px;
}
.create-frame.modal-task .body .footer .flex-center > div.disabled {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: 0.7;
}
.create-frame.modal-contact .header .pre-title [data-type="contact"] {
  display: inline-block;
}
.create-frame.modal-contact .body .section-header {
  height: 34px;
  margin-bottom: 15px;
  background-color: #f1f1f1;
  color: #555;
  border-bottom: solid 1px #e0e0e0;
  line-height: 34px;
  padding-left: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.create-frame.modal-contact .body .section-header .fields-list a i {
  float: right;
  color: #24bcf4;
  line-height: 22px;
}
.create-frame.modal-contact .body #notesHolder {
  float: left;
}
.create-frame.modal-contact .body .address-fields h2 {
  font-size: 14px;
  margin: 0;
  margin-bottom: 20px;
  padding: 0 30px;
}
.create-frame.modal-link .header .pre-title [data-type="link"] {
  display: inline-block;
}
.create-frame.modal-calendar .header .pre-title [data-type="calendar"] {
  display: inline-block;
}
.create-frame.modal-calendar form .datetime .date > input {
  height: 34px;
  min-height: 34px;
}
.create-frame.modal-note .header .pre-title [data-type="note"] {
  display: inline-block;
}
.create-frame.modal-note .header .title {
  display: none;
}
.create-frame.modal-note #modal-note-title {
  position: absolute;
  top: -50px;
  left: 65px;
}
.create-frame.modal-note #modal-note-title input[type="text"] {
  border: none;
  box-shadow: none;
  outline: none;
  font-size: 20px !important;
  background: rgba(0, 0, 0, 0);
}
.create-frame.modal-note #modal-note-title input[type="text"]::-webkit-input-placeholder {
  font-style: italic;
  text-decoration: underline;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
}
.create-frame.modal-note #modal-note-title .help-inline {
  position: absolute;
  top: 57px;
  left: -35px;
}
.create-frame.modal-note #modal-note-title .help-inline.form-validation-error {
  color: #c0392b;
}
.create-frame.modal-note.modal-big .body {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  bottom: 0;
}
.create-frame.modal-note.modal-big .body .notes-form {
  height: 100%;
}
.create-frame.modal-note.modal-big .body .notes-form textarea.form-control {
  height: 100%;
}
.create-frame.modal-note.modal-big .body .notes-form .trumbowyg-box {
  margin-top: 0;
  margin-bottom: 0;
}
.create-frame.modal-note.modal-big .body .notes-form .trumbowyg-box .trumbowyg-editor table td {
  border: 1px dotted black;
  min-width: 10px;
  padding: 5px;
}
.create-frame.modal-note .cke_bottom {
  display: none;
}
.create-frame.modal-document .header .pre-title [data-type="document"] {
  display: inline-block;
}
.create-frame.modal-document .upload-drop-zone {
  margin: 0;
  height: 240px;
  position: relative;
}
.create-frame.modal-document .upload-drop-zone i.icon {
  font-size: 80px;
  color: #9a9a9a;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.create-frame.modal-document .upload-drop-zone p {
  text-align: center;
  padding-top: 160px;
  color: #9a9a9a;
}
.create-frame.modal-document .upload-drop-zone p a {
  font-style: italic;
  text-transform: underline;
  font-weight: bold;
  font-size: 16px;
  color: #bc62be;
}
.create-frame.modal-document .upload-result {
  max-height: 160px;
  overflow: auto;
  margin: 0;
}
.create-frame.modal-document .upload-result li {
  list-style: none;
  clear: both;
  padding: 10px;
  border-top: 1px solid #e1e1e1;
  margin-bottom: 1px;
}
.create-frame.modal-document .upload-result li:before,
.create-frame.modal-document .upload-result li:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.create-frame.modal-document .upload-result li:after {
  clear: both;
}
.create-frame.modal-document .upload-result li .file-name {
  width: 238px;
  float: left;
}
.create-frame.modal-document .upload-result li .progress {
  float: right;
  width: 200px;
}
.create-frame.modal-document .upload-result li .error-message {
  overflow: hidden;
  padding-left: 10px;
}
.create-frame.modal-document .upload-result li.upload-completed {
  background: #5cb85c;
  color: #fff;
  border-color: #4cae4c;
}
.create-frame.modal-document .upload-result li.upload-error {
  background: #d9534f;
  color: #fff;
  border-color: #d43f3a;
}
.create-frame.modal-custom-icon .header .pre-title .custom-icon {
  display: block;
}
.create-frame.modal-no-icon .header .pre-title {
  display: none;
}
.create-frame.modal-add-member .header {
  background-color: #337ab7;
}
.create-frame.modal-add-member .header .pre-title .icon {
  background: #3485cc;
}
.create-frame.modal-add-member .header .title {
  color: #fff;
  font-size: 17px;
}
.create-frame.modal-add-member .body {
  padding-top: 35px;
}
.modal {
  border-radius: 0 !important;
  margin: 0 !important;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.modal .modal-header {
  height: 60px;
  padding: 0;
  position: relative;
}
.modal .modal-header h3 {
  font-weight: 400;
  color: #838383;
  font-size: 16px;
  line-height: 1.6;
  padding: 17px 20px;
  margin: 0;
}
.modal .modal-header .close {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin: 0;
  z-index: 1;
}
.modal .modal-body {
  padding: 25px 20px;
}
.modal .custom-footer {
  height: 60px;
  padding: 14px 20px;
  margin: 25px -20px -25px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}
.modal .custom-footer .btn {
  float: right;
  margin-left: 5px;
}
.modal .modal-footer {
  height: 60px;
  padding: 14px 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  margin-bottom: 0px !important;
}
.modal .modal-footer > .btn {
  float: right;
  margin-left: 5px;
}
.modal.no-footer .modal-footer {
  display: none;
}
.modal.no-header .modal-header {
  display: none;
}
.modal.modal-800 {
  width: 800px;
  max-width: 80%;
}
.modal-body {
  max-height: 400px;
  max-height: calc(80vh - 60px - 60px);
}
.no-footer .modal-body,
.no-header .modal-body {
  max-height: calc(80vh - 60px);
}
.no-header.no-footer .modal-body {
  max-height: calc(80vh);
}
.modal-body .find-share-item {
  background: #F3F3F3;
  border: 0px;
  box-shadow: none;
  width: 90%;
  padding: 10px 5%;
  background: #f3f3f3 url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13' enable-background='new 0 0 13 13'><g><path fill='%23939398' d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1 M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0 L5,0z'/></g><line stroke='%23939398' stroke-miterlimit='10' x1='12.6' y1='12.6' x2='8.2' y2='8.2'/></svg>") no-repeat 8px center;
  background-size: 15px;
}
.modal-body .shares-items-list ul {
  margin: 0px;
}
.modal-body .shares-items-list li {
  border-bottom: 1px solid #f3f3f3;
  line-height: 18px;
  background-color: #ffffff;
  border-radius: 3px;
  margin: 0px;
  font-size: 15px;
  min-height: 30px;
  padding: 6px 20px 6px 2px;
  cursor: pointer;
  list-style: none;
}
.modal-body .shares-items-list li img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 5px;
}
.modal-body .shares-items-list li:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}
.itempicker .modal-body {
  max-height: none;
}
.modal-body .close {
  position: absolute;
  top: 5px;
  right: 7px;
}
.modal.itempicker .modal-body {
  padding: 15px;
}
#modal .profile-action-button {
  overflow: hidden;
  padding: 10px 20px;
  background-color: #e8e8e8;
}
#modal .profile-action-button ul li {
  width: 30px;
  text-align: center;
}
#modal .profile-action-button ul li a {
  color: #555;
}
#modal .single-page .content .page-view .profile-task-show .source-icon {
  position: absolute;
  top: 10px;
  font-size: 20px;
  right: 10px;
  color: #888;
}
#modal .single-page .content .page-view .profile-task-show .profile-item-container {
  padding: 20px;
}
#modal .single-page .content .page-view .profile-task-show .profile-item-container .contact-avatar-container {
  width: 160px;
  margin: 0 auto;
  text-align: center;
}
#modal .single-page .content .page-view .profile-task-show .profile-item-container .contact-avatar-container img {
  border-radius: 10px;
}
#modal .single-page .content .page-view .profile-task-show .download-btn-holder {
  text-align: center;
  margin-bottom: 10px;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 {
  padding: 20px;
  overflow: hidden;
  background-color: #f3f3f3;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .webpage .controls {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 > div {
  height: 30px;
  line-height: 30px;
  width: 50%;
  float: left;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 > div > label {
  font-size: 11px;
  color: #777;
  width: 80px;
  float: left;
  margin-right: 15px;
  white-space: nowrap;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 > div > div {
  float: left;
  font-size: 12px;
  color: #999;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .note-key {
  line-height: 20px;
  width: 100%;
  clear: both;
  height: auto;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .note-key .item-key-1 {
  font-size: 12px;
  color: #999;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .note-key .item-key-1 > label {
  font-size: 11px;
  color: #777;
  width: 100px;
  float: left;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .note-key .item-key-1 > div {
  margin-left: 115px;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .webpage,
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .email,
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .email2,
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .email3 {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  height: auto;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .webpage > div,
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .email > div,
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .email2 > div,
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .email3 > div {
  width: 450px;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .workAddress {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  height: auto;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .workAddress > div {
  width: 500px;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .homeAddress {
  width: 100%;
  height: auto;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
#modal .single-page .content .page-view .profile-task-show .profile-task-detail-2 .homeAddress > div {
  width: 500px;
}
#modal .single-page .content .page-view .profile-task-show .wall-content .comments-block .comment-form-holder .comment-form .user-comment {
  background: #fff;
}
#modal .single-page .content .page-view .profile-task-show .wall-content .comments-block .comments-list {
  margin-right: 30px;
}
#modal .single-page .content .page-view .profile-task-show .creation-date-item {
  font-size: 12px;
  color: #888;
  float: left;
}
#modal.main-intro {
  width: 850px;
  height: 505px;
  overflow: hidden;
  border: none;
}
#modal.main-intro .modal-body {
  padding: 0;
  max-height: 100%;
  text-align: center;
  height: 100%;
  overflow: hidden;
}
#modal.main-intro .modal-body h2 {
  font-weight: normal;
  font-size: 25px;
  font-family: 'Lato', sans-serif;
  color: #f77d33;
  padding: 15px;
  margin: 15px 0 0px;
}
#modal.main-intro .modal-body p {
  padding: 0 70px;
  color: #838383;
  font-size: 18px;
}
#modal.main-intro .modal-body .step0-image {
  position: relative;
}
#modal.main-intro .modal-body .skip-step {
  float: right;
  margin: 35px 20px 0 0;
  color: #9e9e9e;
}
#modal.main-intro .modal-body .personal-information {
  margin: 35px 0 40px;
}
#modal.main-intro .modal-body .personal-information .form-control {
  margin: 0 20px;
  width: 35%;
  font-size: 18px;
  display: inline-block;
  height: auto;
}
#modal.main-intro .modal-body .personal-information-image-holder {
  height: 150px;
  margin: 0 70px 73px;
}
#modal.main-intro .modal-body .personal-information-image-holder .personal-information-image-text {
  height: 150px;
  text-align: left;
}
#modal.main-intro .modal-body .personal-information-image-holder .personal-information-image-text p {
  padding: 0;
  font-size: 17px;
  margin-top: 39px;
}
#modal.main-intro .modal-body .personal-information-image-holder .personal-information-image-upload {
  height: 120px;
  cursor: pointer;
  background: #f8f8f8;
  border: 2px dashed #d4d4d4;
  color: #838383;
  margin: 15px 0;
  padding: 20px 15px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
#modal.main-intro .modal-body .personal-information-image-holder .personal-information-image-upload .fa-upload {
  margin-bottom: 7px;
}
#modal.main-intro .modal-body .personal-information-image-holder .personal-information-image {
  height: 150px;
}
#modal.main-intro .modal-body .test-stream {
  width: 336px;
  height: 252px;
  margin: 30px auto 15px;
  background: #e2e2e2;
  overflow: hidden;
  position: relative;
}
#modal.main-intro .modal-body .test-stream #bar_1 {
  display: none!important;
}
#modal.main-intro .modal-body .test-stream #player_1 {
  z-index: 5;
}
#modal.main-intro .modal-body .test-stream span {
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 252px;
  line-height: 252px;
  font-size: 22px;
  color: #676767;
  width: 100%;
  cursor: pointer;
}
#modal.main-intro .modal-body #audio-test {
  height: 210px;
}
#modal.main-intro .modal-body #audio-test span {
  height: 210px;
  line-height: 210px;
}
#modal.main-intro .modal-body #audio-test .audio_player:before {
  font-family: 'Linearicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e8cb";
  display: block;
  height: 100%;
  line-height: 210px;
  color: #8c8c8c;
  font-size: 90px;
  text-align: center;
  text-shadow: 0 2px 2px #fff;
}
#modal.main-intro .modal-body .custom-soundmeter {
  width: 336px;
  margin: 15px auto;
}
#modal.main-intro .modal-body .btn.btn-success.btn-lg {
  box-shadow: 0 1px 5px #2f2f2f;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #06b544;
  border-color: #06b544;
  position: absolute;
  bottom: 60px;
  left: 50%;
  text-align: center;
  width: 280px;
  margin-left: -140px;
}
#modal.main-intro .modal-body .btn.btn-success.btn-lg.go-to-step-3,
#modal.main-intro .modal-body .btn.btn-success.btn-lg.go-to-step-4 {
  bottom: 35px;
}
#modal.main-intro .modal-body .sad-man-small {
  width: 140px;
  height: 220px;
  background: url('../../../assets/img/sad-man-small.png') no-repeat center center;
  margin: 25px auto 10px;
}
#camera-access-overlay {
  background: rgba(54, 83, 93, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
}
#camera-access-overlay .col-md-5 {
  margin: 200px auto 0;
  color: #FFF;
  float: none;
}
#camera-access-overlay .col-md-5 h2 {
  font-weight: normal;
  margin-bottom: 20px;
}
#camera-access-overlay .col-md-5 p {
  font-size: 18px;
}
.modal-backdrop.lightbackdrop {
  background: #fff;
  opacity: 0.6;
}
video {
  max-width: 100%;
  background: #000 url("/static/assets/img/weedeo/assets/loader.gif") no-repeat center;
}
.no-video video {
  background: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header {
  width: 100%;
  height: 60px;
  background-color: #3f3f3f;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header.inside {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions {
  text-align: center;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"] {
  width: 70px;
  height: 60px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"] i.icon {
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"] i.icon:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"]:hover,
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].active {
  background-color: #0088df;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-video[data-video="true"] .icon:after {
  width: 0px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-video[data-video="false"] .icon:after {
  width: 35px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-mute[data-mute="true"] .icon:after {
  width: 35px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-mute[data-mute="false"] .icon:after {
  width: 0px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-record:hover {
  background-color: #962d22;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-record:hover .icon {
  color: #fff !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-record[data-record="true"] .icon {
  color: #ff6e6e !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-record.disabled {
  cursor: initial;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-record.disabled .icon {
  opacity: 0.5;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-record.disabled:hover,
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-record.disabled:visited {
  background-color: transparent;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-screen[data-screen="true"] .icon:after {
  width: 0px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-screen[data-screen="false"] .icon:after {
  width: 35px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-leave {
  background-color: #c0392b;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-leave:hover {
  background-color: #962d22;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions a[class*="btn-"].btn-switch-expand {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions .btn-group {
  width: 70px;
  height: 60px;
  vertical-align: top;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions .btn-group .dropdown-menu {
  background: #3f3f3f;
  text-align: left;
  margin-bottom: 0px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions .btn-group .dropdown-menu > li > a {
  color: #FFF;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions .btn-group .dropdown-menu > li > a:hover {
  background: #383838;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions .btn-group .dropdown-menu > li.active > a {
  background: #2d2d2d;
}
.app-wrap:not(.conf-compress-mode) .app-conference .header .header-nav-actions .btn-group.open a.btn-setting {
  background: #0088df;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container {
  background-color: #232323;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 60px;
  right: 0;
  overflow: hidden;
  white-space: nowrap;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container #my-stage {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container #stage-others {
  position: absolute;
  top: -70%;
  left: 0;
  width: 100%;
  height: 70%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box {
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  background-color: #484848;
  background-size: 50%;
  width: 350px;
  height: 262.5px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video .userImage {
  width: 262.5px;
  height: 262.5px;
  left: 43.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video .soundmeter {
  width: 262.5px;
  height: 262.5px;
  left: 43.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box#my-stream-0 {
  left: 50%;
  bottom: -150%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box#my-stream-1 {
  left: 50%;
  bottom: -150%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box#my-stream-0 .stream-actions,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box#my-stream-1 .stream-actions {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box[id^="stream-"] {
  top: -100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.stream-enlarge {
  width: 90%!important;
  height: 90%!important;
  left: 50%!important;
  top: 50%!important;
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.stream-enlarge .stream-actions .stream-action-btn.enlarge {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.stream-enlarge .stream-actions .stream-action-btn.exit-enlarge {
  display: block;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box video {
  width: 100% !important;
  height: 100% !important;
  top: 0!important;
  left: 0!important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .stream-actions {
  right: 2px;
  top: 3px;
  z-index: 99999;
  position: absolute;
  height: 24px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .stream-actions .stream-action-btn {
  line-height: 24px;
  width: 24px;
  font-size: 12px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 50px;
  cursor: pointer;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.6);
  margin-left: 5px;
  float: right;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .stream-actions .stream-action-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .stream-actions .stream-action-btn.exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .stream-actions .stream-action-btn.exit-enlarge {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .user-info {
  position: absolute;
  top: 3px;
  left: 2px;
  height: 26px;
  line-height: 26px;
  z-index: 6;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .user-info span.userImage {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 26px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box .user-info span.user-name {
  display: block;
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-size: 11px;
  margin-left: 13px;
  padding: 0 11px 0 17px;
  border-radius: 0 13px 13px 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box > .userImage.userImageSize_150 {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video {
  background: transparent;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video > .userImage.userImageSize_150 {
  display: block;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video .userImage {
  position: absolute;
  top: 0;
  z-index: 1;
  line-height: inherit;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.55);
  transform: scale(0.5);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video .soundmeter {
  position: absolute;
  top: 0;
  transform: scale(0.49);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video .soundmeter span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.1s ease;
  background: #233823 !important;
  background: rgba(67, 130, 67, 0.3) !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box.no-video .licode_player {
  visibility: hidden;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .stream-box#my-stream-1 {
  background-image: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .waiting-message {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 60px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container .waiting-message > span {
  color: #fff;
  line-height: 60px;
  font-weight: 300;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 500px;
  height: 375px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-1.active.no-video .userImage {
  width: 375px;
  height: 375px;
  left: 62.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-1 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 375px;
  height: 375px;
  left: 62.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1 .waiting-message {
  bottom: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 334px;
  height: 250.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 250.5px;
  height: 250.5px;
  left: 41.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 250.5px;
  height: 250.5px;
  left: 41.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-50%, 110%);
  -ms-transform: translate(-50%, 110%);
  transform: translate(-50%, 110%);
  width: 334px;
  height: 250.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 250.5px;
  height: 250.5px;
  left: 41.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-1.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 250.5px;
  height: 250.5px;
  left: 41.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 #my-stage {
  height: 30%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 #stage-others {
  top: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  width: 500px;
  height: 375px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1).show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1) .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1) .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1).no-video .userImage {
  width: 375px;
  height: 375px;
  left: 62.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1).no-video .soundmeter {
  width: 375px;
  height: 375px;
  left: 62.5px;
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1) {
    width: 400px;
    height: 300px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1).show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1) .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1) .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1).no-video .userImage {
    width: 300px;
    height: 300px;
    left: 50px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box[id^="stream-"]:nth-child(1).no-video .soundmeter {
    width: 300px;
    height: 300px;
    left: 50px;
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active {
    width: 175px;
    height: 131.25px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.show-fullscreen,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active .soundmeter,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active .soundmeter > span,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.no-video .userImage,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.no-video .userImage {
    width: 131.25px;
    height: 131.25px;
    left: 21.875px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.no-video .soundmeter,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.no-video .soundmeter {
    width: 131.25px;
    height: 131.25px;
    left: 21.875px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-0.active.no-video .userImage,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2 .stream-box#my-stream-1.active.no-video .userImage {
    font-size: 25px;
    letter-spacing: 0;
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0 {
    width: 175px;
    height: 131.25px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0 .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
    width: 131.25px;
    height: 131.25px;
    left: 21.875px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
    width: 131.25px;
    height: 131.25px;
    left: 21.875px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
    font-size: 25px;
    letter-spacing: 0;
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1 {
    width: 175px;
    height: 131.25px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1 .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
    width: 131.25px;
    height: 131.25px;
    left: 21.875px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
    width: 131.25px;
    height: 131.25px;
    left: 21.875px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-2.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
    font-size: 25px;
    letter-spacing: 0;
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 #my-stage {
  height: 25%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 #stage-others {
  top: 0;
  height: 75%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"] {
  left: 50%;
  width: 300px;
  height: 225px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"].no-video .userImage {
  width: 225px;
  height: 225px;
  left: 37.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 225px;
  height: 225px;
  left: 37.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-315px, -50%);
  -ms-transform: translate(-315px, -50%);
  transform: translate(-315px, -50%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(15px, -50%);
  -ms-transform: translate(15px, -50%);
  transform: translate(15px, -50%);
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"] {
    width: 275px;
    height: 206.25px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"].show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"] .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"] .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"].no-video .userImage {
    width: 206.25px;
    height: 206.25px;
    left: 34.375px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"].no-video .soundmeter {
    width: 206.25px;
    height: 206.25px;
    left: 34.375px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"]:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-277px, -50%);
    -ms-transform: translate(-277px, -50%);
    transform: translate(-277px, -50%);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box[id^="stream-"]:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(2px, -50%);
    -ms-transform: translate(2px, -50%);
    transform: translate(2px, -50%);
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 180px;
  height: 135px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.no-video .userImage {
  width: 135px;
  height: 135px;
  left: 22.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 135px;
  height: 135px;
  left: 22.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active {
    width: 170px;
    height: 127.5px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.show-fullscreen,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active .soundmeter,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active .soundmeter > span,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.no-video .userImage,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.no-video .userImage {
    width: 127.5px;
    height: 127.5px;
    left: 21.25px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.no-video .soundmeter,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.no-video .soundmeter {
    width: 127.5px;
    height: 127.5px;
    left: 21.25px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-0.active.no-video .userImage,
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3 .stream-box#my-stream-1.active.no-video .userImage {
    font-size: 25px;
    letter-spacing: 0;
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 180px;
  height: 135px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 135px;
  height: 135px;
  left: 22.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 135px;
  height: 135px;
  left: 22.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0 {
    width: 165px;
    height: 123.75px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0 .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
    width: 123.75px;
    height: 123.75px;
    left: 20.625px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
    width: 123.75px;
    height: 123.75px;
    left: 20.625px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
    font-size: 25px;
    letter-spacing: 0;
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 180px;
  height: 135px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 135px;
  height: 135px;
  left: 22.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 135px;
  height: 135px;
  left: 22.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1 {
    width: 165px;
    height: 123.75px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transition: all 0 !important;
    transition: all 0 !important;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1 .soundmeter {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
    width: 100%;
    min-width: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #449d44;
    background: rgba(77, 222, 77, 0.4);
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
    width: 123.75px;
    height: 123.75px;
    left: 20.625px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
    width: 123.75px;
    height: 123.75px;
    left: 20.625px;
  }
  .app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-3.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
    font-size: 25px;
    letter-spacing: 0;
  }
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 #my-stage {
  height: 23%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 #stage-others {
  top: 0;
  height: 77%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"] {
  left: 50%;
  width: 250px;
  height: 187.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"].no-video .userImage {
  width: 187.5px;
  height: 187.5px;
  left: 31.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 187.5px;
  height: 187.5px;
  left: 31.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-265px, 15px);
  -ms-transform: translate(-265px, 15px);
  transform: translate(-265px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(15px, 15px);
  -ms-transform: translate(15px, 15px);
  transform: translate(15px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box[id^="stream-"]:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-1.active.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-4.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 #my-stage {
  height: 23%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 #stage-others {
  top: 0;
  height: 77%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"] {
  left: 50%;
  width: 250px;
  height: 187.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"].no-video .userImage {
  width: 187.5px;
  height: 187.5px;
  left: 31.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 187.5px;
  height: 187.5px;
  left: 31.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-265px, 15px);
  -ms-transform: translate(-265px, 15px);
  transform: translate(-265px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(15px, 15px);
  -ms-transform: translate(15px, 15px);
  transform: translate(15px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"]:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-265px, -100%);
  -ms-transform: translate(-265px, -100%);
  transform: translate(-265px, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box[id^="stream-"]:nth-child(4) {
  top: 50%;
  -webkit-transform: translate(15px, -100%);
  -ms-transform: translate(15px, -100%);
  transform: translate(15px, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-1.active.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-5.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 #my-stage {
  height: 23%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 #stage-others {
  top: 0;
  height: 77%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"] {
  left: 50%;
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"].no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"].no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-315px, 15px);
  -ms-transform: translate(-315px, 15px);
  transform: translate(-315px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 15px);
  -ms-transform: translate(-50%, 15px);
  transform: translate(-50%, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"]:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(115px, 15px);
  -ms-transform: translate(115px, 15px);
  transform: translate(115px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"]:nth-child(4) {
  top: 50%;
  -webkit-transform: translate(-208px, -100%);
  -ms-transform: translate(-208px, -100%);
  transform: translate(-208px, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box[id^="stream-"]:nth-child(5) {
  top: 50%;
  -webkit-transform: translate(7px, -100%);
  -ms-transform: translate(7px, -100%);
  transform: translate(7px, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-1.active.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-6.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 #my-stage {
  height: 23%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 #stage-others {
  top: 0;
  height: 77%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"] {
  left: 50%;
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"].no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"].no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-315px, 15px);
  -ms-transform: translate(-315px, 15px);
  transform: translate(-315px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 15px);
  -ms-transform: translate(-50%, 15px);
  transform: translate(-50%, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"]:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(115px, 15px);
  -ms-transform: translate(115px, 15px);
  transform: translate(115px, 15px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"]:nth-child(4) {
  top: 50%;
  -webkit-transform: translate(-315px, -100%);
  -ms-transform: translate(-315px, -100%);
  transform: translate(-315px, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"]:nth-child(5) {
  top: 50%;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box[id^="stream-"]:nth-child(6) {
  top: 50%;
  -webkit-transform: translate(115px, -100%);
  -ms-transform: translate(115px, -100%);
  transform: translate(115px, -100%);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-1.active.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 170px;
  height: 127.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 127.5px;
  height: 127.5px;
  left: 21.25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-7.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 #my-stage {
  height: 20%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 #stage-others {
  top: 0;
  height: 80%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"] {
  left: 50%;
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"].no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"].no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-315px, 90px);
  -ms-transform: translate(-315px, 90px);
  transform: translate(-315px, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 90px);
  -ms-transform: translate(-50%, 90px);
  transform: translate(-50%, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"]:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(115px, 90px);
  -ms-transform: translate(115px, 90px);
  transform: translate(115px, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"]:nth-child(4) {
  top: 50%;
  -webkit-transform: translate(-315px, -75px);
  -ms-transform: translate(-315px, -75px);
  transform: translate(-315px, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"]:nth-child(5) {
  top: 50%;
  -webkit-transform: translate(-50%, -75px);
  -ms-transform: translate(-50%, -75px);
  transform: translate(-50%, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"]:nth-child(6) {
  top: 50%;
  -webkit-transform: translate(115px, -75px);
  -ms-transform: translate(115px, -75px);
  transform: translate(115px, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box[id^="stream-"]:nth-child(7) {
  top: 50%;
  -webkit-transform: translate(-50%, -240px);
  -ms-transform: translate(-50%, -240px);
  transform: translate(-50%, -240px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-1.active.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-8.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 #my-stage {
  height: 20%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 #stage-others {
  top: 0;
  height: 80%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"] {
  left: 50%;
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"].no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"].no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-315px, 90px);
  -ms-transform: translate(-315px, 90px);
  transform: translate(-315px, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 90px);
  -ms-transform: translate(-50%, 90px);
  transform: translate(-50%, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(115px, 90px);
  -ms-transform: translate(115px, 90px);
  transform: translate(115px, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(4) {
  top: 50%;
  -webkit-transform: translate(-315px, -75px);
  -ms-transform: translate(-315px, -75px);
  transform: translate(-315px, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(5) {
  top: 50%;
  -webkit-transform: translate(-50%, -75px);
  -ms-transform: translate(-50%, -75px);
  transform: translate(-50%, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(6) {
  top: 50%;
  -webkit-transform: translate(115px, -75px);
  -ms-transform: translate(115px, -75px);
  transform: translate(115px, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(7) {
  top: 50%;
  -webkit-transform: translate(-208px, -240px);
  -ms-transform: translate(-208px, -240px);
  transform: translate(-208px, -240px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box[id^="stream-"]:nth-child(8) {
  top: 50%;
  -webkit-transform: translate(7px, -240px);
  -ms-transform: translate(7px, -240px);
  transform: translate(7px, -240px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-1.active.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-9.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 #my-stage {
  height: 20%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 #stage-others {
  top: 0;
  height: 80%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"] {
  left: 50%;
  width: 200px;
  height: 150px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"].show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"] .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"] .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"].no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"].no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"].no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-315px, 90px);
  -ms-transform: translate(-315px, 90px);
  transform: translate(-315px, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 90px);
  -ms-transform: translate(-50%, 90px);
  transform: translate(-50%, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(115px, 90px);
  -ms-transform: translate(115px, 90px);
  transform: translate(115px, 90px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(4) {
  top: 50%;
  -webkit-transform: translate(-315px, -75px);
  -ms-transform: translate(-315px, -75px);
  transform: translate(-315px, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(5) {
  top: 50%;
  -webkit-transform: translate(-50%, -75px);
  -ms-transform: translate(-50%, -75px);
  transform: translate(-50%, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(6) {
  top: 50%;
  -webkit-transform: translate(115px, -75px);
  -ms-transform: translate(115px, -75px);
  transform: translate(115px, -75px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(7) {
  top: 50%;
  -webkit-transform: translate(-315px, -240px);
  -ms-transform: translate(-315px, -240px);
  transform: translate(-315px, -240px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(8) {
  top: 50%;
  -webkit-transform: translate(-50%, -240px);
  -ms-transform: translate(-50%, -240px);
  transform: translate(-50%, -240px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box[id^="stream-"]:nth-child(9) {
  top: 50%;
  -webkit-transform: translate(115px, -240px);
  -ms-transform: translate(115px, -240px);
  transform: translate(115px, -240px);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-1.active.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10 .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-10.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list #my-stage {
  height: 145px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list #stage-others {
  top: 0;
  height: auto;
  bottom: 145px;
  overflow: auto;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box[id^="stream-"] {
  position: static;
  float: left;
  margin-left: 15px;
  margin-top: 15px;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-0.active,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-1.active {
  bottom: 50%;
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-0.active.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-1.active.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-0.active .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-1.active .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-0.active .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-1.active .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-1.active.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-0.active.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-1.active.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-0.active.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list .stream-box#my-stream-1.active.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-0 {
  bottom: 50%;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-0.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-0 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-0 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-0.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-0.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-1 {
  bottom: 50%;
  -webkit-transform: translate(-110%, 50%);
  -ms-transform: translate(-110%, 50%);
  transform: translate(-110%, 50%);
  width: 150px;
  height: 112.5px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-1.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-1 .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-1 .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-1.no-video .soundmeter {
  width: 112.5px;
  height: 112.5px;
  left: 18.75px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .room-container.online-users-list.local-streams-2 .stream-box#my-stream-1.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .chat-conf-swtich-btn {
  display: none;
  position: absolute;
  top: 50%;
  border: 1px solid #000;
  border-bottom: none;
  font-size: 14px;
  padding: 4px 0 3px;
  text-align: center;
  width: 180px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference .chat-conf-swtich-btn.switch-chat-btn {
  right: -76px;
  color: #c1c1c1;
  border-color: #3f3f3f;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}
.app-wrap:not(.conf-compress-mode) .app-conference .chat-conf-swtich-btn.switch-chat-btn:hover {
  background: #fff;
  color: #333;
}
.app-wrap:not(.conf-compress-mode) .app-conference .chat-conf-swtich-btn.switch-chat-btn.blink {
  animation: videoConferenceBgBlink 3s infinite;
  -moz-animation: videoConferenceBgBlink 3s infinite;
  -webkit-animation: videoConferenceBgBlink 3s infinite;
}
.app-wrap:not(.conf-compress-mode) .app-conference .chat-conf-swtich-btn.switch-conf-btn {
  right: -104px;
  color: #838383;
  border-color: #eee;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}
.app-wrap:not(.conf-compress-mode) .app-conference .chat-conf-swtich-btn.switch-conf-btn:hover {
  background: #232323;
  color: #fff;
}
.app-wrap:not(.conf-compress-mode) .app-conference .share-info {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference .test-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #1d1d1d;
  z-index: 10;
  display: none;
  color: #b5b5b5;
}
.app-wrap:not(.conf-compress-mode) .app-conference .test-container .test-holder {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.app-wrap:not(.conf-compress-mode) .app-conference .test-container .test-holder .icon {
  font-size: 100px;
}
.app-wrap:not(.conf-compress-mode) .app-conference .test-container .test-holder .icon.icon-checkmark-circle {
  display: none;
  color: #68e29b;
  text-shadow: 0 0 10px rgba(116, 232, 165, 0.5);
}
.app-wrap:not(.conf-compress-mode) .app-conference .test-container .test-holder .test-text {
  margin-top: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference.test-mode .test-container {
  display: block;
}
.app-wrap:not(.conf-compress-mode) .app-conference.test-mode.test-done .test-container .test-holder .icon.icon-checkmark-circle {
  display: block;
}
.app-wrap:not(.conf-compress-mode) .app-conference.test-mode.test-done .test-container .test-holder .icon.icon-loading {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage {
  display: block;
  position: fixed!important;
  left: 0;
  bottom: 60px;
  width: 150px;
  top: auto;
  height: auto;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-0.stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-1.stream-box {
  width: 140px!important;
  height: 105px!important;
  transition: none;
  position: relative;
  top: auto;
  left: auto;
  transform: none!important;
  right: auto;
  bottom: auto!important;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-0.stream-box video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-1.stream-box video {
  width: 140px!important;
  height: 105px!important;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-0.stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-1.stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-0.stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-1.stream-box.no-video .soundmeter {
  width: 105px!important;
  height: 105px!important;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container #my-stage #my-stream-1 {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.local-streams-2 #my-stage #my-stream-1 {
  display: block;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others {
  height: 150px;
  top: auto;
  bottom: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box {
  position: relative;
  float: right;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  width: 200px;
  height: 150px;
  -webkit-transition: none;
  transition: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.show-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box .soundmeter > span,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.no-video .userImage {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.no-video .soundmeter,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.no-video .soundmeter {
  width: 150px;
  height: 150px;
  left: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.no-video .userImage,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.no-video .userImage {
  font-size: 25px;
  letter-spacing: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.fullscreen-selected-stream,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.fullscreen-selected-stream,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.fullscreen-selected-stream,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.fullscreen-selected-stream,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.fullscreen-selected-stream,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.fullscreen-selected-stream,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.fullscreen-selected-stream,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.fullscreen-selected-stream {
  position: fixed!important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 210px;
  height: auto;
  margin: 0;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.fullscreen-selected-stream video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.fullscreen-selected-stream video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.fullscreen-selected-stream video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.fullscreen-selected-stream video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.fullscreen-selected-stream video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.fullscreen-selected-stream video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.fullscreen-selected-stream video,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.fullscreen-selected-stream video {
  width: 100%!important;
  height: 100%!important;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen {
  display: block;
  font-size: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-3 #stage-others .stream-box.fullscreen-selected-stream .fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-4 #stage-others .stream-box.fullscreen-selected-stream .fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-5 #stage-others .stream-box.fullscreen-selected-stream .fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-6 #stage-others .stream-box.fullscreen-selected-stream .fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-7 #stage-others .stream-box.fullscreen-selected-stream .fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-8 #stage-others .stream-box.fullscreen-selected-stream .fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-9 #stage-others .stream-box.fullscreen-selected-stream .fullscreen,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-10 #stage-others .stream-box.fullscreen-selected-stream .fullscreen {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-2 #stage-others {
  height: 100%;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-2 #stage-others .stream-box.fullscreen-selected-stream {
  position: fixed!important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 60px;
  height: auto;
  margin: 0;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-2 #stage-others .stream-box.fullscreen-selected-stream .exit-fullscreen {
  display: block;
  font-size: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-2 #stage-others .stream-box.fullscreen-selected-stream .fullscreen {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container.online-users-2 #stage-others .stream-box.fullscreen-selected-stream video {
  width: 100%!important;
  height: 100%!important;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container .stream-box .stream-actions .stream-action-btn.enlarge,
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container .stream-box .stream-actions .stream-action-btn.exit-enlarge {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container .stream-box .fullscreen-selected-stream .stream-actions {
  height: 50px;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container .stream-box .fullscreen-selected-stream .stream-actions .stream-action-btn {
  width: 50px;
  height: 50px;
  font-size: 25px;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container .stream-box .fullscreen-selected-stream .stream-actions .stream-action-btn.fullscreen {
  display: none;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .room-container .stream-box .fullscreen-selected-stream .stream-actions .stream-action-btn.exit-fullscreen {
  display: block;
}
.app-wrap:not(.conf-compress-mode) .app-conference.fullscreen-mode .header .header-nav-actions a.btn-switch-view {
  display: none;
}
.app-wrap.conf-compress-mode .app-conference .header {
  width: 100%;
  height: 58px;
  background-color: #3f3f3f;
  position: absolute;
  bottom: 0;
  left: 0;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions {
  text-align: center;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"] {
  width: 70px;
  height: 58px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"] i.icon {
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"] i.icon:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"]:hover,
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].active {
  background-color: #0088df;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-link,
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-switch-compress,
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-video,
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-screen,
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-record,
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-mute {
  display: none!important;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-leave {
  background-color: #c0392b;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions a[class*="btn-"].btn-leave:hover {
  background-color: #962d22;
}
.app-wrap.conf-compress-mode .app-conference .header .header-nav-actions .btn-group {
  display: none;
}
.app-wrap.conf-compress-mode .app-conference .room-container {
  background-color: #232323;
  position: absolute;
  top: 60px;
  left: 0;
  bottom: 58px;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  white-space: nowrap;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box {
  width: 230px;
  height: 172.5px;
  -webkit-transition: initial;
  transition: initial;
  position: relative;
  margin: 1px 10px 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.no-video .userImage {
  width: 172.5px;
  height: 172.5px;
  left: 28.75px;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.no-video .soundmeter {
  width: 172.5px;
  height: 172.5px;
  left: 28.75px;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box .user-info {
  position: absolute;
  top: 3px;
  left: 2px;
  height: 26px;
  line-height: 26px;
  z-index: 6;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box .user-info span.userImage {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 26px;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box .user-info span.user-name {
  display: block;
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-size: 11px;
  margin-left: 13px;
  padding: 0 11px 0 17px;
  border-radius: 0 13px 13px 0;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box .stream-actions {
  display: none;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.no-video {
  background: transparent;
  box-shadow: none;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.no-video .userImage {
  position: absolute;
  top: 0;
  z-index: 1;
  line-height: inherit;
  font-size: 35px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.55);
  transform: scale(0.5);
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.no-video .soundmeter {
  position: absolute;
  top: 0;
  transform: scale(0.49);
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.no-video .soundmeter span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.1s ease;
  background: #233823 !important;
  background: rgba(67, 130, 67, 0.3) !important;
}
.app-wrap.conf-compress-mode .app-conference .room-container .stream-box.no-video .licode_player {
  visibility: hidden;
}
.app-wrap.conf-compress-mode .app-conference .room-container .waiting-message {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  text-align: center;
  display: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.app-wrap.conf-compress-mode .app-conference .room-container .waiting-message span {
  color: #fff;
  line-height: 60px;
  font-weight: 300;
}
.app-wrap.conf-compress-mode .app-conference .room-container.online-users-1 .waiting-message {
  display: block;
}
.app-wrap.conf-compress-mode .app-conference .chat-conf-swtich-btn {
  display: none;
}
.app-wrap.conf-compress-mode .app-conference .share-info {
  position: absolute;
  top: 0;
  height: 60px;
  left: 0;
  right: 0;
}
.app-wrap.conf-compress-mode .app-conference .share-info .conf-title {
  height: 40px;
  line-height: 37px;
  color: #FFF;
  margin: 10px;
}
.app-wrap.conf-compress-mode .app-conference .share-info .conf-title .item-logo {
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-right: 5px;
  text-align: center;
  font-size: 17px;
  vertical-align: middle;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.app-wrap.conf-compress-mode .app-conference .share-info .conf-title .item-logo > .userImage {
  width: 35px;
  height: 35px;
}
.app-wrap.conf-compress-mode .app-conference .share-info .conf-title.conf-share .item-logo,
.app-wrap.conf-compress-mode .app-conference .share-info .conf-title.conf-livechat .item-logo {
  background: #f77d33;
}
.app-wrap.conf-compress-mode .app-conference .share-info .conf-title .conf-title-text {
  height: 35px;
  display: inline-block;
  width: 180px;
  vertical-align: middle;
  font-size: 13px;
}
.app-wrap.conf-compress-mode .app-conference .test-container {
  display: none;
}
.conference-setting-form .audioOutput-test {
  color: #444444;
  cursor: pointer;
  font-size: 13px;
}
.conference-setting-form .audioOutput-test .icon {
  font-size: 15px;
  vertical-align: text-bottom;
}
.conference-setting-form .audioOutput-test.playing {
  color: #111;
}
.conference-setting-form #setting-stream {
  margin: 10px 0 15px;
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
  width: 342px;
  height: 256.5px;
  overflow: hidden;
}
.conference-setting-form #setting-stream.show-fullscreen {
  width: 100% !important;
  height: 100% !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  left: 0 !important;
  -webkit-transition: all 0 !important;
  transition: all 0 !important;
}
.conference-setting-form #setting-stream .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.conference-setting-form #setting-stream .soundmeter > span {
  width: 100%;
  min-width: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #449d44;
  background: rgba(77, 222, 77, 0.4);
}
.conference-setting-form #setting-stream.no-video .userImage {
  width: 256.5px;
  height: 256.5px;
  left: 42.75px;
}
.conference-setting-form #setting-stream.no-video .soundmeter {
  width: 256.5px;
  height: 256.5px;
  left: 42.75px;
}
.conference-setting-form #setting-stream.stream-audio {
  height: 157px;
  background: #eee;
}
.conference-setting-form #setting-stream.stream-audio .audio_player:before {
  font-family: 'Linearicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e8cb";
  display: block;
  height: 100%;
  line-height: 157px;
  color: #8c8c8c;
  font-size: 55px;
  text-align: center;
}
.conference-setting-form #setting-stream .setting-stream-loading {
  background-color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.custom-soundmeter {
  position: relative;
  height: 14px;
  overflow: hidden;
  margin-right: 3px;
}
.custom-soundmeter .soundmeter {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 14px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+ICA8ZyBpZD0ic3ZnXzEiPiAgIDxyZWN0IHN0cm9rZS13aWR0aD0iMCIgc3Ryb2tlPSIjNDQ5ZDQ0IiBpZD0ic3ZnXzIiIHJ5PSIyLjQxNSIgcng9IjIuNDE1IiBmaWxsPSIjZDBkMGQwIiBoZWlnaHQ9IjE0IiB3aWR0aD0iNyIgeT0iMCIgeD0iMCIvPiAgPC9nPiA8L2c+PC9zdmc+);
}
.custom-soundmeter .soundmeter > span {
  bottom: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 14px;
  position: absolute;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+ICA8ZyBpZD0ic3ZnXzEiPiAgIDxyZWN0IHN0cm9rZS13aWR0aD0iMCIgc3Ryb2tlPSIjNDQ5ZDQ0IiBpZD0ic3ZnXzIiIHJ5PSIyLjQxNSIgcng9IjIuNDE1IiBmaWxsPSIjNDQ5ZDQ0IiBoZWlnaHQ9IjE0IiB3aWR0aD0iNyIgeT0iMCIgeD0iMCIvPiAgPC9nPiA8L2c+PC9zdmc+);
}
.modal.incomming-call {
  width: 350px;
  border: none;
}
.modal.incomming-call .modal-header {
  text-align: center;
}
.modal.incomming-call .modal-body {
  text-align: center;
}
.modal.incomming-call .modal-body .userImage {
  position: relative;
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.modal.incomming-call .modal-body .userImage img {
  display: block;
}
.modal.incomming-call .modal-body .userImage:before,
.modal.incomming-call .modal-body .userImage:after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(90, 180, 90, 0.8);
  animation: incomming-call 2s infinite;
  z-index: -1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.modal.incomming-call .modal-body .userImage:after {
  animation-delay: 1s;
}
.modal.incomming-call .modal-body p {
  color: #838383;
  margin: 20px 0 0;
}
.modal.incomming-call .modal-footer {
  padding: 5px 15px;
  height: auto;
}
.modal.incomming-call .modal-footer .btn-group {
  width: 100%;
}
.modal.incomming-call .modal-footer .btn-group .btn {
  width: 33.33%;
  border-radius: 0;
  height: 100px;
  border: none;
  text-align: center;
  color: #838383;
  font-size: 12px;
}
.modal.incomming-call .modal-footer .btn-group .btn .icon {
  display: block;
  margin: 4px auto 10px;
  width: 55px;
  height: 55px;
  line-height: 54px;
  border-radius: 50%;
  border: solid 1px #4cae4c;
  font-size: 21px;
  color: #4cae4c;
  transition: all 0.3s ease;
  box-shadow: 0 0 1px #fff inset;
}
.modal.incomming-call .modal-footer .btn-group .btn:hover .icon {
  background: #5cb85c;
  color: #FFF;
}
.modal.incomming-call .modal-footer .btn-group .btn:active {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.modal.incomming-call .modal-footer .btn-group .btn.btn-reject-call .icon {
  border-color: #d43f3a;
  color: #d43f3a;
}
.modal.incomming-call .modal-footer .btn-group .btn.btn-reject-call:hover .icon {
  background: #d9534f;
  color: #FFF;
}
@keyframes incomming-call {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.conference-test-fail-tellothers legend {
  margin-bottom: 10px;
}
.conference-test-fail-tellothers legend .send-to-others {
  margin-top: 5px;
}
.conference-test-fail-tellothers form textarea.form-control {
  height: 100px;
}
#video-conference {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
#video-conference #video-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#video-conference #video-container #my-video {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: auto;
  top: auto;
  z-index: 10;
  width: 160px;
  height: 120px;
  box-shadow: 0 0 20px #111;
}
#video-conference .video-view {
  width: 300px;
  float: left;
  text-align: center;
}
#video-conference.mode-empty-room #video-container #my-video {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#video-conference.mode-room-1 #video-container .video-view {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#video-conference.mode-room-2 #video-container .video-view {
  width: 50%;
  height: 100%;
}
#video-conference.mode-room-3 #video-container .video-view {
  width: 33.3%;
  height: 100%;
}
#video-conference.mode-room-4 #video-container .video-view {
  width: 50%;
  height: 50%;
}
#video-conference.mode-room-5 #video-container .video-view,
#video-conference.mode-room-6 #video-container .video-view {
  width: 33.3%;
  height: 50%;
}
#video-conference.mode-room-5 #video-container > #my-video {
  position: relative;
  width: 33.3%;
  height: 50%;
  box-shadow: none;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#video-conference.mode-room-multiple #video-container .video-view {
  width: 33.3%;
  height: 33.3%;
}
#video-conference #video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
  height: 50px;
  line-height: 50px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;0+0,0.65+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.8)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-9 */
}
#video-conference #video-controls ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 100%;
}
#video-conference #video-controls ul li {
  display: inline-block;
  width: 60px;
  height: 100%;
}
#video-conference #video-controls ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #FFF;
  color: rgba(255, 255, 255, 0.35);
  font-size: 25px;
  transition: all ease 0.3s;
  position: relative;
}
#video-conference #video-controls ul li a:hover {
  color: #FFF;
}
#video-conference #video-popup {
  background: #FFF;
  padding: 15px;
  width: 400px;
  box-shadow: 0 0 30px #000;
  position: fixed;
  z-index: 15;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
}
.post-activity {
  /*z-index: 999; /* don't increase it */
  max-width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 288px;
  padding: 10px;
  background: #e8e8e8;
  min-height: 58px;
}
.post-activity .arrow-left-point-border {
  border-bottom: 6px solid rgba(0, 0, 0, 0);
  border-right: 11px solid #DBE1DF;
  border-top: 6px solid rgba(0, 0, 0, 0);
  height: 0;
  left: -11px;
  position: absolute;
  top: 21px;
  width: 0;
  z-index: 0;
}
.post-activity .post-inputs {
  background-color: #fcfcfc;
  border: 1px solid #dbe1df;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-left: 100px;
  position: relative;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.post-activity .post-inputs .post-inputs-inside {
  margin: 15px;
}
.post-activity .post-activity-inside .post-info {
  position: relative;
  min-width: 237px;
  margin: 0 35px;
  padding: 0 50px 0 36px;
}
.post-activity .post-activity-inside .post-info .add-new-items {
  position: absolute;
  float: left;
  right: 105px;
  bottom: 0;
  height: 36px;
  width: 85px;
  border-radius: 5px;
  background-color: #F77D33;
  color: #fff;
  line-height: 34px;
  cursor: pointer;
  text-align: center;
  z-index: 100;
}
.post-activity .post-activity-inside .post-info .add-new-items > span {
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}
.post-activity .post-activity-inside .post-info .add-post {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  float: left;
  height: 38px;
  background: rgba(0, 0, 0, 0);
  color: #838383;
  border: 1px solid #adadad;
  border-left: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  text-align: center;
  line-height: 36px;
}
.post-activity .post-activity-inside .post-info .add-post > span {
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.post-activity .post-activity-inside .post-info .add-post.disabled {
  opacity: 0.5;
  cursor: default;
}
.my-stuff-share .post-activity .post-activity-inside .post-info .add-post {
  display: none;
}
.post-activity .post-activity-inside .post-info .add-attach {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 38px;
  float: left;
  border-radius: 2px 0 0 2px;
  cursor: pointer;
  text-align: center;
  line-height: 36px;
  z-index: 3;
  color: #838383;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #838383;
  border-right: none;
}
.post-activity .post-activity-inside .post-info .add-attach i {
  color: #838383;
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.post-activity .post-activity-inside .post-info .post-input {
  font-family: 'Lato', sans-serif;
  box-shadow: none;
  display: block;
  width: 100%;
  border-radius: 0;
  line-height: 24px;
  height: 38px;
  font-weight: normal;
  border: none;
  min-height: 38px !important;
  max-height: 200px;
  resize: none;
  padding: 6px 10px;
  font-size: 15px;
  color: #333333;
  overflow-y: auto;
  border: 1px solid #adadad;
  border-left: none;
}
.post-activity .post-activity-inside .post-info .post-input::-webkit-scrollbar {
  width: 14px;
  height: 18px;
}
.post-activity .post-activity-inside .post-info .post-input::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  -webkit-border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
.post-activity .post-activity-inside .post-info .post-input::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.post-activity .post-activity-inside .post-info .post-input::-webkit-scrollbar-corner {
  background-color: transparent;
}
.post-activity .post-activity-inside .post-info .post-input::-webkit-scrollbar-track {
  background-color: #fff;
}
.post-activity .post-activity-inside .post-info .post-input:focus {
  outline: none;
  border-color: #838383;
  box-shadow: none;
}
.post-activity .post-activity-inside .post-info .post-input:focus + .add-post {
  background-color: #46B7FF;
  color: #fff;
  border: 1px solid #46B7FF;
  border-left: 0 solid #46B7FF;
}
.post-activity .post-activity-inside .post-info .post-input:focus + .add-post:hover {
  color: #fff;
  background-color: #13a3ff;
}
.my-stuff-share .post-activity .post-activity-inside .post-info .post-input {
  display: none;
}
.post-activity .post-activity-inside .post-info .typeahead.dropdown-menu {
  top: auto!important;
  bottom: 36px;
}
.post-activity .post-activity-inside .post-info .typeahead.dropdown-menu li a {
  float: none;
  margin-right: 0;
}
.post-activity .post-activity-inside .post-info .integration-services {
  height: 38px;
  text-transform: uppercase;
  width: 37px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  left: 0;
  bottom: 0;
}
.post-activity .post-activity-inside .post-info .integration-services button {
  height: 38px;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  width: 100%;
  text-transform: inherit;
  line-height: 36px;
  border-radius: 2px 0 0 2px;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  border: 1px solid #F77D33;
  background-color: #F77D33;
  border-right: none;
}
.post-activity .post-activity-inside .post-info .integration-services button label {
  display: none;
}
.my-stuff-share .post-activity .post-activity-inside .post-info .integration-services {
  position: relative;
  width: 194px;
}
.my-stuff-share .post-activity .post-activity-inside .post-info .integration-services button {
  border-radius: 2px;
  border-right: 1px solid #F77D33;
}
.my-stuff-share .post-activity .post-activity-inside .post-info .integration-services button label {
  display: inline;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu {
  max-width: 210px;
  width: 210px;
  text-transform: none;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li {
  text-align: left;
  float: left;
  width: 100%;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a {
  display: block;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a i.icon,
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a i[class*="shicon-"],
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a i.fa {
  margin-right: 10px;
  font-size: 20px;
  float: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a i.ho-icon {
  background-image: url('../../../assets/img/hyperoffice-icon.png');
  background-position: 0 0;
  background-size: cover;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 14px;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a span {
  margin: 2px 0px;
  display: inline-block;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a:hover {
  background-color: #46B7FF;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a:hover i.icon,
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a:hover i[class*="shicon-"],
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a:hover i.fa {
  margin-right: 15px;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li a:hover i.ho-icon {
  margin-right: 19px;
  background-position: 0 17px;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu > li.divider {
  margin: 4px 0;
}
.post-activity .post-activity-inside .post-info #audio-record {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  height: 36px;
  line-height: 36px;
  color: #898989;
  margin: 0;
}
.post-activity .post-activity-inside .post-info #audio-record:hover {
  color: #606060;
}
.post-activity .post-activity-inside .post-info #audio-record.active {
  color: #e2002d;
}
.post-activity .post-activity-inside .post-info #audio-record.active .timer {
  display: block;
}
.post-activity .post-activity-inside .post-info #audio-record .timer {
  display: none;
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  height: 36px;
  color: inherit;
  font-size: 11px;
}
.post-activity .post-activity-inside .post-info .tip {
  position: absolute;
  right: 0;
  bottom: -11px;
  font-size: 9px;
  color: #838383;
  font-style: italic;
}
.post-activity .post-activity-inside .post-info .tip a {
  display: inline;
  float: none;
  margin: 0;
}
.post-activity .post-activity-inside .post-info .is-typing {
  position: absolute;
  top: -40px;
  font-style: italic;
  font-family: 'Lato', sans-serif;
  color: #ababab;
  left: 0;
  width: 100%;
  height: 30px;
}
.post-activity .post-activity-inside .post-info .is-typing li {
  float: left;
  margin-right: 15px;
  height: 30px;
  line-height: 2.4;
  font-size: 14px;
}
.post-activity .post-activity-inside .post-info .is-typing li .dots {
  font-size: 2px;
  position: relative;
  width: 4em;
  height: 1em;
  margin: 20px 0 0 3px;
  float: right;
}
.post-activity .post-activity-inside .post-info .is-typing li .dots .dot {
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #999;
  position: absolute;
  animation: fade 2s ease infinite;
  opacity: 0;
}
.post-activity .post-activity-inside .post-info .is-typing li .dots .dot:nth-child(1) {
  left: 0;
}
.post-activity .post-activity-inside .post-info .is-typing li .dots .dot:nth-child(2) {
  left: 1.5em;
  animation-delay: 0.2s;
}
.post-activity .post-activity-inside .post-info .is-typing li .dots .dot:nth-child(3) {
  left: 3em;
  animation-delay: 0.5s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.my-stuff-share .post-activity .post-activity-inside .post-info {
  text-align: center;
}
.post-activity .post-activity-inside .post-info .wdt-emoji-popup {
  position: fixed;
  bottom: 50px;
  z-index: 10;
  width: 281px;
}
.post-activity .post-activity-inside .post-info .wdt-emoji-picker {
  right: 60px;
  bottom: 8px;
}
.post-activity .post-activity-inside .attached-items {
  margin-bottom: 5px;
  margin-top: 5px;
  margin-left: 88px;
}
.post-activity .post-activity-inside .post-activity-buttons .btn-attach-item {
  float: left;
  background-color: #129DEB;
  background-image: none;
  border: 1px solid #fff;
  border-radius: 30px;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  height: 34px;
  line-height: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.post-activity .post-activity-inside .post-activity-buttons .btn-attach-item i {
  font-size: 11px;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.post-activity .post-activity-inside .post-activity-buttons .btn-attach-item:hover i {
  color: #fff;
}
.post-activity .post-activity-inside .post-activity-buttons .btn-post-activity {
  background-color: #2FB18A;
  background-image: none;
  border: 1px solid #1e9b75;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  color: #FFFFFF;
  font-size: 14px;
  height: 34px;
  padding: 0 30px;
  line-height: 32px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  float: right;
}
.post-activity .post-activity-inside .post-activity-buttons .btn-post-activity:hover {
  background-color: #26bf91;
}
.post-activity .post-activity-inside .drag-post {
  display: none;
  position: absolute;
  background: rgba(224, 235, 241, 0.7);
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
}
.post-activity .post-activity-inside .drag-post .cover {
  width: 100%;
  height: 100%;
  display: table;
  border-radius: 20px;
}
.post-activity .post-activity-inside .drag-post .cover > span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.post-activity .post-activity-inside .drag-post .cover-border {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border-radius: 20px;
  border: 3px dashed #fff;
  background: transparent;
}
.post-activity .post-in-wrapper {
  float: right;
  margin-top: 2px;
}
.post-activity .post-in-wrapper select {
  width: 300px;
}
.select-attach {
  width: 502px;
  list-style: none;
  position: relative;
  overflow: hidden;
  height: auto !important;
}
.select-attach .select-item-li {
  color: #666666;
  cursor: default;
  float: left;
  line-height: 20px;
  list-style: none outside none;
  margin: 3px 5px 3px 0px;
  padding: 0;
  position: relative;
  background-color: #F9F9F9;
  height: 30px;
  min-width: 90px;
  display: inline;
  border-radius: 12px;
}
.select-attach .select-item-li .icon-left {
  background: #E0E0E0;
  padding-right: 5px;
  padding-top: 4px;
  margin-top: 0px;
  margin-bottom: 14px;
  padding-bottom: 5px;
  padding-left: 4px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  height: 100%;
}
.select-attach .select-item-li .remove {
  float: right;
  margin-top: 7px;
  margin-right: 7px;
  color: #ccc;
}
.select-attach .select-item-li .remove:hover {
  color: #999;
}
.select-attach .select-item-li.document-li {
  width: 100px;
  height: 90px;
  border-radius: 20px;
  position: relative;
}
.select-attach .select-item-li.document-li .select-item-div img {
  width: 100px;
  height: 90px;
  border-radius: 20px;
}
.select-attach .select-item-li.document-li:hover .cover {
  opacity: 1;
}
.select-attach .select-item-li .title-document {
  position: absolute;
  bottom: -20px;
  color: #8B8B8B;
  text-align: center;
  left: -5px;
  right: 0;
  width: 60px;
  float: left;
}
.select-attach .select-item-li .size {
  float: right;
  color: #8B8B8B;
}
.select-attach .select-item-li .cover {
  position: absolute;
  bottom: -1px;
  color: #8B8B8B;
  text-align: center;
  left: -1px;
  right: -1px;
  top: -1px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
}
.select-attach .select-item-li .cover span.finish {
  position: absolute;
  top: 31px;
  left: 32px;
  background: rgba(98, 115, 128, 0.5);
  width: 20px;
  padding: 5px 5px;
  border-radius: 50px;
}
.select-attach .select-item-li i {
  font-size: 12px;
  line-height: 19px;
  margin-left: 5px;
  float: left;
}
.select-attach .select-item-li span {
  float: left;
  display: block;
  font-size: 15px;
}
.select-attach .select-item-li span.icon-left {
  background: #E0E0E0;
  padding-right: 5px;
}
.select-attach .select-item-li span.title {
  padding: 1px 8px;
  margin-top: 4px;
  font-size: 13px;
}
.select-attach .select-item-li .select-item-a {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 3px 3px 0;
  color: #FFFFFF;
  display: block;
  float: right;
  font-size: 11px;
  font-weight: bold;
  height: 20px;
  line-height: 18px;
  margin: 0 0 0 5px;
  padding: 0 5px;
  -webkit-transition: all 0.2;
  transition: all 0.2;
}
.select-attach .select-item-li .select-item-a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.attach-post-list .select-item-li {
  color: #666666;
  cursor: default;
  float: left;
  line-height: 20px;
  list-style: none outside none;
  margin: 3px 5px 3px 0px;
  padding: 0;
  position: relative;
  background-color: #F9F9F9;
  height: 30px;
  min-width: 90px;
  display: inline;
  border-radius: 12px;
}
.attach-post-list .select-item-li .icon-left {
  background: #E0E0E0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border: 1px solid #EDEDED;
  margin: 0;
  display: inline-block;
  height: 100%;
  padding: 4px 4px 4px 8px;
}
.attach-post-list .select-item-li .remove {
  float: right;
  margin-top: 7px;
  margin-right: 7px;
  color: #ccc;
}
.attach-post-list .select-item-li .remove:hover {
  color: #999;
}
.attach-post-list .select-item-li .title {
  padding: 7px 8px;
  font-size: 13px;
  color: #666;
}
.attach-post-list .select-item-li.document-attach {
  height: auto;
}
.attach-post-list .select-item-li.document-attach .icon-left {
  display: block;
  float: left;
}
.attach-post-list .select-item-li.document-attach .title.ellipsis {
  width: auto;
  display: block;
  margin-left: 30px;
}
.attach-post-list .select-item-li.document-attach .title.ellipsis span.attach-title {
  display: block;
}
.select-item-li-doc {
  float: left;
  margin: 5px 5px 5px 5px;
  width: 90px;
}
.select-item-li-doc .background-doc {
  width: 90px;
  height: 80px;
  background: #ccc;
  border-radius: 10px;
}
.select-item-li-doc .background-doc img {
  width: 90px;
  height: 80px;
  background: #ccc;
  border-radius: 10px;
}
.select-item-li-doc .doc-title {
  color: #777;
  width: 70px;
  float: left;
}
.select-item-li-doc .remove-attach-browse {
  float: right;
  margin-left: 10px;
  color: #ccc;
}
.select-item-li-doc .remove-attach-browse:hover {
  color: #999;
}
.comments-block ul.comments-list {
  max-height: 350px;
  overflow: auto;
}
.comments-block ul.comments-list li {
  margin: 10px 0 12px;
  position: relative;
  padding-left: 35px;
}
.comments-block ul.comments-list li .comment-image {
  position: absolute;
  top: 0;
  left: 0;
}
.comments-block ul.comments-list li .comment-body {
  padding-bottom: 8px;
  border-bottom: solid 1px #eaeaea;
}
.comments-block ul.comments-list li .comment-body > p {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  line-height: 19px;
  height: 19px;
}
.comments-block ul.comments-list li .comment-body .comment-meta {
  color: #838383;
  font-size: 13px;
  line-height: 1.3;
}
.comments-block ul.comments-list li:last-child {
  margin-bottom: 0;
}
.comments-block ul.comments-list li:last-child .comment-body {
  border-bottom: none;
}
.comments-block ul.comments-list.commentTop {
  padding: 10px 30px 10px 0;
}
.comments-block .comment-form-holder {
  margin: 10px 0;
}
.comments-block .comment-form-holder .comment-form {
  position: relative;
  padding-left: 35px;
}
.comments-block .comment-form-holder .comment-form .comment-image-holder {
  position: absolute;
  top: 0;
  left: 0;
}
.comments-block .comment-form-holder .comment-form .comment-textarea textarea {
  font-size: 13px;
}
.comments-block .comment-form-holder .comment-form .wdt-emoji-popup {
  max-height: 233px;
  bottom: 100%!important;
  right: 0!important;
  top: auto!important;
  left: auto!important;
}
.comments-block .comment-form-holder .comment-form .wdt-emoji-popup .wdt-emoji-scroll-wrapper {
  height: 196px;
}
.comments-block .comment-form-holder .comment-form .wdt-emoji-popup .wdt-emoji-footer {
  display: none;
}
.conversation-highlight {
  background-color: #444;
  color: white;
}
.conversation-highlight a {
  color: white;
}
.conversation-default:hover {
  background-color: #777;
}
.conversation-highlight:hover {
  background-color: #444;
}
.conversation-default {
  padding: 2px 4px 3px;
  padding: 1px 4px 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 10.998px;
  font-weight: bold;
  line-height: 14px;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  line-height: 18px;
}
.info-bar .status {
  padding: 2px 0px 3px 5px;
  line-height: 20px;
  border-top: 1px solid #ccc;
  position: relative;
  background-color: #444;
  cursor: pointer;
  height: 32px;
}
.info-bar .status .my-status-txt {
  color: white;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 20px;
  white-space: nowrap;
  display: block;
  margin-top: 5px;
}
.info-bar .status #my-status-img {
  float: left;
  margin: 6px 4px 0 0;
  height: 12px;
  cursor: pointer;
  width: 12px;
}
.info-bar .status i {
  font-size: 18px;
}
.info-bar #changeStatus-tab {
  cursor: pointer;
  position: absolute;
  top: 65px;
  height: 125px;
  right: 0;
  left: 0px;
  z-index: 333;
  background-color: white;
  box-shadow: 0 0px 10px #000000;
  color: #7F7F95;
  display: none;
  padding: 6px 8px 4px;
  font-size: 12px;
}
.info-bar #changeStatus-tab .reset-status {
  top: 12px;
  right: 60px;
  width: 16px;
  height: 20px;
  position: absolute;
  z-index: 2;
  right: 15px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAlUlEQVR42o2RSQrDMAxFc5KCD5MTBgw5ioejeFMoybYhyaLdqPpFKp9AaAwPeXgSQu5E5EvO%2BaZE5a6IxRH37rjYKyukI6WUDe%2FwvOKTBSalhIQFHuTBH7Baa9gj4siJA%2BSHwgJHbmeC%2FKLso8i8%2F1ZGz1w5Xuw5Qg42Hjmj1rrD%2B835LEHvd58z%2F2CwH5tNnO0c3PkAGud706ytt0YAAAAASUVORK5CYII%3D") no-repeat;
}
.info-bar #changeStatus-tab input::-ms-clear {
  display: none;
}
.info-bar #changeStatus-tab input {
  height: 20px;
  width: 174px;
  margin-bottom: 0px;
}
.info-bar #changeStatus-tab img {
  display: inline-block;
  width: 12px;
  height: 12px;
}
.info-bar #changeStatus-tab ul {
  list-style: none;
  margin: 0px;
  padding: 0;
}
.info-bar #changeStatus-tab ul li {
  padding: 3px 4px;
  cursor: pointer;
}
.info-bar #changeStatus-tab ul li:hover {
  background-color: #a1a1a1;
  color: white;
}
.page-user .chat-holder {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.page-user .chat-holder .main-holder {
  position: absolute;
  padding: 0;
  top: 60px;
  left: 0;
  bottom: 56px;
  overflow: auto;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.page-user .chat-holder .chat-header {
  height: 60px;
  position: absolute;
  background-color: #3f3f3f;
  left: 0;
  right: 0;
}
.page-user .chat-holder .chat-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-user .chat-holder .chat-header ul li {
  float: left;
}
.page-user .chat-holder .chat-header ul li.pre-chat-title {
  width: 60px;
  height: 60px;
}
.page-user .chat-holder .chat-header ul li.pre-chat-title .item-logo {
  width: 100%;
  height: 100%;
}
.page-user .chat-holder .chat-header ul li.pre-chat-title .item-logo .userImage {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.page-user .chat-holder .chat-header ul li.pre-chat-title .item-logo .userImage span {
  line-height: 60px;
}
.page-user .chat-holder .chat-header ul li.pre-chat-title .item-logo .userImage img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.page-user .chat-holder .chat-header ul li.chat-title {
  overflow: hidden;
  height: 60px;
  padding: 0 20px;
  color: #fff;
}
.page-user .chat-holder .chat-header ul li.chat-title span {
  font-size: 16px;
  font-weight: 300;
  line-height: 3.8;
}
.page-user .chat-holder .chat-header ul li.header-nav-actions {
  background: #3f3f3f;
  width: auto;
  height: 60px;
  padding: 0;
  text-align: center;
}
.page-user .chat-holder .chat-header ul li.header-nav-actions a[class*="btn-"] {
  display: inline-block;
  width: 70px;
  height: 60px;
  float: left;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-user .chat-holder .chat-header ul li.header-nav-actions a[class*="btn-"] .icon {
  font-size: 20px;
  color: #fff;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-user .chat-holder .chat-header ul li.header-nav-actions a[class*="btn-"]:hover {
  background-color: #46B7FF;
}
.page-user .chat-holder .chat-header ul li.header-nav-actions a[class*="btn-"]:hover {
  background-color: #0088df;
}
.page-user .chat-holder .chat-header ul li.header-nav-actions a[class*="btn-"].active {
  background-color: #f2f2f2;
}
.page-user .chat-holder .chat-header ul li.header-nav-actions a[class*="btn-"].active .icon {
  color: #838383;
}
.page-user .chat-holder .chat-sidebar {
  width: 288px;
  display: block;
  background: #F2F2F2;
  position: absolute;
  bottom: 0;
  top: 60px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] {
  background-color: #f2f2f2;
  width: 288px;
  height: 100%;
  position: absolute;
  left: 288px;
  top: 0;
  z-index: 1;
  padding: 15px 20px;
  border-left: 1px solid #eaeaea;
  -webkit-transition: left 0.4s 0.4s;
  transition: left 0.4s 0.4s;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"].active {
  left: 0;
  z-index: 100;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .header {
  color: #838383;
  font-size: 11px;
  margin-bottom: 15px;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .header span.number {
  margin-right: 5px;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .header .icon {
  color: #838383;
  font-size: 24px;
  margin-right: 5px;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .header .text {
  color: #838383;
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .pre-body {
  margin-bottom: 10px;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .body {
  margin-bottom: 20px;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .btn-sidebar {
  padding: 5px;
  border: 1px solid #838383;
  border-radius: 4px;
  color: #838383;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px;
  width: 100%;
  height: 32px;
  position: relative;
  overflow: hidden;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .btn-sidebar i.icon {
  margin-right: 5px;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .btn-sidebar span {
  display: block;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .btn-sidebar:hover i.icon {
  top: -50%;
}
.page-user .chat-holder .chat-sidebar [class*="sidebar-"] .btn-sidebar:hover span {
  top: 50%;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-form {
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-form input {
  border-radius: 4px 0 0 4px;
  line-height: 36px;
  outline: none;
  font-size: 11px;
  padding: 0 10px;
  height: 38px;
  border: 1px solid #838383;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-form input:focus {
  outline: none;
  border: 1px solid #46B7FF;
  box-shadow: none;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-form input:focus + span > button {
  background-color: #46B7FF;
  color: #fff;
  border: 1px solid #46B7FF;
  border-left: 0 solid #46B7FF;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-form input:focus + span > button:hover {
  color: #fff;
  background-color: #13a3ff;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-form button {
  border-radius: 0 4px 4px 0;
  background-color: rgba(0, 0, 0, 0);
  color: #838383;
  height: 38px;
  width: 38px;
  outline: none;
  border: 1px solid #838383;
  border-left: 0px solid #838383;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item {
  padding: 10px 0;
  border-bottom: solid 1px #DEDEDE;
  border-top: solid 1px #FFF;
  overflow: auto;
  overflow-x: hidden;
  font-size: 11px;
  cursor: pointer;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .user-link {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .user-link img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item a {
  color: inherit;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item p {
  margin: 0 0 0 40px;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-date {
  font-size: 10px;
}
.page-user .chat-holder .chat-sidebar .sidebar-activity-search .search-results ul.search-results-list li.not-found {
  padding: 20px 10px;
  text-align: center;
  font-weight: bold;
  color: #666;
}
.page-user .chat-holder .post-activity {
  left: 0;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.page-user .chat-holder[data-sidebar-fluid="false"][data-sidebar="false"] .main-holder {
  right: 0;
}
.page-user .chat-holder[data-sidebar-fluid="false"][data-sidebar="false"] .chat-sidebar {
  right: -288px;
}
.page-user .chat-holder[data-sidebar-fluid="false"][data-sidebar="false"] .post-activity {
  right: 0;
}
.page-user .chat-holder[data-sidebar-fluid="false"][data-sidebar="true"] .main-holder {
  right: 288px;
}
.page-user .chat-holder[data-sidebar-fluid="false"][data-sidebar="true"] .chat-sidebar {
  right: 0;
}
.page-user .chat-holder[data-sidebar-fluid="false"][data-sidebar="true"] .post-activity {
  right: 288px;
}
.page-user .chat-holder[data-sidebar-fluid="true"][data-sidebar="false"] .main-holder {
  right: 0;
}
.page-user .chat-holder[data-sidebar-fluid="true"][data-sidebar="false"] .chat-sidebar {
  right: -288px;
}
.page-user .chat-holder[data-sidebar-fluid="true"][data-sidebar="false"] .post-activity {
  right: 0;
}
.page-user .chat-holder[data-sidebar-fluid="true"][data-sidebar="true"] .main-holder {
  right: 0;
}
.page-user .chat-holder[data-sidebar-fluid="true"][data-sidebar="true"] .chat-sidebar {
  right: 0;
}
.page-user .chat-holder[data-sidebar-fluid="true"][data-sidebar="true"] .post-activity {
  right: 0;
}
.user-activities .no-activity {
  position: absolute;
  top: 50%;
  left: 45%;
  border: 1px solid #ccc;
  padding: 15px 15px;
  border-radius: 5px;
  text-align: center;
}
.user-activities .no-activity .not-here {
  color: #999;
}
.share-activities,
.user-activities {
  width: 100%;
  margin: 0 auto 30px;
  font-family: 'Lato', sans-serif;
}
.share-activities .list-content,
.user-activities .list-content {
  padding-top: 10px;
  position: relative;
}
.share-activities .list-content .load-more,
.user-activities .list-content .load-more {
  text-align: center;
  margin: 0;
}
.share-activities .list-content .load-more .load,
.user-activities .list-content .load-more .load {
  background: #f7f7f7;
  display: none;
  font-size: 12px;
  border: 1px solid #d4d4d4;
  border-bottom-color: #b5b5b5;
  border-radius: 3px;
  color: #838383;
  font-style: normal;
  padding: 6px;
  margin: 10px 0;
  width: 200px;
  text-align: center;
}
.share-activities .list-content .load-more .load:hover,
.user-activities .list-content .load-more .load:hover {
  color: #676767;
  border-color: #c5c5c5;
  border-bottom-color: #848484;
}
.share-activities .list-content .load-more .nothing span,
.user-activities .list-content .load-more .nothing span {
  display: none;
  background: #fff;
  font-size: 12px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  color: #eaeaea;
  font-style: normal;
  padding: 3px 20px;
  margin: 10px 0;
}
.share-activities .list-content .load-more .loading span,
.user-activities .list-content .load-more .loading span {
  display: none;
  background: #f7f7f7;
  font-size: 12px;
  border: 1px solid #d4d4d4;
  border-bottom-color: #b5b5b5;
  border-radius: 3px;
  color: #838383;
  font-style: normal;
  padding: 6px;
  width: 200px;
  text-align: center;
  margin: 10px 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity,
.user-activities .list-content .list-main .list-container ul.list-activity {
  padding: 0;
  margin: 0;
  list-style: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li,
.user-activities .list-content .list-main .list-container ul.list-activity > li {
  margin: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-date,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-date {
  position: relative;
  text-align: center;
  color: #838383;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  padding: 5px;
  width: 100%;
  margin: 0 0 10px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-date:before,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-date:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
  top: 12px;
  left: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-date:after,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-date:after {
  content: attr(title);
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  padding: 10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.same-post-date .activity-date,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.same-post-date .activity-date {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-seen,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-seen {
  font-style: italic;
  line-height: 19px;
  color: #838383;
  font-size: 11px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-seen a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-seen a {
  color: #838383;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-seen a.seen-more,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item .activity-seen a.seen-more {
  color: #337ab7!important;
  font-style: normal;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item .open-search,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item .open-search {
  font-weight: bold;
  color: #337ab7;
  cursor: pointer;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post {
  margin-top: 4px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message {
  overflow: hidden;
  padding: 0 25px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img {
  position: relative;
  float: left;
  margin-top: 4px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img > a.img-post,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img > a.img-post {
  float: left;
  display: block;
  border: none;
  width: 48px;
  height: 52px;
  padding: 2px 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img > a.img-post img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img > a.img-post img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img a.item-img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img a.item-img {
  display: inline-block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img a.item-img img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .user-img a.item-img img {
  width: 26px;
  height: 26px;
  border: 1px solid #C8C8C8;
  border-radius: 50%;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container {
  position: relative;
  overflow: hidden;
  margin-left: 48px;
  padding-bottom: 4px;
  padding-top: 4px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options {
  width: 30%;
  min-width: 150px;
  display: none;
  text-align: right;
  height: 22px;
  position: absolute;
  right: 0;
  top: 9px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options a {
  color: #838383;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark .fa,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark .fa {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark.marked i,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark.marked i {
  color: yellow;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark.marked .icon,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark.marked .icon {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark.marked .fa,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .message-options-bookmark.marked .fa {
  display: inline;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .activity-time,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-options .activity-time {
  cursor: default;
  /*
												position: absolute;
												top: 50%;
												right: 5px;
												left: auto;
												.translate(0,-50%);
												color: #a9a9a9;
												font-size: 12px;
												.transition(all 0.2s);
												.icon{
													color: #a9a9a9;
												}
												*/
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble {
  max-width: 65%;
  margin-left: 10px;
  padding: 4px 5px;
  min-width: 180px;
  display: block;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .user-name,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .user-name {
  line-height: 20px;
  color: #009688;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 3px;
  font-size: 14px;
  text-decoration: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .user-name:hover,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .user-name:hover {
  color: #333;
  opacity: 1;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info {
  line-height: 19px;
  position: relative;
  color: #838383;
  font-size: 11px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info .btn-toggle-comments,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info .btn-toggle-comments {
  display: inline-block;
  font-weight: bold;
  font-size: 10px;
  color: #838383;
  cursor: pointer;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info .btn-toggle-comments .icon,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info .btn-toggle-comments .icon {
  font-size: 15px;
  font-weight: 700;
  padding: 0px 0 0 2px;
  line-height: 10px;
  color: #838383;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-info a {
  color: #838383;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .comments-block,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .comments-block {
  margin-top: 0;
  padding: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-target,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-target {
  font-size: 13px;
  padding: 4px 7px;
  margin-bottom: 5px;
  cursor: pointer;
  border-left-color: #d6d6d6;
  color: #777;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-target .rtl,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .message-target .rtl {
  direction: rtl;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .resend-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .resend-message {
  display: none;
  float: right;
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .resend-message i,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .resend-message i {
  color: #d43f3a;
  margin: 0 4px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .resend-message span,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble .resend-message span {
  position: absolute;
  top: 50%;
  right: 40px;
  font-size: 10px;
  color: #d43f3a;
  white-space: nowrap;
  line-height: 10px;
  margin-top: -5px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.error,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.error {
  background-color: rgba(212, 63, 58, 0.2) !important;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.error .resend-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.error .resend-message {
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending {
  background-color: rgba(212, 63, 58, 0.2) !important;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending .resend-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending .resend-message {
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending .resend-message i,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending .resend-message i {
  -webkit-animation: rotate 0.8s linear infinite;
  -o-animation: rotate 0.8s linear infinite;
  animation: rotate 0.8s linear infinite;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending .resend-message span,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble.sending .resend-message span {
  display: none;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message {
  font-size: 13px;
  line-height: 1.5;
  overflow: hidden;
  word-break: break-word;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message.rtl,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message.rtl {
  direction: rtl;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message {
  background: #f8f8f8;
  color: #868686;
  position: relative;
  padding: 12px 0 0 12px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message i,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message i {
  font-size: 24px;
  color: #ccc;
  margin-right: 3px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message i.object-deleted,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message i.object-deleted {
  font-size: 13px;
  color: #868686;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message .inner_forward_message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .forwarded_message .inner_forward_message {
  font-style: oblique;
  padding-bottom: 12px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message a {
  /* 	grabbed from cssticks to break lines with long urls
    https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
  */
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message span.emoji-outer,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message span.emoji-outer {
  margin-top: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .user-mention,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .user-mention {
  font-weight: 700;
  color: #097ea9;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .object-deleted,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message .object-deleted {
  color: #838383;
  font-size: 13px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message p:last-child,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message p:last-child {
  margin-bottom: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .edit-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .edit-message {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .edit-message textarea,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .edit-message textarea {
  resize: none;
  min-height: 34px;
  overflow: hidden;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-translation,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-translation {
  margin: 10px 0 5px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-translation label,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-translation label {
  font-weight: 400;
  margin: 0;
  color: #636363;
  font-style: italic;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-translation p,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-translation p {
  margin: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments {
  list-style: none;
  margin: 0;
  width: 100%;
  max-width: 400px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li {
  margin-top: 10px;
  margin-left: 0;
  margin-bottom: 10px;
  padding: 9px;
  border-left: solid 5px #CCC;
  background: #f8f8f8;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05), 0 1px 1px rgba(0, 0, 0, 0.15);
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li p,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li p {
  margin-bottom: 5px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li p:last-child,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li p:last-child {
  margin-bottom: 0!important;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-author,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-author {
  height: 18px;
  line-height: 18px;
  color: #828282;
  font-size: 12.5px;
  font-weight: bold;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-author a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-author a {
  color: inherit;
  line-height: 18px;
  display: block;
  height: 18px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-author img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-author img {
  border-radius: 50%;
  width: 18px;
  vertical-align: middle;
  display: block;
  margin-right: 5px;
  float: left;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-title,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-title {
  font-weight: bold;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-text,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-text {
  font-size: 13px;
  letter-spacing: .2px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-text:last-child,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-text:last-child {
  margin-bottom: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-img img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-attachments li .message-attachment-img img {
  max-height: 150px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message:hover,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message:hover {
  background: #f8f8f8;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message:hover .message-options,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message:hover .message-options {
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share {
  margin-top: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container::before,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container::before {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container .user-name,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container .user-name {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container .message-bubble,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container .message-bubble {
  padding-top: 2px;
  padding-bottom: 2px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container .message-options,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .message-container .message-options {
  top: 4px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .user-img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.same-post-share .activity-message .user-img {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.edit-message-mode .activity-message .message-container .message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.edit-message-mode .activity-message .message-container .message {
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.edit-message-mode .activity-message .message-container .edit-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.edit-message-mode .activity-message .message-container .edit-message {
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post:hover .activity-message .message-container .message-options,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post:hover .activity-message .message-container .message-options {
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.unsaved-new-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.unsaved-new-message {
  opacity: 0.7;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.post.highlight .activity-message,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.post.highlight .activity-message {
  background: #e3f5f5;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper {
  max-width: 550px;
  width: 90%;
  margin: 10px auto 15px;
  position: relative;
  transition: all 0.7s ease;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  position: relative;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container .buttons-holder,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container .buttons-holder {
  position: absolute;
  top: 18px;
  right: 15px;
  display: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container .buttons-holder a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container .buttons-holder a {
  color: #333;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container .buttons-holder a:hover,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container .buttons-holder a:hover {
  color: #838383;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container:hover .buttons-holder,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .info-container:hover .buttons-holder {
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .activity-seen,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .activity-seen {
  margin: 0 16px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content {
  color: #838383;
  font-size: 14px;
  font-style: italic;
  font-family: inherit;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content a,
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content span,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content span {
  line-height: 25px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title a,
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a {
  color: #0A99E0;
  text-decoration: none;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title a:hover,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title a:hover,
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a:hover,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a:hover {
  color: #2E6A88;
  opacity: 1;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title .recording,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title .recording {
  color: #cf0808;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title .play,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-title .play {
  color: #218d0b;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content a.item-img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content a.item-img {
  display: inline-block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content a.item-img img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content a.item-img img {
  width: 26px;
  height: 26px;
  border: 1px solid #C8C8C8;
  border-radius: 50%;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .row-icon,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .row-icon {
  float: left;
  margin: 0 10px 0 0;
  color: #838383;
  font-size: 20px;
  line-height: 22px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .source-icon,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .source-icon {
  float: right;
  margin: 0;
  color: #838383;
  font-size: 20px;
  line-height: 22px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .feed-name,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .feed-name {
  max-width: 140px;
  line-height: 18px;
  display: inline-block;
  width: auto;
  margin-bottom: -4px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .feed-name > a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .feed-name > a {
  line-height: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .has-image,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .has-image {
  display: inline-block;
  margin-bottom: 180px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .has-image .feed-image,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .has-image .feed-image {
  position: absolute;
  top: 50px;
  left: 45px;
  max-width: 100%;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .has-image .feed-image img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .has-image .feed-image img {
  height: 160px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .comment,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .comment {
  color: #838383;
  font-size: 10px;
  cursor: pointer;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .comment .icon,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .comment .icon {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 0 0 0px;
  color: #838383;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player {
  height: 25px;
  line-height: 25px;
  display: inline-block;
  margin: 0 5px;
  color: #B6B6B6;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player span.audio-play,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player span.audio-play,
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player span.audio-pause,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player span.audio-pause {
  cursor: pointer;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player span.audio-pause,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player span.audio-pause {
  display: none;
  color: #898989;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player .audio-duration,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player .audio-duration,
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player .audio-size,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .audio-player .audio-size {
  font-size: 11px;
  margin: 0 5px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content blockquote.target-activity,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content blockquote.target-activity {
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content blockquote.target-activity:last-child,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content blockquote.target-activity:last-child {
  margin-bottom: 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .user-comment p,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .user-comment p {
  margin-bottom: 0;
  font-style: normal;
  font-weight: bold;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body {
  max-height: 170px;
  margin-top: 5px;
  margin-left: 30px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a {
  max-width: 100%;
  display: block;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a img,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body a img {
  max-height: 160px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body .img-loading,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body .img-loading {
  height: 170px;
  line-height: 170px;
  width: 170px;
  text-align: center;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body .img-loading .icon,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .activity-body .img-loading .icon {
  color: #ddd;
  font-size: 20px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .btn-group .btn-conf-duration,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .content .btn-group .btn-conf-duration {
  cursor: default;
  color: #676767;
  font-style: normal;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .conference-details .conference-details-head,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .conference-details .conference-details-head {
  text-align: center;
  color: #838383;
  position: relative;
  height: 1px;
  background: #eee;
  margin: 25px 0 0;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .conference-details .conference-details-head > span,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity .activity-wrapper .conference-details .conference-details-head > span {
  position: absolute;
  background: #fff;
  line-height: 14px;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 11px;
  padding: 0 8px;
  letter-spacing: 1px;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity.open-conference-details .activity-wrapper,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity.open-conference-details .activity-wrapper {
  max-width: 100%;
}
.share-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity.open-conference-details .activity-wrapper .content .activity-body,
.user-activities .list-content .list-main .list-container ul.list-activity > li.item.report-activity.open-conference-details .activity-wrapper .content .activity-body {
  margin: 10px 20px;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner,
.user-activities .list-content .list-main .empty-share .empty-share-inner {
  font-family: inherit;
  width: 450px;
  margin: 20px auto;
  text-align: center;
  color: #838383;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner div.cat-img,
.user-activities .list-content .list-main .empty-share .empty-share-inner div.cat-img {
  width: 355px;
  height: 107px;
  background-image: url(../../../assets/img/sleeping-cat.png);
  display: inline-block;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner h2,
.user-activities .list-content .list-main .empty-share .empty-share-inner h2 {
  color: #F77D33;
  font-weight: normal;
  font-size: 30px;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner h3,
.user-activities .list-content .list-main .empty-share .empty-share-inner h3 {
  font-weight: normal;
  font-size: 18px;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner ul,
.user-activities .list-content .list-main .empty-share .empty-share-inner ul {
  margin-top: 25px;
  text-align: left;
  font-size: 20px;
  line-height: 2;
  padding-left: 40px;
  padding-right: 40px;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner ul li,
.user-activities .list-content .list-main .empty-share .empty-share-inner ul li {
  font-family: inherit;
  border-top: solid 1px #f4f4f4;
  padding: 4px;
  font-style: italic;
  font-size: 15px;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner ul li .icon,
.user-activities .list-content .list-main .empty-share .empty-share-inner ul li .icon {
  color: #BBB9B2;
  margin-right: 7px;
  font-size: 18px;
}
.share-activities .list-content .list-main .empty-share .empty-share-inner ul li:last-child,
.user-activities .list-content .list-main .empty-share .empty-share-inner ul li:last-child {
  border-bottom: solid 1px #f4f4f4;
}
.share-activities .list-content .go-to-end,
.user-activities .list-content .go-to-end {
  position: fixed;
  right: 20px;
  bottom: 75px;
  background: #f7f7f7;
  font-size: 12px;
  border: 1px solid #d4d4d4;
  border-bottom-color: #b5b5b5;
  border-radius: 3px;
  color: #838383;
  font-style: normal;
  padding: 3px 10px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
}
.share-holder[data-sidebar="true"] .share-activities .list-content .go-to-end,
.share-holder[data-sidebar="true"] .user-activities .list-content .go-to-end {
  right: 308px;
}
.share-activities .list-content .go-to-end:hover,
.user-activities .list-content .go-to-end:hover {
  color: #676767;
  border-color: #c5c5c5;
  border-bottom-color: #848484;
}
.share-activities .list-content .jump_date,
.user-activities .list-content .jump_date {
  position: fixed;
  right: 20px;
  top: 102px;
  background: #fffffb;
  box-shadow: 0px 2px 4px #c5c5c5;
}
.share-holder[data-sidebar="true"] .share-activities .list-content .jump_date,
.share-holder[data-sidebar="true"] .user-activities .list-content .jump_date {
  right: 308px;
}
.share-activities .list-content #filterUserBox .userList,
.user-activities .list-content #filterUserBox .userList {
  position: fixed;
  top: 75px;
  left: 300px;
}
.share-activities .list-content #filterUserBox .userList .userFilter,
.user-activities .list-content #filterUserBox .userList .userFilter {
  background: #f7f7f7;
  border: 1px solid #d4d4d4;
  border-bottom-color: #b5b5b5;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  color: #838383;
  margin: 0 3px;
  cursor: pointer;
  display: inline-block;
}
.share-activities .list-content #filterUserBox .userList .userFilter:hover,
.user-activities .list-content #filterUserBox .userList .userFilter:hover {
  color: #676767;
  border-color: #c5c5c5;
  border-bottom-color: #848484;
}
.share-activities .list-content #filterUserBox .userList .userFilter:after,
.user-activities .list-content #filterUserBox .userList .userFilter:after {
  content: "\2715";
  margin-left: 5px;
}
.share-activities .list-content .jump-to-date,
.user-activities .list-content .jump-to-date {
  position: fixed;
  right: 20px;
  top: 75px;
  background: #f7f7f7;
  font-size: 12px;
  border: 1px solid #d4d4d4;
  border-bottom-color: #b5b5b5;
  border-radius: 3px;
  color: #838383;
  font-style: normal;
  padding: 3px 10px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
}
.share-holder[data-sidebar="true"] .share-activities .list-content .jump-to-date,
.share-holder[data-sidebar="true"] .user-activities .list-content .jump-to-date {
  right: 308px;
}
.share-activities .list-content .jump-to-date:hover,
.user-activities .list-content .jump-to-date:hover {
  color: #676767;
  border-color: #c5c5c5;
  border-bottom-color: #848484;
}
.share-activities .new-message-alert,
.user-activities .new-message-alert {
  position: fixed;
  bottom: 70px;
  left: 50%;
  border: 1px solid #46B7FF;
  background-color: #fff;
  padding: 7px 10px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-animation: play 0.7s infinite;
  /* Safari 4+ */
  -moz-animation: play 0.7s infinite;
  /* Fx 5+ */
  -o-animation: play 0.7s infinite;
  /* Opera 12+ */
  animation: play 0.7s infinite;
}
.share-activities .new-message-alert span,
.user-activities .new-message-alert span {
  font-size: 16px;
  text-decoration: none;
  color: #46B7FF;
  position: relative;
  padding-right: 28px;
  display: block;
}
.share-activities .new-message-alert span .icon,
.user-activities .new-message-alert span .icon {
  font-size: 20px;
  position: absolute;
  right: 0px;
  top: 1px;
}
@-webkit-keyframes play {
  0% {
    bottom: 72px;
  }
  50% {
    bottom: 70px;
  }
  100% {
    bottom: 72px;
  }
}
@-moz-keyframes play {
  0% {
    bottom: 72px;
  }
  50% {
    bottom: 70px;
  }
  100% {
    bottom: 72px;
  }
}
@-o-keyframes play {
  0% {
    bottom: 72px;
  }
  50% {
    bottom: 70px;
  }
  100% {
    bottom: 72px;
  }
}
@keyframes play {
  0% {
    bottom: 72px;
  }
  50% {
    bottom: 70px;
  }
  100% {
    bottom: 72px;
  }
}
.share-activities ul.comments-list li .comment-container,
.user-activities ul.comments-list li .comment-container {
  float: left;
  width: 100%;
  position: relative;
}
.share-activities ul.comments-list li .comment-container .edit-input-comment,
.user-activities ul.comments-list li .comment-container .edit-input-comment {
  width: 220px;
  height: 25px;
  padding: 0px 12px;
  font-size: 11px;
  background: #fff;
  border: none;
  box-shadow: none;
  border-radius: 10px;
}
.share-activities ul.comments-list li .comment-container .edit-input-comment.not-post,
.user-activities ul.comments-list li .comment-container .edit-input-comment.not-post {
  background: #F6F6F6;
}
.share-activities ul.comments-list li .comment-container .change-comment,
.user-activities ul.comments-list li .comment-container .change-comment {
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 10px;
}
.share-activities ul.comments-list li .comment-container .change-comment .btn,
.user-activities ul.comments-list li .comment-container .change-comment .btn {
  padding: 0;
  font-size: 11px;
  color: #bcbcbc;
}
.share-activities ul.comments-list li .comment-container .change-comment .btn:hover,
.user-activities ul.comments-list li .comment-container .change-comment .btn:hover {
  color: #a5a5a5;
}
.share-activities ul.comments-list li .comment-container .change-comment .dropdown-menu,
.user-activities ul.comments-list li .comment-container .change-comment .dropdown-menu {
  min-width: 70px;
  margin: -5px -28px;
  padding: 4px 0px 0px;
}
.activity-page {
  font-family: Lato, sans-serif;
}
.modal .activity-page {
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.activity-page .activity-details {
  padding: 10px;
  overflow: auto;
  border-bottom: 1px solid #EFEFEF;
}
.activity-page .activity-details .activity-message {
  margin-left: 58px;
  padding: 4px 5px;
}
.activity-page .activity-details .activity-message a.user-name {
  color: #2E6A88;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}
.activity-page .activity-details .activity-message a.user-name:hover {
  color: #333;
}
.activity-page .wall-content {
  padding: 10px 25px 15px;
}
.page-share .share-holder {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
}
.page-share .share-holder .share-header {
  height: 60px;
  position: absolute;
  right: 0;
  /*z-index: 100;*/
  top: 0;
  left: 0;
  background: #3f3f3f;
}
.page-share .share-holder .share-header a {
  color: white;
}
.page-share .share-holder .share-header .header-nav-actions {
  background: #3f3f3f;
  width: auto;
  height: 60px;
  padding: 0;
  text-align: center;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"] {
  display: inline-block;
  width: 70px;
  height: 60px;
  float: left;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"] .icon {
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"]:hover {
  background-color: #0088df;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].active {
  background-color: #f2f2f2;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].active .icon {
  color: #838383;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].active:hover {
  background-color: #f2f2f2;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].active:hover .icon {
  opacity: 1;
  filter: alpha(opacity=100);
  top: 50%;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].blink {
  animation: videoConferenceBgBlink 3s infinite;
  -moz-animation: videoConferenceBgBlink 3s infinite;
  -webkit-animation: videoConferenceBgBlink 3s infinite;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-schedule:hover,
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-audio:hover,
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-video:hover,
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-screen:hover,
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-schedule.active,
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-audio.active,
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-video.active,
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-conf-screen.active {
  background-color: #bd4c07;
}
.page-share .share-holder .share-header .header-nav-actions a[class*="btn-"].btn-hide-actions {
  display: none;
}
@media (max-width: 1100px) {
  .page-share .share-holder .share-header .header-nav-actions a[class*="btn-"] {
    width: 40px;
  }
}
.show-conf .page-share .share-holder .share-header .header-nav-actions .btn-conf-audio,
.show-conf .page-share .share-holder .share-header .header-nav-actions .btn-conf-video,
.show-conf .page-share .share-holder .share-header .header-nav-actions .btn-conf-screen {
  display: none;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress {
  display: inline-block;
  height: 60px;
  float: left;
  position: relative;
  font-family: 'Lato', sans-serif;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress .dropdown-toggle {
  width: 220px;
  text-align: center;
  display: block;
  height: 60px;
  line-height: 60px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  animation: videoConferenceBgBlink 3s infinite;
  -moz-animation: videoConferenceBgBlink 3s infinite;
  -webkit-animation: videoConferenceBgBlink 3s infinite;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress .dropdown-toggle .icon-camera {
  position: absolute;
  font-size: 85px;
  z-index: 0;
  color: rgba(0, 0, 0, 0.3);
  left: 10px;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress .dropdown-toggle span {
  position: relative;
  z-index: 1;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress .dropdown-toggle span .icon-play-circle {
  font-size: 20px;
  vertical-align: middle;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown {
  width: 250px;
  margin-right: -32px;
  padding: 0;
  text-align: center;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown h4 {
  margin: 15px 0 10px;
  color: #595959;
  font-size: 17px;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown .conf-participants {
  padding: 0 20px;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown .conf-participants .icon-sync {
  font-size: 20px;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown .conf-join-options {
  display: flex;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown .conf-join-options a {
  flex-grow: 1;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown .conf-join-options a .icon {
  color: #595959;
}
.page-share .share-holder .share-header .header-nav-actions .conf-in-progress #conf-in-progress-dropdown .conf-join-options a:hover .icon {
  color: #FFF;
}
.show-conf .page-share .share-holder .share-header .header-nav-actions .conf-in-progress {
  display: none;
}
.page-share .share-holder .share-header .header-nav-actions.header-nav-actions-tablet {
  display: none;
}
.page-share .share-holder .share-header .pre-share-title {
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: #F77D33;
  float: left;
  padding: 0;
}
.page-share .share-holder .share-header .pre-share-title .item-logo {
  width: 100%;
  height: 100%;
}
.page-share .share-holder .share-header .pre-share-title .item-logo i.icon {
  font-size: 26px;
  color: #fff;
  line-height: 54px;
  text-align: center;
  display: block;
}
.page-share .share-holder .share-header .pre-share-title .item-logo i.icon.icon-ticket {
  font-size: 28px;
}
.page-share .share-holder .share-header .pre-share-title .conference-types {
  display: none;
}
@media (max-width: 1100px) {
  .page-share .share-holder .share-header .pre-share-title {
    width: 40px;
  }
}
.page-share .share-holder .share-header .pre-chat-title {
  width: 60px;
  height: 60px;
  float: left;
  padding: 0;
}
.page-share .share-holder .share-header .pre-chat-title .item-logo {
  width: 100%;
  height: 100%;
}
.page-share .share-holder .share-header .pre-chat-title .item-logo .userImage {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.page-share .share-holder .share-header .pre-chat-title .item-logo .userImage span {
  line-height: 60px;
}
.page-share .share-holder .share-header .pre-chat-title .item-logo .userImage img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.page-share .share-holder .share-header .share-header-center {
  overflow: hidden;
  height: 60px;
  padding: 0 10px;
  color: #fff;
  width: auto;
}
.page-share .share-holder .share-header .share-header-center .share-title {
  padding: 0 10px;
  width: auto;
  overflow: hidden;
}
.page-share .share-holder .share-header .share-header-center .share-title div.sharetitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 3.3;
  max-width: 100%;
}
.page-share .share-holder .share-header .share-header-center .share-title div.sharetitle #share-desc {
  cursor: pointer;
  font-size: 14px;
}
.show-conf .page-share .share-holder .share-header .share-header-center .share-title div.sharetitle {
  max-width: 200px;
}
@media (max-width: 1100px) {
  .page-share .share-holder .share-header .share-header-center .share-title div.sharetitle {
    /*max-width:180px;*/
    font-size: 13px;
    line-height: 4.6;
  }
}
.page-share .share-holder .share-header .share-header-center .share-title a.user {
  font-size: 11px;
  color: #fff;
  cursor: pointer;
}
.page-share .share-holder .share-header .share-header-center .share-title a.user:hover {
  color: #fff;
}
.page-share .share-holder .share-header .share-header-center .share-title .add-new-items {
  padding: 1px 2px;
  height: 25px;
  width: 80px;
  line-height: 23px;
  background: #F77D33;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  float: left;
  margin-left: 20px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: bold;
}
.page-share .share-holder .share-header .share-header-center .share-title .add-new-items:hover {
  background: #FF741F;
}
.page-share .share-holder .share-header .share-header-center .share-title .notification-dropdown {
  padding: 1px 2px;
  height: 25px;
  width: 80px;
  line-height: 23px;
  background: #F77D33;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  float: left;
  margin-left: 20px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: bold;
}
.page-share .share-holder .share-header .share-header-center .share-title .notification-dropdown:hover {
  background: #FF741F;
}
.page-share .share-holder .share-header .share-header-center .share-title .setting,
.page-share .share-holder .share-header .share-header-center .share-title .remove,
.page-share .share-holder .share-header .share-header-center .share-title .search {
  color: #bbb;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  float: left;
  margin-top: 15px;
  margin-left: 15px;
}
.page-share .share-holder .share-header .share-header-center .share-title .setting:hover,
.page-share .share-holder .share-header .share-header-center .share-title .remove:hover,
.page-share .share-holder .share-header .share-header-center .share-title .search:hover {
  color: #fafafa;
}
.page-share .share-holder .share-header .share-header-center .share-title .search {
  position: relative;
  z-index: 10;
}
@media (max-width: 1100px) {
  .page-share .share-holder .share-header .share-header-center .share-title {
    padding: 0 3px;
  }
}
.page-share .share-holder .share-header .share-header-center .share-tags {
  height: 60px;
  line-height: 60px;
  float: right;
  color: #fff;
  padding: 0;
}
.page-share .share-holder .share-header .share-header-center .share-tags .share-tags-list {
  display: inline-block;
}
.page-share .share-holder .share-header .share-header-center .share-tags .open-share-tags {
  display: inline-block;
  /* height: 17px; */
  vertical-align: middle;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 5px;
}
.page-share .share-holder .share-header .share-header-center .share-tags .open-share-tags::after {
  font-size: 9px;
}
.page-share .share-holder .share-header .share-header-center .share-tags .share-tags-more {
  cursor: pointer;
}
.show-conf .page-share .share-holder .share-header .share-header-center .share-tags {
  display: none;
}
.page-share .share-holder .share-sidebar {
  width: 288px;
  display: block;
  background: #F2F2F2;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 60px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] {
  background-color: #f2f2f2;
  width: 288px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 15px 20px;
  border-left: 1px solid #d9d9d9;
  -webkit-transform: translateX(288px);
  -ms-transform: translateX(288px);
  transform: translateX(288px);
}
.page-share .share-holder .share-sidebar [class*="sidebar-"].active {
  z-index: 100;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .header {
  color: #838383;
  font-size: 11px;
  margin-bottom: 15px;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .header span.number {
  margin-right: 5px;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .header .icon {
  color: #838383;
  font-size: 24px;
  margin-right: 5px;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .header .text {
  color: #838383;
  font-size: 14px;
  display: inline-block;
  margin-top: 3px;
}
.livechat-share-holder .page-share .share-holder .share-sidebar [class*="sidebar-"] .header {
  margin-bottom: 8px;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .pre-body {
  margin-bottom: 10px;
}
.livechat-share-holder .page-share .share-holder .share-sidebar [class*="sidebar-"] .pre-body {
  margin-bottom: 5px;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .body {
  margin-bottom: 20px;
}
.livechat-share-holder .page-share .share-holder .share-sidebar [class*="sidebar-"] .body {
  margin-bottom: 10px;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-group-sidebar {
  display: block;
  width: 100%;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-group-sidebar .btn-sidebar {
  margin-bottom: 0;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-sidebar {
  padding: 5px;
  border-color: #ddd;
  color: #838383;
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
  height: 32px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-sidebar i.icon {
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-sidebar span {
  display: block;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-sidebar:hover {
  border-color: #ccc;
  background: rgba(255, 255, 255, 0.5);
  color: #757575;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-sidebar:hover i.icon {
  top: -50%;
}
.page-share .share-holder .share-sidebar [class*="sidebar-"] .btn-sidebar:hover span {
  top: 50%;
}
.page-share .share-holder .share-sidebar .sidebar-info div.shared-stuff {
  position: relative;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li {
  float: left;
  width: 37px;
  height: 37px;
  margin-right: 5px;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li:last-child {
  margin-right: 0;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li a {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #c9c9c9;
  box-shadow: 0px 0px 1px #F2F2F2;
  background-color: #fff;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li a .icon {
  color: #838383;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li a .count {
  color: #838383;
  font-size: 20px;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li a:hover {
  background-color: #838383;
  border: 1px solid #fff;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li a:hover .icon {
  color: #fff;
  top: -50%;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li a:hover .count {
  color: #fff;
  top: 50%;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li.shared-tasks a:hover {
  background-color: #49d181;
  border: 1px solid #249051;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li.shared-contacts a:hover {
  background-color: #24bcf4;
  border: 1px solid #097ea9;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li.shared-links a:hover {
  background-color: #d52e2e;
  border: 1px solid #831a1a;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li.shared-calendars a:hover {
  background-color: #8a61b1;
  border: 1px solid #573973;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li.shared-notes a:hover {
  background-color: #1bc8b2;
  border: 1px solid #0f6e62;
}
.page-share .share-holder .share-sidebar .sidebar-info ul.shared-stuff li.shared-documents a:hover {
  background-color: #bc62be;
  border: 1px solid #823684;
}
.page-share .share-holder .share-sidebar .sidebar-info .share-add-member {
  color: #4b7f82;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list input {
  border-radius: 4px 0 0 4px;
  line-height: 36px;
  outline: none;
  font-size: 11px;
  padding: 0 10px;
  height: 38px;
  border: 1px solid #c9c9c9;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list input:focus {
  outline: none;
  border: 1px solid #46B7FF;
  box-shadow: none;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list input:focus + div > button {
  background-color: #46B7FF;
  color: #fff;
  border: 1px solid #46B7FF;
  border-left: 0 solid #46B7FF;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list input:focus + div > button:hover {
  color: #fff;
  background-color: #13a3ff;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list button {
  border-radius: 0 4px 4px 0;
  background-color: rgba(0, 0, 0, 0);
  color: #838383;
  height: 38px;
  width: 38px;
  outline: none;
  border: 1px solid #c9c9c9;
  border-left: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list .dropdown-menu {
  width: 210px;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list .dropdown-menu li a {
  line-height: 1.2;
  padding-top: 6px;
  padding-bottom: 6px;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list .dropdown-menu li a small {
  color: #909090;
  font-size: 11px;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list .dropdown-menu li.active a small {
  color: #fff;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list.livechat-company-members button {
  height: 34px;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list.livechat-company-members .chosen-container-single .chosen-single {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list.livechat-company-members .chosen-container-single .chosen-single abbr {
  top: 11px;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list.livechat-company-members .chosen-container-single .chosen-single .user-presence-status-dot {
  margin-right: 5px;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list.livechat-company-members .chosen-search > input {
  height: auto!important;
  line-height: 24px;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list.livechat-company-members .chosen-container-active + div > button {
  background-color: #46B7FF;
  color: #fff;
  border: 1px solid #46B7FF;
  border-left: 0 solid #46B7FF;
}
.page-share .share-holder .share-sidebar .sidebar-info .add-to-list.livechat-company-members .chosen-container-active + div > button:hover {
  color: #fff;
  background-color: #13a3ff;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list {
  border-bottom: solid 1px #e6e6e6;
  margin-top: 10px;
  padding-bottom: 5px;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items {
  list-style: none;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pin-pane-close {
  position: relative;
  width: 15px;
  height: 15px;
  opacity: 0.3;
  float: right;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pin-pane-close:hover {
  opacity: 1;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pin-pane-close:before,
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pin-pane-close:after {
  position: absolute;
  left: 10px;
  content: ' ';
  height: 10px;
  width: 2px;
  background-color: #333;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pin-pane-close:before {
  transform: rotate(45deg);
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pin-pane-close:after {
  transform: rotate(-45deg);
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .user-title-info {
  display: flex;
  align-items: center;
  line-height: 27px;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .user-title-info .user-title-display-name {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #668e90;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pinned-msg {
  margin-top: 8px;
  color: #444;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items .pinned-item-row .pinned-msg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
}
.livechat-share-holder .page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items {
  margin-top: 10px;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li {
  position: relative;
  cursor: pointer;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown .dropdown-menu {
  padding-top: 4px;
  padding-bottom: 4px;
  border-top-color: #fff;
  margin-top: -1px;
  width: 100%;
  border-radius: 0 0 4px 4px;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown .dropdown-menu > li > a,
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown .dropdown-menu > li > p {
  margin: 0;
  padding: 5px 10px;
  font-size: 13px;
  color: #525252;
  font-weight: 500;
  padding-left: 39px;
  position: relative;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown .dropdown-menu > li > a > .icon,
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown .dropdown-menu > li > p > .icon {
  position: absolute;
  left: 14px;
  font-size: 15px;
  top: 6px;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown .dropdown-menu > li > p {
  cursor: default;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown .dropdown-menu > li.common-share-item > a {
  opacity: 0.8;
  font-weight: normal;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .shareuser-row {
  display: block;
  width: 100%;
  height: 36px;
  padding: 4px 7px;
  border: solid 1px transparent;
  border-radius: 6px;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .shareuser-row .userImage {
  float: left;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .shareuser-row .shareuser-row-userdata {
  margin-left: 32px;
  width: auto;
  line-height: 27px;
  height: 26px;
  font-size: 13px;
  font-weight: 500;
  color: #668e90;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .shareuser-row .shareuser-row-userdata span.shareuser-row-userdata-small {
  font-size: 11px;
  color: #838383;
  font-weight: normal;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .shareuser-row:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: #e0e0e0;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown.open .shareuser-row {
  background: #fff;
  border-radius: 6px 6px 0 0;
  border: solid 1px #cbcbcb;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-items > li .dropdown.open .shareuser-row .shareuser-row-userdata {
  color: #333;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-expand,
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-collapse {
  display: block;
  margin: 0;
  font-size: 11px;
  padding: 5px 0;
  text-align: center;
  color: #76898a;
}
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-expand:hover,
.page-share .share-holder .share-sidebar .sidebar-info .picker-list .picker-list-collapse:hover {
  color: #425858;
}
.page-share .share-holder .share-sidebar .sidebar-info .invitation-link,
.page-share .share-holder .share-sidebar .sidebar-info .creation-email,
.page-share .share-holder .share-sidebar .sidebar-info .public-link {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 45px;
}
.page-share .share-holder .share-sidebar .sidebar-info .invitation-link .title,
.page-share .share-holder .share-sidebar .sidebar-info .creation-email .title,
.page-share .share-holder .share-sidebar .sidebar-info .public-link .title {
  color: #838383;
  font-size: 12px;
  display: block;
}
.page-share .share-holder .share-sidebar .sidebar-info .invitation-link .title .info,
.page-share .share-holder .share-sidebar .sidebar-info .creation-email .title .info,
.page-share .share-holder .share-sidebar .sidebar-info .public-link .title .info {
  margin-left: 5px;
  color: #838383;
}
.page-share .share-holder .share-sidebar .sidebar-info .invitation-link input,
.page-share .share-holder .share-sidebar .sidebar-info .creation-email input,
.page-share .share-holder .share-sidebar .sidebar-info .public-link input {
  display: block;
  float: left;
  width: 206px;
  width: calc(100% - 41px);
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
  border-radius: 0px;
  font-size: 11px;
  border: none;
  color: #838383;
  background-color: #d4d4d4;
}
.page-share .share-holder .share-sidebar .sidebar-info .invitation-link .btn,
.page-share .share-holder .share-sidebar .sidebar-info .creation-email .btn,
.page-share .share-holder .share-sidebar .sidebar-info .public-link .btn {
  display: block;
  float: left;
  height: 28px;
  width: 41px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #838383;
  background: #f2f2f2;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 28px;
}
.page-share .share-holder .share-sidebar .sidebar-info .btn-live-chat {
  position: absolute;
  bottom: 15px;
  right: 20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  z-index: 100000;
  background-color: #46B7FF;
  text-align: center;
  font-size: 24px;
  padding-top: 4px;
  font-weight: 400;
  color: #FFFFFF;
  box-shadow: 0px 2px 7px #949494;
  cursor: pointer;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif {
  position: relative;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif label {
  font-weight: 400;
  width: 180px;
  color: #838383;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .notif-toggle {
  position: absolute;
  top: 7px;
  right: 0px;
  width: 45px;
  height: 22px;
  border-radius: 11px;
  display: inline-block;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAyklEQVQ4T42TaxHCQAyENw5wAhLACVUAUkABOCkSwEkdhNmbpHNckzv689L98toIAKjqGcAFwElEFr5ln6ruAMwA7iLyFBM/TPDuQSrxwf6fCKBoX2UMIYGYkg8BLOnVg2RiAEexGaQQq4w9e9klcxGLLAUwgDAcihlYAR1IvZA1sz/+AAaQjXhTQQVoe2Yo3E7UQiT2ijeQdojRtClOfVKvMVyVpU594kZK9zzySWTlcNqZY9tjCsUds00+A57z1e35xzlzJjee8xf0HYp+cOZQUQAAAABJRU5ErkJggg==') no-repeat 25px center #e74c3c;
  background-size: 12px;
  -webkit-transition: background-color 0.4s ease-in-out;
  -moz-transition: background-color 0.4s ease-in-out;
  -o-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  cursor: pointer;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .notif-toggle.active {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAmUlEQVQ4T6WT0RWDMAhFeZs4ipu0mawZpaO4yevBc6hUIWLNd+4NeQDk5sE/PMkZwFvZywKSTxF5iUgH0C4JHGyF97IggFVSqyCFga0CvQSg70Mdwd8QSSr4sGBMcgavAgdvwQCtApvA2uKr1x7Pu++06ItrF5LXPB/CP4M0kKTwYRIDyRAOR9lJTuF0F0hOAJbKopVHOZN9ACS0UgowIx8ZAAAAAElFTkSuQmCC') no-repeat 6px center #2ecc71;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .notif-toggle.active .round-btn {
  left: 25px;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .notif-toggle .round-btn {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .notif-toggle .cb-value {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .custom-notif {
  margin-top: 10px;
  padding-left: 20px;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .radio:first-child {
  margin-top: 0;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notif .radio .info {
  margin-left: 5px;
  color: #838383;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item {
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  height: 86px;
  padding: 10px;
  color: #606060;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item:hover {
  background: rgba(255, 255, 255, 0.5);
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: #ddd;
  color: #424242;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item.active .radio-btn .icon.checked {
  display: inline;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item.active .radio-btn .icon.un-checked {
  display: none;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item.active p {
  color: #606060;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item .radio-btn {
  float: left;
  height: 65px;
  line-height: 60px;
  margin-right: 10px;
  color: #b3b3b3;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item .radio-btn .icon {
  font-size: 20px;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item .radio-btn .icon.un-checked {
  display: inline;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item .radio-btn .icon.checked {
  display: none;
  color: #428bca;
  font-weight: bold;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item .icon {
  font-size: 20px;
  vertical-align: middle;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item .title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  line-height: 25px;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .list-group-item p {
  font-size: 12px;
  margin: 5px 0 5px 30px;
  line-height: 1.4;
  color: #838383;
  font-style: italic;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .header .icon {
  font-size: 28px;
  line-height: 34px;
}
.page-share .share-holder .share-sidebar .sidebar-setting .share-notification-setting .header .text {
  display: block;
  margin: 0 0 0 35px;
  font-weight: bold;
  font-size: 13px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form {
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-field {
  width: 187px;
  float: left;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-field input {
  border-radius: 4px 0 0 4px;
  line-height: 36px;
  outline: none;
  font-size: 11px;
  padding: 0 10px;
  height: 38px;
  border: 1px solid #c9c9c9;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-field input:focus {
  outline: none;
  border: 1px solid #46B7FF;
  box-shadow: none;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-field input:focus + span > button.submit-search {
  background-color: #46B7FF;
  color: #fff;
  border: 1px solid #46B7FF;
  border-left: 0 solid #46B7FF;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-field input:focus + span > button.submit-search:hover {
  color: #fff;
  background-color: #13a3ff;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-field button.submit-search {
  border-radius: 0 4px 4px 0;
  background-color: rgba(0, 0, 0, 0);
  color: #838383;
  height: 38px;
  width: 38px;
  outline: none;
  border: 1px solid #c9c9c9;
  border-left: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-filter {
  float: left;
  margin-left: 10px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-filter .btn-filter {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  color: #838383;
  height: 38px;
  width: 50px;
  outline: none;
  border: 1px solid #838383;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-filter .btn-filter > .icon {
  font-size: 18px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-filter .dropdown-menu {
  right: 0;
  left: auto;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-filter .dropdown-menu li {
  position: relative;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-filter .dropdown-menu li i.icon {
  position: absolute;
  left: 10px;
  top: 3px;
  font-size: 18px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-form .search-filter .dropdown-menu li span {
  padding: 20px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder {
  padding: 10px 0;
  border-bottom: solid 1px #DEDEDE;
  border-top: solid 1px #FFF;
  overflow: auto;
  overflow-x: hidden;
  font-size: 11px;
  cursor: pointer;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #838383;
  color: #FFF;
  text-align: center;
  font-size: 13px;
  margin-left: 3px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview img,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: block;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview .user-link,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview .user-link,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview .userImage,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview .userImage {
  display: block;
  width: 30px;
  height: 30px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview.result-preview-task,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview.result-preview-task {
  background: #49d181;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview.result-preview-contact,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview.result-preview-contact {
  background: #24bcf4;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview.result-preview-link,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview.result-preview-link {
  background: #d52e2e;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview.result-preview-event,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview.result-preview-event {
  background: #8a61b1;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview.result-preview-note,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview.result-preview-note {
  background: #1bc8b2;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-preview.result-preview-document,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-preview.result-preview-document {
  background: #bc62be;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item a,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder a {
  color: inherit;
  display: block;
  overflow: auto;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item div.body,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder div.body {
  margin: 0 0 0 40px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item div.body .result-title,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder div.body .result-title {
  font-size: 13px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item div.body .result-date,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder div.body .result-date {
  margin: 2px 0;
  color: #797979;
  font-size: 9px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item .result-date,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder .result-date {
  font-size: 10px;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item:hover,
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.item-folder:hover {
  background: #f6f6f6;
}
.page-share .share-holder .share-sidebar .sidebar-activity-search .search-results ul.search-results-list li.not-found {
  padding: 20px 10px;
  text-align: center;
  font-weight: bold;
  color: #666;
}
.page-share .share-holder .upgrade-holder {
  text-align: center;
  color: #8f8f8f;
  margin-top: 35px;
}
.page-share .share-holder .upgrade-holder .btn-upgrade {
  margin: 10px auto;
  text-align: center;
  width: 50%;
  display: block;
  font-size: 12px;
}
.page-share .share-holder .main-holder {
  position: absolute;
  padding: 0;
  top: 60px;
  left: 0;
  bottom: 56px;
  overflow: auto;
}
.page-share .share-holder .main-holder .bookmarkTargetLink {
  display: block;
  color: inherit;
}
.page-share .share-holder .main-holder .share-bottom-message {
  text-align: center;
  color: #838383;
  padding: 10px 0;
}
.page-share .share-holder .main-holder.main-holder-items {
  bottom: 0!important;
}
.page-share .share-holder .main-holder .main-list-holder-activities,
.page-share .share-holder .main-holder .list-holder-items {
  height: 100%;
}
.page-share .share-holder .main-holder .main-list-holder-activities .new-message {
  position: relative;
  width: 100%;
}
.page-share .share-holder .main-holder .main-list-holder-activities .new-message .inner-div {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 200;
}
.page-share .share-holder .main-holder .main-list-holder-activities .new-message .inner-div .text {
  background-color: rgba(182, 129, 208, 0.8);
  padding: 10px 10px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.page-share .share-holder .main-holder .row-view-for-share {
  margin-right: -5px;
  margin-left: -10px;
}
.page-share .share-holder .main-holder .row-view-for-share ul.list-view li {
  padding-left: 20px;
  padding-right: 20px;
}
.page-share .share-holder .main-holder .row-view-for-share ul.list-view li.row:after {
  left: 20px;
  right: 20px;
}
.page-share .share-holder .main-holder .row-view-for-share ul.box-view > li {
  margin: 10px 0 0 20px;
}
.page-share .share-holder .main-holder .inner-header {
  margin: 0 -5px 0 -10px;
}
.page-share .share-holder .main-holder .inner-header .view-header {
  margin: 20px 20px 0;
  height: 33px;
  position: relative;
}
.page-share .share-holder .main-holder .inner-header .view-header .btn-view {
  width: 80px;
  height: 33px;
  background: #F2F2F2;
  border-radius: 4px;
  float: right;
  overflow: hidden;
}
.page-share .share-holder .main-holder .inner-header .view-header .btn-view div.view {
  color: #555;
  float: left;
  cursor: pointer;
  width: 50%;
  height: 100%;
  padding: 6px 12px;
}
.page-share .share-holder .main-holder .inner-header .view-header .btn-view div.view.active {
  background-color: #DADADA;
}
.page-share .share-holder .main-holder .inner-header .view-header .add-new-items {
  background-color: #87b763;
}
.anonymous-user .page-share .share-holder .main-holder {
  bottom: 0;
}
.page-share .share-holder[data-sidebar-fluid="false"][data-sidebar="false"] .main-holder {
  right: 0;
}
.page-share .share-holder[data-sidebar-fluid="false"][data-sidebar="false"] .share-sidebar {
  display: none;
}
.page-share .share-holder[data-sidebar-fluid="false"][data-sidebar="false"] .post-activity {
  right: 0;
}
.page-share .share-holder[data-sidebar-fluid="false"][data-sidebar="true"] .main-holder {
  right: 288px;
}
.page-share .share-holder[data-sidebar-fluid="false"][data-sidebar="true"] .share-sidebar {
  display: block;
}
.page-share .share-holder[data-sidebar-fluid="false"][data-sidebar="true"] .post-activity {
  right: 288px;
}
.page-share .share-holder[data-sidebar-fluid="true"][data-sidebar="false"] .main-holder {
  right: 0;
}
.page-share .share-holder[data-sidebar-fluid="true"][data-sidebar="false"] .share-sidebar {
  right: -288px;
}
.page-share .share-holder[data-sidebar-fluid="true"][data-sidebar="false"] .post-activity {
  right: 0;
}
.page-share .share-holder[data-sidebar-fluid="true"][data-sidebar="true"] .main-holder {
  right: 0;
}
.page-share .share-holder[data-sidebar-fluid="true"][data-sidebar="true"] .share-sidebar {
  right: 0;
}
.page-share .share-holder[data-sidebar-fluid="true"][data-sidebar="true"] .post-activity {
  right: 0;
}
.page-share .share-holder.no-post-form .main-holder {
  bottom: 0;
}
.page-share .share-holder .drag-zone {
  display: none;
  position: absolute;
  top: 50px;
  bottom: 0px;
  left: 0;
  right: 0;
  background: rgba(132, 132, 132, 0.5);
}
.popover-share-desc p {
  margin: 0;
}
.form-group.duplicate-share-items {
  margin: 0 45px;
  font-size: 13px;
}
.form-group.duplicate-share-items label.control-label {
  margin-bottom: 15px;
  text-align: left!important;
}
.form-group.duplicate-share-items .checkbox input {
  margin-top: 3px;
}
.form-group.duplicate-share-items .checkbox .help-block {
  display: inline;
  font-size: 12px;
}
.form-group.duplicate-share-items p.help-block {
  margin-top: 25px;
  margin-bottom: 0;
}
.manage-share-tags .share-tags {
  margin-bottom: 0;
}
.manage-share-tags .share-tags > li .delete-tag-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 28px;
  width: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.manage-share-tags .share-tags > li:first-child {
  margin-top: 30px;
}
.manage-share-tags .add-tag-form {
  position: relative;
  width: 100%;
  padding-right: 70px;
}
.manage-share-tags .add-tag-form input.form-control {
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.manage-share-tags .add-tag-form .btn-primary {
  width: 70px;
  position: absolute;
  right: 0;
  top: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.modal-add-member .search-people-holder .search-people-input-holder {
  position: relative;
}
.modal-add-member .search-people-holder .search-people-input-holder input.search-people {
  font-size: 16px!important;
  height: 52px!important;
}
.modal-add-member .search-people-holder .search-people-input-holder .typeahead.dropdown-menu {
  float: none;
  width: 100%;
}
.modal-add-member .search-people-holder .search-people-input-holder .search-people-loading {
  position: absolute;
  font-size: 20px;
  right: 10px;
  top: 16px;
}
.modal-add-member .search-people-holder .search-people-selected {
  height: 52px;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 7px 16px;
  background: #f7f7f7;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.075);
  position: relative;
}
.modal-add-member .search-people-holder .search-people-selected span {
  display: block;
}
.modal-add-member .search-people-holder .search-people-selected span.search-people-selected-name {
  font-weight: 500;
}
.modal-add-member .search-people-holder .search-people-selected span.search-people-selected-email {
  font-size: 11px;
  color: #666;
}
.modal-add-member .search-people-holder .search-people-selected span.search-people-selected-remove {
  cursor: pointer;
  position: absolute;
  right: 0;
  font-size: 20px;
  top: 0;
  height: 100%;
  width: 40px;
  text-align: center;
  line-height: 50px;
}
.modal-add-member textarea.invite-message {
  font-size: 14px!important;
}
#titleBox {
  position: relative;
}
#titleBox .loading {
  position: absolute;
  right: 12px;
  top: 12px;
}
#titleBox .errorIcon {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #a94442;
}
#titleBox .successIcon {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #3c763d;
}
.app-notifications {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 248px;
  z-index: 30;
}
.app-notifications .notification-item {
  background: #46B7FF;
  position: relative;
  color: #fff;
  margin-top: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.app-notifications .notification-item .notification-item-container {
  padding: 10px;
  display: block;
  width: 100%;
  height: auto;
  overflow: auto;
}
.app-notifications .notification-item .notification-item-container .userImage {
  float: left;
  margin: 0 8px 0 0;
  box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.25);
}
.app-notifications .notification-item .notification-close-btn {
  position: absolute;
  color: #fff;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 2;
}
.app-notifications .notification-item a {
  color: #fff;
  text-decoration: none;
}
.app-notifications .notification-item .notification-item-actions {
  background: rgba(255, 255, 255, 0.35);
  padding: 10px;
}
.app-notifications .notification-item.notification-item-activity .notification-item-activity-text {
  padding-top: 10px;
  line-height: 1.25;
}
.app-notifications .notification-item.notification-item-conference .notification-item-conference-text {
  font-size: 11px;
  padding-top: 2px;
}
.app-notifications .notification-item.notification-item-conference .notification-item-actions {
  text-align: center;
}
.app-notifications .notification-item.notification-item-conference .notification-item-actions > a {
  display: inline-block;
  text-align: center;
  margin: 0 15px;
  font-size: 11px;
}
.app-notifications .notification-item.notification-item-conference .notification-item-actions > a > span {
  background: #46B7FF;
  border: solid 1px #fff;
  text-align: center;
  font-size: 17px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  line-height: 40px;
}
.app-notifications .notification-item:nth-last-child(3) {
  opacity: 0.8;
}
.app-notifications .notification-item:nth-last-child(4) {
  opacity: 0.55;
}
.app-notifications .notification-item:nth-last-child(5) {
  opacity: 0.3;
}
.app-notifications .notification-item:nth-last-child(6),
.app-notifications .notification-item:nth-last-child(7),
.app-notifications .notification-item:nth-last-child(8),
.app-notifications .notification-item:nth-last-child(9) {
  opacity: 0.1;
}
.app-notifications .notification-item:hover {
  opacity: 1;
  transform: scale(1.04);
}
.app-notifications .notification-item.notification-item-out {
  -webkit-transform: translate(400px, 0);
  -ms-transform: translate(400px, 0);
  transform: translate(400px, 0);
  opacity: 0!important;
}
.app-notifications .notification-item.notification-item-alert {
  background: #e44e4e;
}
.modal.modal-announcement .modal-header {
  border-bottom: none;
  text-align: center;
}
.modal.modal-announcement .modal-header h3 {
  font-size: 20px;
  padding: 15px;
  color: #e46c0a;
}
.modal.modal-announcement .modal-body {
  padding: 10px 20px 20px;
}
.modal.modal-announcement .modal-body ul {
  list-style: initial;
  padding-left: 15px;
}
.modal.modal-announcement:before {
  content: "\f0a1";
  display: block;
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  bottom: 30px;
  right: 0;
  color: rgba(0, 0, 0, 0.07);
  font-size: 180px;
  z-index: -1;
  -moz-transform: scale(-1, 1) rotate(-20deg);
  -webkit-transform: scale(-1, 1) rotate(-20deg);
  -o-transform: scale(-1, 1) rotate(-20deg);
  -ms-transform: scale(-1, 1) rotate(-20deg);
  transform: scale(-1, 1) rotate(-20deg);
}
.section-announcements-holder {
  overflow-y: auto;
  overflow-x: hidden;
}
.section-announcements-holder .announcements-section-title {
  font-weight: normal;
  color: #464646;
  border-bottom: solid 1px #CCC;
  padding: 0 10px 10px;
  font-size: 27px;
}
.section-announcements-holder .announcements-list .item {
  border-bottom: solid 1px #eee;
  padding: 10px;
  margin-bottom: 15px;
  position: relative;
}
.section-announcements-holder .announcements-list .item .announcement-title {
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 19px;
  color: #e46c0a;
}
.section-announcements-holder .announcements-list .item .announcement-date {
  font-size: 11px;
  position: absolute;
  top: 18px;
  right: 10px;
  color: #636363;
}
.section-announcements-holder .announcements-list .item .announcement-body {
  font-size: 13px;
  line-height: 1.5em;
}
.section-announcements-holder .announcements-list .item .announcement-body ul {
  list-style: initial;
  padding-left: 15px;
}
.section-announcements-holder .load-more .load-btn {
  display: block;
  margin: 10px 0;
  font-size: 11px;
  padding: 10px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats {
  height: 100%;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .btn-group {
  display: block;
  height: 60px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .btn-group > .btn {
  position: relative;
  width: 56.9px;
  height: 60px;
  line-height: 50px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #232323;
  font-size: 17px;
  color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .btn-group > .btn:hover,
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .btn-group > .btn.active {
  background: #0088df;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .btn-group > .btn.has-filter:after {
  content: '';
  display: block;
  position: absolute;
  background: #fc2616;
  top: 17px;
  right: 15px;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .search-holder {
  height: 30px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .search-holder .livechat-search {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .search-holder .livechat-search + i.icon {
  top: 2px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .search-holder .reset {
  top: 8px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .unassigned-conversation-notification {
  background: #f0ad4e;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  font-size: 12px;
  font-style: italic;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .unassigned-conversation-notification[data-visible='true'] {
  opacity: 1;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .unassigned-conversation-notification[data-visible='true'] + .body-livechats-items {
  top: 111px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .body-livechats-items {
  overflow: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 90px;
  bottom: 0;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #3c3c3c;
  min-height: 50px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a {
  width: 100%;
  height: 100%;
  min-height: 50px;
  color: #FFF;
  line-height: 16px;
  padding: 8px 10px;
  color: #444;
  display: block;
  text-decoration: none;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a .last-text-share {
  font-size: 12px;
  color: #c1c1c1;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a .last-text-share span.emoji-outer {
  width: 12px;
  height: 12px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a .livechat-title {
  width: 100%;
  line-height: 15px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a .livechat-visits-count {
  color: #46b7ff;
  float: right;
  font-size: 10px;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a .badge {
  position: static;
  margin: 0 0 0 5px;
  float: right;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a .livechat-conversation-labels {
  margin-top: 4px;
  white-space: normal;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item > a .livechat-conversation-labels .label {
  display: inline-block;
  margin: 2px 2px 2px 0;
  padding: .3em .6em .3em;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item .btn-remove {
  position: absolute;
  top: 8px;
  right: 10px;
  color: rgba(255, 255, 255, 0.5);
  display: none;
  font-size: 11px;
  cursor: pointer;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item .btn-remove:hover {
  color: #fff;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item:hover > a .badge,
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item:hover > a .livechat-visits-count {
  display: none;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item:hover .btn-remove {
  display: block;
}
#sidebar .sidebar-body.sidebar-livechats .livechat-holder-side .body-livechats .sidebar-livechat-item.active {
  background: #252525;
}
.livechat-contact-form {
  margin-top: 15px;
}
.livechat-contact-form .contact-edit {
  display: none;
}
.livechat-contact-form .contact-edit .header {
  margin-bottom: 10px;
  position: relative;
}
.livechat-contact-form .contact-edit .header .btn-group {
  position: absolute;
  right: 0;
  bottom: 0;
}
.livechat-contact-form .contact-edit .header .edit-mode,
.livechat-contact-form .contact-edit .header .view-mode {
  background: #f7f7f7;
  color: #838383;
}
.livechat-contact-form .contact-edit .form-group {
  color: #585858;
  margin-bottom: 7px;
}
.livechat-contact-form .contact-edit .form-group label {
  font-size: 11px;
  margin-bottom: 3px;
}
.livechat-contact-form .contact-edit .form-group > a {
  display: block;
  font-size: 11px;
}
.livechat-contact-form .contact-edit .form-group .form-control {
  height: 28px;
  padding: 3px 7px;
}
.livechat-contact-form .contact-view .contact-info {
  line-height: 1.6em;
  margin-bottom: 10px;
  position: relative;
}
.livechat-contact-form .contact-view .contact-info .contact-btns {
  position: absolute;
  right: 0;
  top: 0;
}
.livechat-contact-form .contact-view .contact-info .contact-btns a {
  color: #838383;
  margin-left: 5px;
  display: inline-block;
}
.livechat-contact-form .contact-view .contact-info .contact-image {
  width: 75px;
  height: 75px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
}
.livechat-contact-form .contact-view .contact-info .contact-name {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
.livechat-contact-form .contact-view .contact-info .contact-heading {
  color: #838383;
  font-size: 13px;
  text-align: center;
}
.livechat-contact-form .contact-view .contact-info .contact-location {
  font-size: 12px;
  text-align: center;
}
.livechat-contact-form .contact-view .contact-info .contact-email {
  font-size: 11px;
  color: #838383;
  text-align: center;
}
.livechat-contact-form .contact-view .contact-info .contact-browser {
  text-align: center;
  font-size: 11px;
  line-height: 1.2;
  color: #838383;
}
.livechat-contact-form .contact-view .contact-history .contact-history-title {
  color: #838383;
  font-size: 13px;
}
.livechat-contact-form .contact-view .contact-history ul {
  color: #1c96e4;
  list-style: disc;
  padding-left: 15px;
  margin-bottom: 10px;
}
.livechat-contact-form .contact-view .contact-history ul li a {
  color: #1c96e4;
}
.livechat-contact-form.edit-mode .contact-edit {
  display: block;
}
.livechat-contact-form.edit-mode .contact-view {
  display: none;
}
.livechat-options-form .livechat-option-status,
.livechat-options-form .livechat-option-assignee {
  margin-bottom: 8px;
}
.livechat-options-form .livechat-option-status .header,
.livechat-options-form .livechat-option-assignee .header {
  margin-bottom: 3px!important;
}
.livechat-options-form .livechat-option-status .header span.text,
.livechat-options-form .livechat-option-assignee .header span.text {
  margin-top: 0!important;
}
.livechat-options-form .livechat-option-status select,
.livechat-options-form .livechat-option-assignee select {
  height: 28px;
  padding: 3px 7px;
  font-size: 12px;
}
.livechat-options-form .livechat-option-status .chosen-container-single .chosen-single,
.livechat-options-form .livechat-option-assignee .chosen-container-single .chosen-single {
  box-shadow: none;
}
.livechatmanage-section {
  overflow: auto;
}
.livechatmanage-section .wrapper {
  margin: 0 auto 20px;
  width: 65%;
  padding-top: 25px;
  min-width: 600px;
}
.livechatmanage-section .wrapper .nav-tabs {
  background: none;
  padding-left: 0;
  padding-right: 0;
}
.livechatmanage-section .wrapper h2 {
  font-weight: 500;
}
.livechatmanage-section .wrapper .contact-list .list-group-item .contact-image .img-circle {
  border: solid 1px #eaeaea;
}
.livechatmanage-section .wrapper .contact-list .list-group-item .btn-group-vertical .btn {
  text-align: left;
}
.livechatmanage-section .wrapper .load-more .load-btn,
.livechatmanage-section .wrapper .load-more .loading > span {
  display: none;
  background: #f7f7f7;
  font-size: 12px;
  border: 1px solid #d4d4d4;
  border-bottom-color: #b5b5b5;
  border-radius: 3px;
  color: #838383;
  font-style: normal;
  padding: 6px;
  width: 100%;
  text-align: center;
  margin: 10px 0;
  cursor: pointer;
}
.livechatmanage-section .wrapper .manage-list-group {
  font-size: 12px;
  margin-bottom: 5px;
}
.livechatmanage-section .wrapper .manage-list-group .list-group-item h5 {
  margin-top: 0;
}
.livechatmanage-section .wrapper .manage-list-group .list-group-item p {
  margin: 0 0 5px;
}
.livechatmanage-section .wrapper .manage-list-group .list-group-item .label {
  font-size: 90%;
}
.livechatmanage-section .wrapper .manage-list-group .list-group-item .icon-users {
  font-size: 15px;
}
.livechatmanage-section .wrapper .manage-list-group .list-group-item.list-group-item-inactive {
  background: #eee;
  color: #777;
}
.livechatmanage-section .wrapper .manage-list-group .list-group-item.removing {
  opacity: 0.6;
  cursor: wait;
}
.livechatmanage-section .wrapper .wide-search {
  width: 350px;
  margin: 15px auto;
}
.livechatcontactpage-section {
  overflow: auto;
}
.livechatcontactpage-section .wrapper {
  margin: 0 auto 20px;
  max-width: 650px;
  width: 70%;
  padding-top: 25px;
}
.livechatcontactpage-section .wrapper .contact-info .panel-heading {
  position: relative;
}
.livechatcontactpage-section .wrapper .contact-info .panel-heading .btn-group {
  position: absolute;
  right: 5px;
  bottom: 10px;
}
.livechatcontactpage-section .wrapper .contact-info .panel-heading .edit-mode,
.livechatcontactpage-section .wrapper .contact-info .panel-heading .view-mode {
  background: #f7f7f7;
  color: #838383;
}
.livechatcontactpage-section .wrapper .contact-info .panel-heading .edit-btns {
  display: none;
}
.livechatcontactpage-section .wrapper .contact-info .contact-edit-form .form-group {
  color: #585858;
  margin-bottom: 10px;
}
.livechatcontactpage-section .wrapper .contact-info .contact-edit-form .form-group label {
  font-size: 14px;
  margin-bottom: 3px;
}
.livechatcontactpage-section .wrapper .contact-info .contact-edit-form .form-group .preview {
  display: block;
  font-size: 13px;
}
.livechatcontactpage-section .wrapper .contact-info .contact-edit-form .form-group .preview i {
  font-size: 13px;
  color: #838383;
}
.livechatcontactpage-section .wrapper .contact-info .contact-edit-form .form-group .form-control {
  display: none;
  height: 34px;
  padding: 4px 9px;
}
.livechatcontactpage-section .wrapper .contact-info.edit-mode .panel-heading .edit-mode {
  display: none;
}
.livechatcontactpage-section .wrapper .contact-info.edit-mode .panel-heading .edit-btns {
  display: inline-block;
}
.livechatcontactpage-section .wrapper .contact-info.edit-mode .contact-edit-form .form-group .preview {
  display: none;
}
.livechatcontactpage-section .wrapper .contact-info.edit-mode .contact-edit-form .form-group .form-control {
  display: block;
}
.app-modals .livechatcontactpage-section .wrapper {
  max-width: 750px;
  width: 100%;
  padding-top: 0;
  margin-bottom: 0;
}
.app-modals .livechatcontactpage-section .wrapper .panel {
  margin-bottom: 0;
  border-bottom: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.app-modals .livechatcontactpage-section .wrapper .panel .close-modal {
  color: #111;
  font-size: 17px;
}
.livechatsetting-section {
  overflow: auto;
}
.livechatsetting-section .wrapper {
  margin: 0 auto 20px;
  max-width: 750px;
  width: 70%;
  padding-top: 25px;
  min-width: 650px;
}
.livechatsetting-section .wrapper h2 {
  font-weight: 500;
}
.livechatsetting-section .wrapper .form-control.inline-control {
  display: inline;
  width: 60px;
}
.livechatsetting-section .wrapper .panel-manage-tags .add-tag-form {
  float: left;
  width: 220px;
  padding-right: 15px;
  border-right: solid 1px #eee;
  margin-right: 15px;
}
.livechatsetting-section .wrapper .panel-manage-tags .add-tag-form .form-control {
  margin-bottom: 7px;
}
.livechatsetting-section .wrapper .panel-manage-tags .add-tag-form .select-color {
  margin-bottom: 7px;
}
.livechatsetting-section .wrapper .panel-manage-tags .add-tag-form button {
  width: 100%;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags {
  margin-left: 235px;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item .btn-group {
  position: absolute;
  right: 5px;
  top: 5px;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item .tag-color {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: transparent;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item .label {
  font-size: 100%;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item form.edit-form {
  display: none;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item form.edit-form .select-color {
  height: 34px;
  overflow: hidden;
  width: 76px;
  display: inline-block;
  vertical-align: middle;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item form.edit-form .select-color > label {
  float: left;
  margin: 0 2px 4px;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item form.edit-form .form-control {
  width: 182px;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item form.edit-form .btn-primary {
  width: 85px;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item.new-item {
  opacity: 0.7;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item.edit-mode form.edit-form {
  display: block;
}
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item.edit-mode .label,
.livechatsetting-section .wrapper .panel-manage-tags .share-tags li.list-group-item.edit-mode .btn-group {
  display: none;
}
.livechatsetting-section .wrapper .nav-tabs {
  background: none;
  padding-left: 0;
  padding-right: 0;
}
.livechatsetting-section .wrapper .tab-content {
  padding: 30px 0;
}
.livechatsetting-section .wrapper .panel .panel-heading {
  position: relative;
}
.livechatsetting-section .wrapper .panel .panel-heading .switch {
  position: absolute;
  right: 10px;
  top: 5px;
}
.livechatsetting-section .wrapper .panel.panel-light .panel-heading .switch {
  top: 10px;
}
.livechatsetting-section .wrapper .panel.panel-light .panel-heading .switch .toggle-outside {
  background: #fff;
}
.livechatsetting-section .wrapper .operating-hours .operation-hours-row {
  margin-bottom: 5px;
}
.livechatsetting-section .wrapper .operating-hours .operation-hours-row .form-control {
  display: inline;
  width: auto;
}
.livechatsetting-section .wrapper .operating-hours .operation-hours-row .operation-hours-row-day {
  text-align: right;
  line-height: 40px;
  font-weight: bold;
}
.livechatsetting-section .wrapper .operating-hours .operation-hours-row .switch {
  margin-top: 5px;
  margin-bottom: 0;
}
.livechatsetting-section .wrapper .operating-hours .operation-hours-row .operation-hours-row-time {
  opacity: 0.6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.livechatsetting-section .wrapper .operating-hours .operation-hours-row .operating-hours-time {
  width: 100px;
}
.livechatsetting-section .wrapper .operating-hours .operation-hours-row.operation-hours-row-active .operation-hours-row-time {
  opacity: 1;
}
.livechatsetting-section .wrapper fieldset legend {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 6px;
  position: relative;
}
.livechatsetting-section .wrapper fieldset legend .icon {
  font-size: 20px;
  vertical-align: text-top;
}
.livechatsetting-section .wrapper fieldset legend label {
  margin: 0;
  font-weight: normal;
}
.livechatsetting-section .wrapper fieldset legend p {
  margin: 0;
  font-size: 12px;
  color: #717171;
}
.livechatsetting-section .wrapper fieldset legend .switch {
  margin: 0;
  position: absolute;
  bottom: 6px;
  right: 0;
}
.livechatsetting-section .wrapper fieldset .form-group {
  margin-bottom: 35px;
}
.livechatsetting-section .wrapper fieldset .form-group textarea.form-control {
  font-size: 14px!important;
  padding: 10px 12px;
}
.livechatsetting-section .wrapper fieldset .edit-message-extra-option {
  margin: 10px 0 0;
  font-size: 13px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body {
  position: relative;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings {
  border-top: solid 1px #eee;
  margin-top: 20px;
  padding-top: 20px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings h4 {
  font-weight: 500;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings .widget-roundrobin-settings-agents {
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding: 0 75px 15px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings .widget-roundrobin-settings-agents .lead {
  font-size: 16px;
  margin-bottom: 15px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings .widget-roundrobin-settings-agents .lead small {
  font-size: 14px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings .widget-roundrobin-settings-agents .widget-roundrobin-settings-agents-input select {
  width: 100%;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings .widget-roundrobin-settings-options {
  padding: 0 75px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings .widget-roundrobin-settings-options .form-group h4 {
  margin-top: 20px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body .widget-roundrobin-settings .widget-roundrobin-settings-options .form-group p {
  font-size: 13px;
}
.livechatsetting-section .wrapper .widget-main-panel .panel-body:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 5;
  content: '';
  display: block;
}
.livechatsetting-section .wrapper .widget-main-panel.active .panel-body:after {
  display: none;
}
.livechatsetting-section .wrapper .switch.setMode label {
  position: relative;
  z-index: 1;
}
.livechatsetting-section .wrapper .switch.setMode input {
  display: none;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-header {
  margin-bottom: 20px;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-header .canned-response-header-buttons {
  padding-top: 8px;
  padding-bottom: 7px;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-list .list-group-item p {
  color: #333333;
  margin-bottom: 15px;
  font-size: 13px;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-list .list-group-item .grey-label {
  font-size: 12px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-list .list-group-item .label-grey {
  margin: 0 2px;
  vertical-align: middle;
  display: inline-block;
  height: 22px;
  line-height: 15px;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-list .list-group-item .canned-response-meta-data p {
  color: #838383;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-list .list-group-item .canned-response-meta-data .canned-response-author {
  margin-bottom: 2px;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .canned-response-list .list-group-item .canned-response-meta-data .canned-response-date {
  font-size: 12px;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses .no-canned-responses,
.livechatsetting-section .wrapper #livechat-setting-canned-responses .has-canned-responses {
  display: none;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses.canned-response-empty .no-canned-responses {
  display: block;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses.canned-response-empty .has-canned-responses {
  display: none;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses.canned-response-not-empty .has-canned-responses {
  display: block;
}
.livechatsetting-section .wrapper #livechat-setting-canned-responses.canned-response-not-empty .no-canned-responses {
  display: none;
}
.livechatsetting-section .wrapper #livechat-setting-direct-link fieldset {
  margin-top: 30px;
}
.livechatsetting-section .wrapper #livechat-setting-direct-link fieldset .form-group {
  margin-bottom: 15px;
}
.livechatsetting-section .wrapper #livechat-setting-direct-link fieldset .form-group .form-control {
  font-size: 12px!important;
}
.livechatsetting-section .wrapper #livechat-setting-embed .widget-appearance-setting {
  margin-top: 10px;
}
.livechatsetting-section .wrapper #livechat-setting-embed .widget-appearance-setting .form-group {
  margin-bottom: 15px;
}
.livechatsetting-section .wrapper #livechat-setting-embed .widget-appearance-setting .form-group .input-group {
  width: 100%;
}
.livechatsetting-section .wrapper #livechat-setting-embed .widget-appearance-setting .form-group .input-group input[type="color"] {
  width: 25%;
}
.livechatsetting-section .wrapper #livechat-setting-embed .widget-appearance-setting .form-group .input-group input[type="color"] + input.form-control {
  width: 75%;
}
.livechatsetting-section .wrapper #livechat-setting-embed .widget-appearance-setting .form-group .form-control {
  font-size: 12px!important;
}
.select-color {
  height: 22px;
}
.select-color > label {
  display: inline-block;
  height: 100%;
  width: 22px;
  border-radius: 7px;
  text-align: center;
  color: #Fff;
  font-size: 10px;
  line-height: 22px;
  cursor: pointer;
  margin-bottom: 0;
  vertical-align: middle;
}
.select-color > label input {
  display: none;
}
.select-color > label i.fa {
  display: none;
}
.select-color > label input:checked + i.fa {
  display: inline-block;
}
.select-color.sm > label {
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 8px;
}
.livechatFilter .modal-body {
  padding-top: 15px;
  padding-bottom: 15px;
}
.livechatFilter .modal-body .panel {
  margin-bottom: 10px;
}
.livechatFilter .modal-body .panel .panel-heading {
  padding-top: 6px;
  padding-bottom: 6px;
}
.livechatFilter .modal-body .panel .panel-body {
  padding-top: 0;
  padding-bottom: 0;
}
.livechatFilter .modal-body .panel .panel-body hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.livechatFilter .modal-body .filter-moderators div.radio {
  margin-top: 5px;
  margin-bottom: 5px;
}
.livechat-manage-tags .modal-body {
  padding-top: 10px;
  padding-bottom: 10px;
}
.livechat-manage-tags .modal-body .checkbox {
  margin-top: 5px;
  margin-bottom: 5px;
}
.livechatreports-section {
  overflow: auto;
}
.livechatreports-section .wrapper {
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
.livechatreports-section .chart-filter .filter-aggregate-btns .btn {
  width: 33.3%;
}
.livechatreports-section .chart-filter .filter-webpages .input-group,
.livechatreports-section .chart-filter .filter-agents .input-group,
.livechatreports-section .chart-filter .filter-optional .input-group {
  position: relative;
}
.livechatreports-section .chart-filter .filter-webpages .input-group:after,
.livechatreports-section .chart-filter .filter-agents .input-group:after,
.livechatreports-section .chart-filter .filter-optional .input-group:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.5);
}
.livechatreports-section .chart-filter .filter-webpages.active .input-group:after,
.livechatreports-section .chart-filter .filter-agents.active .input-group:after,
.livechatreports-section .chart-filter .filter-optional.active .input-group:after {
  display: none;
}
.livechatreports-section .chart-filter-result-total {
  font-size: 23px;
  color: #838383;
  text-align: center;
  padding: 0 20px;
  line-height: 1.5em;
}
.livechatreports-section .chart-filter-result-total > span {
  display: block;
}
.livechatreports-section .chart-filter-result-total > span.chart-filter-result-total-number {
  color: #111;
  font-size: 35px;
}
.livechatreports-section .chart-holder {
  position: relative;
}
.livechatreports-section .chart-holder .chart-loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 5;
}
.livechatreports-section .chart-holder .chart-loading .icon-sync {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  margin-top: -50px;
  margin-left: -25px;
  color: #757575;
}
.livechatreports-section .chart-holder.state-loading .chart-loading {
  display: block;
}
.livechatreports-section #by-location-chart .chart-loading .icon-sync {
  margin-top: -13px;
}
.livechat-invite-form fieldset legend {
  color: #838383;
  font-size: 16px;
}
.livechat-invite-form .invite-select-share-new-share,
.livechat-invite-form .invite-select-share-existing-share {
  position: relative;
}
.livechat-invite-form .invite-select-share-new-share.active .invite-select-share-create-share:after,
.livechat-invite-form .invite-select-share-existing-share.active .invite-select-share-create-share:after,
.livechat-invite-form .invite-select-share-new-share.active .invite-share-list-existing-share:after,
.livechat-invite-form .invite-select-share-existing-share.active .invite-share-list-existing-share:after {
  display: none;
}
.livechat-invite-form .invite-select-share-new-share .invite-select-share-create-share,
.livechat-invite-form .invite-select-share-existing-share .invite-select-share-create-share,
.livechat-invite-form .invite-select-share-new-share .invite-share-list-existing-share,
.livechat-invite-form .invite-select-share-existing-share .invite-share-list-existing-share {
  position: relative;
}
.livechat-invite-form .invite-select-share-new-share .invite-select-share-create-share:after,
.livechat-invite-form .invite-select-share-existing-share .invite-select-share-create-share:after,
.livechat-invite-form .invite-select-share-new-share .invite-share-list-existing-share:after,
.livechat-invite-form .invite-select-share-existing-share .invite-share-list-existing-share:after {
  display: block;
  content: '';
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.modal-canned-response .form-group label {
  font-weight: 500;
  font-size: 14px;
}
.modal-canned-response .form-validation-error {
  padding: 10px 15px;
}
.modal-canned-response .form-validation-error ul {
  margin: 0;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu .dropdown-submenu-canned-messages {
  width: 400px;
  max-width: 400px;
}
.post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu .dropdown-submenu-canned-messages > li > a {
  white-space: normal;
  font-size: 12px;
  padding-top: 7px;
  padding-bottom: 7px;
}
@media (max-width: 1024px) {
  .post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu .dropdown-submenu-canned-messages {
    width: 300px;
  }
}
@media (max-width: 1024px) {
  .post-activity .post-activity-inside .post-info .integration-services ul.dropdown-menu .dropdown-submenu-canned-shortcuts {
    width: 160px;
  }
}
#at-view-canned-responses {
  width: 626px;
  max-height: 450px;
  overflow: auto;
}
#at-view-canned-responses .atwho-view-header {
  color: #111;
  height: 45px;
  line-height: 40px;
  font-size: 17px;
}
#at-view-canned-responses .atwho-view-header .icon {
  vertical-align: middle;
}
#at-view-canned-responses .atwho-view-header span {
  vertical-align: middle;
  font-weight: 300;
}
#at-view-canned-responses .atwho-view-ul {
  max-height: none;
}
#at-view-canned-responses .atwho-view-ul .canned-response-item {
  font-size: 12px;
}
/* switch styles */
.switch {
  width: 24rem;
  position: relative;
}
.switch input {
  position: absolute;
  top: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.switch input:checked {
  z-index: 1;
}
.switch input:checked + label {
  color: #333333;
  cursor: default;
}
.switch input:not(:checked) + label:hover {
  color: rgba(51, 51, 51, 0.5);
}
.switch label {
  color: rgba(51, 51, 51, 0.33);
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.switch .toggle-outside {
  height: 100%;
  border-radius: 2rem;
  padding: 0.25rem;
  overflow: hidden;
  transition: 0.25s ease all;
}
.switch .toggle-outside.has-border {
  box-shadow: 0 0 2px #8e8e8e inset;
}
.switch .toggle-inside {
  border-radius: 5rem;
  background: #6b6b6b;
  position: absolute;
  transition: 0.25s ease all;
}
.switch--horizontal {
  width: 18rem;
  height: 3rem;
  margin: 0 auto;
  font-size: 0;
  margin-bottom: 1rem;
}
.switch--horizontal input {
  height: 3rem;
  width: 6rem;
  left: 6rem;
  margin: 0;
}
.switch--horizontal input:checked ~ .toggle-outside .toggle-inside {
  left: 0.25rem;
  background: #e57979;
}
.switch--horizontal input:checked ~ .toggle-outside.has-border .toggle-inside {
  left: 0.4rem;
}
.switch--horizontal input ~ input:checked ~ .toggle-outside .toggle-inside,
.switch--horizontal input ~ input:checked ~ .toggle-outside.has-border .toggle-inside {
  left: 3.25rem;
  background: #80d066;
}
.switch--horizontal label {
  font-size: 1.5rem;
  line-height: 3rem;
  display: inline-block;
  width: 6rem;
  height: 100%;
  margin: 0;
  text-align: center;
}
.switch--horizontal label:last-of-type {
  margin-left: 6rem;
}
.switch--horizontal .toggle-outside {
  background: #ececec;
  position: absolute;
  width: 6rem;
  left: 6rem;
}
.switch--horizontal .toggle-inside {
  height: 2.4rem;
  width: 2.4rem;
}
.switch--horizontal.switch-no-label .toggle-outside,
.switch--horizontal.switch-no-label input {
  left: 0;
}
.switch--horizontal.switch-wide {
  width: auto;
  height: auto;
  overflow: auto;
  margin-left: 20px;
  margin-right: 20px;
}
.switch--horizontal.switch-wide label {
  width: 50%;
  display: block;
  float: left;
  padding-right: 4rem;
  padding-left: 4rem;
  text-align: right;
}
.switch--horizontal.switch-wide label p {
  color: rgba(51, 51, 51, 0.5);
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6em;
}
.switch--horizontal.switch-wide label:last-of-type {
  margin-left: 0;
  text-align: left;
}
.switch--horizontal.switch-wide .toggle-outside,
.switch--horizontal.switch-wide input {
  height: 3rem;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -3rem;
}
#co-browsing-app {
  height: 100%;
}
#co-browsing-app .navbar {
  display: block;
  height: 60px;
  margin-left: 0;
}
#co-browsing-app .navbar .container {
  line-height: 60px;
}
#co-browsing-app .navbar .container .cobrowsing-url {
  background: #fbfbfb;
  padding: 0 10px;
  width: 70%;
  border: solid 1px #111;
  display: inline-block;
  font-size: 12px;
  line-height: 33px;
  height: 34px;
  vertical-align: middle;
}
#co-browsing-app .cobrowsing-iframe-holder {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #eee;
  overflow: auto;
}
#co-browsing-app .cobrowsing-iframe-holder iframe#mirror-iframe {
  border: none;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
[tooltip] {
  position: relative;
}
[tooltip]::before {
  font-family: 'Roboto', sans-serif;
  content: "";
  position: absolute;
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
  z-index: 99;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
[tooltip]::after {
  position: absolute;
  left: 50%;
  top: -6px;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  border-radius: 5px;
  pointer-events: none;
  padding: 5px 10px;
  z-index: 99;
  opacity: 0;
  line-height: 1.4;
  white-space: nowrap;
  text-transform: initial;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translateX(-50%) translateY(-100%);
  -moz-transform: translateX(-50%) translateY(-100%);
  -ms-transform: translateX(-50%) translateY(-100%);
  -o-transform: translateX(-50%) translateY(-100%);
  content: attr(tooltip);
}
[tooltip].tooltip-small::after {
  min-width: 0;
}
[tooltip].tooltip-paragraph::after {
  text-align: left;
  width: 150px;
  white-space: normal;
}
[tooltip][tooltip-position='left']::before {
  left: 0%;
  top: 50%;
  margin-left: -12px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
}
[tooltip][tooltip-position='left']::after {
  left: 0%;
  top: 50%;
  margin-left: -8px;
  -webkit-transform: translateX(-100%) translateY(-50%);
  -moz-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  -o-transform: translateX(-100%) translateY(-50%);
}
[tooltip][tooltip-position='top-right']::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
[tooltip][tooltip-position='top-right']::after {
  left: 0;
  -webkit-transform: translateX(0) translateY(-100%);
  -moz-transform: translateX(0) translateY(-100%);
  -ms-transform: translateX(0) translateY(-100%);
  -o-transform: translateX(0) translateY(-100%);
}
[tooltip][tooltip-position='top-left']::before {
  right: 50%;
  left: auto;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
[tooltip][tooltip-position='top-left']::after {
  right: 0;
  left: auto;
  -webkit-transform: translateX(0) translateY(-100%);
  -moz-transform: translateX(0) translateY(-100%);
  -ms-transform: translateX(0) translateY(-100%);
  -o-transform: translateX(0) translateY(-100%);
}
[tooltip][tooltip-position='bottom']::before {
  top: 100%;
  margin-top: 8px;
  -webkit-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
  -moz-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
  -ms-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
  -o-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
}
[tooltip][tooltip-position='bottom']::after {
  top: 100%;
  margin-top: 8px;
  -webkit-transform: translateX(-50%) translateY(0%);
  -moz-transform: translateX(-50%) translateY(0%);
  -ms-transform: translateX(-50%) translateY(0%);
  -o-transform: translateX(-50%) translateY(0%);
}
[tooltip][tooltip-position='right']::before {
  left: 100%;
  top: 50%;
  margin-left: 1px;
  -webkit-transform: translatey(-50%) rotate(90deg);
  -moz-transform: translatey(-50%) rotate(90deg);
  -ms-transform: translatey(-50%) rotate(90deg);
  -o-transform: translatey(-50%) rotate(90deg);
}
[tooltip][tooltip-position='right']::after {
  left: 100%;
  top: 50%;
  margin-left: 8px;
  -webkit-transform: translateX(0%) translateY(-50%);
  -moz-transform: translateX(0%) translateY(-50%);
  -ms-transform: translateX(0%) translateY(-50%);
  -o-transform: translateX(0%) translateY(-50%);
}
[tooltip]:hover::after,
[tooltip]:hover::before {
  opacity: 1;
}
.css-tooltip {
  position: relative;
}
.css-tooltip .tooltip-content {
  position: absolute;
  left: 50%;
  top: -6px;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  border-radius: 5px;
  pointer-events: none;
  padding: 5px 10px;
  z-index: 99;
  opacity: 0;
  line-height: 1.4;
  white-space: nowrap;
  text-transform: initial;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translateX(-50%) translateY(-100%);
  -moz-transform: translateX(-50%) translateY(-100%);
  -ms-transform: translateX(-50%) translateY(-100%);
  -o-transform: translateX(-50%) translateY(-100%);
}
.css-tooltip .tooltip-content::before {
  font-family: 'Roboto', sans-serif;
  content: "";
  position: absolute;
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
  z-index: 99;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  bottom: -3px;
  left: 50%;
  opacity: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.css-tooltip .tooltip-content.tooltip-paragraph {
  text-align: left;
  width: 150px;
  white-space: normal;
}
.css-tooltip .tooltip-content.tooltip-small {
  min-width: 0;
}
.css-tooltip .tooltip-content.tooltip-position-bottom {
  top: 100%;
  margin-top: 8px;
  -webkit-transform: translateX(-50%) translateY(0%);
  -moz-transform: translateX(-50%) translateY(0%);
  -ms-transform: translateX(-50%) translateY(0%);
  -o-transform: translateX(-50%) translateY(0%);
}
.css-tooltip .tooltip-content.tooltip-position-bottom::before {
  top: 1px;
  bottom: auto;
  -webkit-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
  -moz-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
  -ms-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
  -o-transform: translateX(-50%) translateY(-100%) rotate(-180deg);
}
.css-tooltip .tooltip-content.tooltip-position-right {
  left: 100%;
  top: 50%;
  margin-left: 8px;
  -webkit-transform: translateX(0%) translateY(-50%);
  -moz-transform: translateX(0%) translateY(-50%);
  -ms-transform: translateX(0%) translateY(-50%);
  -o-transform: translateX(0%) translateY(-50%);
}
.css-tooltip .tooltip-content.tooltip-position-right::before {
  left: -7px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
}
.css-tooltip .tooltip-content.tooltip-position-top-right {
  left: 0;
  -webkit-transform: translateX(0) translateY(-100%);
  -moz-transform: translateX(0) translateY(-100%);
  -ms-transform: translateX(0) translateY(-100%);
  -o-transform: translateX(0) translateY(-100%);
}
.css-tooltip .tooltip-content.tooltip-position-top-right::before {
  left: 14px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.css-tooltip .tooltip-content.tooltip-position-top-left {
  right: 0;
  left: auto;
  -webkit-transform: translateX(0) translateY(-100%);
  -moz-transform: translateX(0) translateY(-100%);
  -ms-transform: translateX(0) translateY(-100%);
  -o-transform: translateX(0) translateY(-100%);
}
.css-tooltip .tooltip-content.tooltip-position-top-left::before {
  right: 14px;
  left: auto;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}
.css-tooltip .tooltip-content.tooltip-position-left {
  left: 0%;
  top: 50%;
  margin-left: -8px;
  -webkit-transform: translateX(-100%) translateY(-50%);
  -moz-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  -o-transform: translateX(-100%) translateY(-50%);
}
.css-tooltip .tooltip-content.tooltip-position-left::before {
  right: -7px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  left: auto;
  bottom: auto;
}
.css-tooltip:hover .tooltip-content {
  opacity: 1;
}
.list-container.box-view-container .columned {
  width: 100%;
}
.list-container.box-view-container .columned .box {
  position: relative;
  overflow: hidden;
  height: 100%;
  float: left;
  background: #F7f7f7;
  border-radius: 5px;
  border: 0;
}
.list-container.box-view-container .columned .box:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.list-container.box-view-container .columned .box:after {
  position: absolute;
  content: "";
  width: 105%;
  height: 5px;
  bottom: 0;
  left: 0;
  z-index: 200;
  background-color: #000;
}
.list-container.box-view-container .columned .box .click-box {
  z-index: 100;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.list-container.box-view-container .columned .box .box-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.list-container.box-view-container .columned .box .box-inner .header {
  width: 100%;
  min-height: 16%;
  background-color: #F2F2F2;
  padding: 5px 10px;
  position: relative;
}
.list-container.box-view-container .columned .box .box-inner .header h4,
.list-container.box-view-container .columned .box .box-inner .header h5 {
  margin: 0px;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  width: calc(100% - 20px);
}
.list-container.box-view-container .columned .box .box-inner .header a {
  color: #888;
}
.list-container.box-view-container .columned .box .box-inner .header .folder-desc {
  position: absolute;
  top: 8px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0);
  color: #888;
  z-index: 150;
  display: block;
  cursor: pointer;
}
.list-container.box-view-container .columned .box .box-inner .header .info {
  font-size: 10px;
  color: #B2B2B2;
}
.list-container.box-view-container .columned .box .box-inner .header .status {
  font-size: 9px;
}
.list-container.box-view-container .columned .box .box-inner .header .source-icon {
  color: #888;
  position: absolute;
  top: 10px;
  right: 10px;
}
.list-container.box-view-container .columned .box .box-inner .box-body {
  text-align: center;
  height: 68%;
  /*

					&:hover .btn-image-upload {
				        display: block;
				    }

				    .btn-image-upload {
				        display: none;
				        position: absolute;
				        top: 10px;
				        right: 10px;
				        padding: 5px 10px;
				        color: white;
				        font-size: 12px;
				        background: black;
				        .opacity(70);
				        .border-radius(3px);
				        cursor: pointer;
				        &:hover {
				            color: #ddd;
				        }
				    }

		        	//------- calendar---------

		        	.content-calendar{
		        		width: 140px;
						height: 90px;
						background: #E8E8E8;
						margin: 5px 9px;
						border-radius: 8px;
		        	}//content-calendar


		        	//-----------calendar----------
		        	.calendar-description{
						padding: 10px 10px;
						text-align: center;
						font-size: 11px;
						height: 100px;
						>div{
							i{
								color: #888;
								line-height: 80px;
								&.share-icon{
									font-size: 25px;
								}//share-icon
							}
						}
		        	}//calendar-description
		        	*/
}
.list-container.box-view-container .columned .box .box-inner .box-body .icon,
.list-container.box-view-container .columned .box .box-inner .box-body .fa {
  color: #888;
  margin-top: 26%;
  display: inline-block;
}
.list-container.box-view-container .columned .box .box-inner .box-body .icon.fa,
.list-container.box-view-container .columned .box .box-inner .box-body .fa.fa {
  margin-top: 18%;
}
.list-container.box-view-container .columned .box .box-inner .box-body img {
  display: block;
  margin: 0 auto;
  opacity: 0.8;
  filter: alpha(opacity=80);
  max-height: 100%;
  max-width: 100%;
}
.list-container.box-view-container .columned .box .box-inner .box-body .folder-description {
  padding: 10px 10px;
  text-align: center;
  font-size: 11px;
  height: 100%;
}
.list-container.box-view-container .columned .box .box-inner .box-body .folder-description > div i {
  color: #888;
  margin-top: 17%;
}
.list-container.box-view-container .columned .box .box-inner .box-body .folder-description > div i.share-icon {
  font-size: 25px;
}
.list-container.box-view-container .columned .box .box-inner .box-body .header-contact {
  position: absolute;
  top: 2px;
  left: 10px;
  background: transparent;
  right: 10px;
  color: #e2e2e2;
  z-index: 50;
}
.list-container.box-view-container .columned .box .box-inner .box-body .header-contact h5 {
  margin: 10px 0px 0px;
}
.list-container.box-view-container .columned .box .box-inner .box-body a.link-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: inline-block;
}
.list-container.box-view-container .columned .box .box-inner .box-body a.link-img img {
  margin-top: -16%;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-priority {
  width: 50%;
  margin-bottom: 10px;
  height: 100%;
  background: #C7C7C7;
  padding-top: 25%;
  text-align: center;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  position: relative;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-priority[data-priority="High"] {
  background: rgba(231, 76, 60, 0.5);
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-priority[data-priority="Medium"] {
  background: rgba(230, 126, 34, 0.5);
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-priority[data-priority="Low"] {
  background: rgba(147, 226, 180, 0.5);
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-priority > span {
  z-index: 5;
  position: relative;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-priority .percentage {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  background: #49d181;
  min-height: 18px;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-priority .percentage > span {
  position: absolute;
  bottom: 3px;
  left: 3px;
  font-weight: normal;
  font-size: 9px;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-duedate {
  width: 50%;
  background: #F7F7F7;
  height: 100%;
  color: #888;
  font-size: 10px;
  padding: 0 10px;
  font-weight: bold;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-duedate .day {
  font-size: 18px;
  margin: 40% 33% 7%;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-duedate .year {
  margin: auto;
  font-size: 11px;
  text-align: center;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-duedate.valid-date {
  font-weight: bold;
}
.list-container.box-view-container .columned .box .box-inner .box-body .task-duedate.invalid-date {
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  margin-top: 19%;
}
.list-container.box-view-container .columned .box .box-inner .box-body .description {
  height: 100%;
  color: #777;
  padding: 5px 10px;
  overflow: hidden;
  font-size: 10px;
  line-height: 13px;
}
.list-container.box-view-container .columned .box .box-inner .box-body .description span[style] {
  font-size: 10px !important;
  color: #777 !important;
  background-color: transparent !important;
  font-weight: normal !important;
  font-style: normal !important;
}
.list-container.box-view-container .columned .box .box-inner .box-body .description pre {
  display: block;
  padding: 0px;
  margin: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: normal;
  word-break: break-all;
  word-wrap: break-word;
  color: inherit;
  border: none;
}
.list-container.box-view-container .columned .box .box-inner .mask-img {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}
.list-container.box-view-container .columned .box .box-inner .footer {
  background: #E8E8E8;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 11px;
  width: 100%;
  height: 16%;
  line-height: 26px;
  color: #AAABAA;
  padding: 0px 10px;
  z-index: 101;
}
.list-container.box-view-container .columned .box .box-inner .footer .pull-right {
  padding: 5px 0;
}
.list-container.box-view-container .columned .box .box-inner .footer div.ellipsis {
  width: 79px;
}
.list-container.box-view-container .columned .box .box-inner .footer span.date {
  text-align: right;
}
.list-container.box-view-container .columned .box .box-inner .footer a {
  color: #AAABAA;
}
.list-container.box-view-container .columned .box .box-inner .footer-contact {
  width: 100%;
  height: 16%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 101;
}
.list-container.box-view-container .columned .box .box-inner .footer-contact .title {
  width: 140px;
  font-size: 11px;
  margin: 0;
  text-transform: capitalize;
  font-weight: bold;
}
.list-container.box-view-container .columned .box .box-inner .footer-contact .title a {
  color: #fff;
}
.list-container.box-view-container .columned .box .box-inner .footer-contact .descripe {
  color: #ccc;
  font-size: 10px;
  font-weight: bold;
}
.list-container.box-view-container .columned .box .box-inner .box-hover {
  position: absolute;
  font-size: 14px;
  line-height: 30px;
  bottom: -100px;
  left: 0px;
  height: 100%;
  right: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.anonymous-user .list-container.box-view-container .columned .box .box-inner .box-hover {
  display: none;
}
.list-container.box-view-container .columned .box .box-inner .box-hover ul {
  height: 26px;
  margin: 0 auto;
}
.list-container.box-view-container .columned .box .box-inner .box-hover ul li {
  width: 30px;
  height: 26px;
  float: left;
  text-align: center;
  list-style: none;
}
.list-container.box-view-container .columned .box .box-inner .box-hover ul li a {
  display: block;
  cursor: pointer;
  float: left;
  color: #fff;
  width: 30px;
  height: 26px;
}
.list-container.box-view-container .columned .box .box-inner .box-hover ul li a.btn-add-share .fa.fa-check {
  display: none;
}
.list-container.box-view-container .columned .box .box-inner .box-hover ul li:hover a {
  color: #eee;
}
.list-container.box-view-container .columned .box .box-inner .box-hover ul li:last-child {
  float: right;
  line-height: 30px;
}
.list-container.box-view-container .columned .box:hover .box-hover,
.list-container.box-view-container .columned .box.selected .box-hover,
.list-container.box-view-container .columned .box.picked .box-hover {
  bottom: 0;
}
.list-container.box-view-container .columned .box.picked .box-hover ul li a.btn-add-share .fa.fa-check {
  display: inline-block;
}
.list-container.box-view-container .columned .box.picked .box-hover ul li a.btn-add-share .fa.fa-share {
  display: none;
}
.list-container.box-view-container .columned .box.is-new .box-inner .header {
  background: #d2f1f9;
}
.list-container.box-view-container .columned .item-contact:after {
  background-color: #24BCF4;
}
.list-container.box-view-container .columned .item-contact.item .box-body {
  height: 100%;
}
.list-container.box-view-container .columned .item-contact.item-folder .box-body {
  height: 68%;
}
.list-container.box-view-container .columned .item-contact.item-folder .box-body img {
  height: 100%;
}
.list-container.box-view-container .columned .item-contact .box-hover {
  background: #24bcf4;
}
.list-container.box-view-container .columned .item-link:after {
  background-color: #D52E2E;
}
.list-container.box-view-container .columned .item-link .box-hover {
  background: #d52e2e;
}
.list-container.box-view-container .columned .item-task:after {
  background-color: #49D181;
}
.list-container.box-view-container .columned .item-task .box-body {
  height: 68% !important;
}
.list-container.box-view-container .columned .item-task .box-hover {
  background: #49d181;
}
.list-container.box-view-container .columned .item-note:after {
  background-color: #1bc8b2;
}
.list-container.box-view-container .columned .item-note .box-hover {
  background: #1bc8b2;
}
.list-container.box-view-container .columned .item-note.item-note-unpublished .header:after,
.list-container.box-view-container .columned .item-note.item-note-draft .header:after {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  right: -14px;
  background: #dd9b39;
  width: 28px;
  transform: rotate(45deg);
  height: 28px;
}
.list-container.box-view-container .columned .item-note.item-note-unpublished.item-note-unpublished .header:after,
.list-container.box-view-container .columned .item-note.item-note-draft.item-note-unpublished .header:after {
  background: #DD4B39;
}
.list-container.box-view-container .columned .item-document:after {
  background-color: #bc62be;
}
.list-container.box-view-container .columned .item-document .box-hover {
  background: #bc62be;
}
.list-container.box-view-container .columned .item-document .header {
  padding: 7px 10px 1px!important;
}
.list-container.box-view-container .columned .item-document .header .item-date-stamp {
  font-size: 9px;
  color: #999;
}
.list-container.box-view-container .columned .item-document .header h4.title {
  line-height: 1;
}
.list-container.box-view-container .columned .item-document .box-body {
  height: 59%!important;
}
.list-container.box-view-container .columned .item-document .box-body .fa {
  margin-top: 12%!important;
}
.list-container.box-view-container .columned .item-calendar:after {
  background-color: #7C49D1;
}
.list-container.box-view-container .columned .item-calendar .box-hover {
  background: #875fad;
}
.list-container.box-view-container .columned .item-event:after {
  background-color: #7C49D1;
}
.list-container.box-view-container .columned .item-event .box-hover {
  background: #875fad;
}
.list-container.box-view-container .columned .wide-box:after {
  background-color: #F77D33;
}
.list-container.box-view-container .columned .wide-box .box-hover {
  background: #f9853f;
}
.list-container.box-view-container .item-source {
  float: right;
  padding: 2px;
  display: block;
  font-size: 17px;
  position: absolute;
  bottom: 4px;
  right: 5px;
  font-size: 14px;
  color: #fff;
  z-index: 100;
}
.list-container.box-view-container .source-row {
  background: #EDECEC;
  width: 45px;
  height: 27px;
  padding: 0px 11px;
  border: 1px solid #ddd;
}
.list-container.box-view-container .source-row:hover {
  background: #E5E5E5;
}
.popover-folder-desc {
  min-width: 160px;
}
@media (min-width: 1281px) {
  .list-container.box-view-container .columned .box {
    width: 15.25%;
    margin: 0 1.7% 20px 0;
  }
  .list-container.box-view-container .columned .box:nth-child(6n) {
    margin: 0 0 20px 0;
  }
  .row-view-for-share .list-container.box-view-container .columned .box {
    width: 18.5%;
    margin: 0 1.875% 20px 0;
  }
}
@media (max-width: 1280px) and (min-width: 1161px) {
  .list-container.box-view-container .columned .box {
    width: 18.5%;
    margin: 0 1.875% 20px 0;
  }
  .list-container.box-view-container .columned .box:nth-child(5n) {
    margin: 0 0 20px 0;
  }
  .row-view-for-share .list-container.box-view-container .columned .box {
    width: 23.65%;
    margin: 0 1.8% 20px 0;
  }
}
@media (max-width: 1160px) and (min-width: 986px) {
  .list-container.box-view-container .columned .box {
    width: 23.65%;
    margin: 0 1.8% 20px 0;
  }
  .list-container.box-view-container .columned .box:nth-child(4n) {
    margin: 0 0 20px 0;
  }
  .row-view-for-share .list-container.box-view-container .columned .box {
    width: 31.9%;
    margin: 0 2.15% 20px 0;
  }
}
@media (max-width: 985px) and (min-width: 830px) {
  .list-container.box-view-container .columned .box {
    width: 31.9%;
    margin: 0 2.15% 20px 0;
  }
  .list-container.box-view-container .columned .box:nth-child(3n) {
    margin: 0 0 20px 0;
  }
  .row-view-for-share .list-container.box-view-container .columned .box {
    width: 48%;
    margin: 0 4% 20px 0;
  }
}
@media (max-width: 829px) and (min-width: 626px) {
  .list-container.box-view-container .columned .box {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .list-container.box-view-container .columned .box:nth-child(2n) {
    margin: 0 0 20px 0;
  }
  .row-view-for-share .list-container.box-view-container .columned .box {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 625px) {
  .list-container.box-view-container .columned .box {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.box-action-share {
  cursor: pointer;
  text-align: center;
  background: #8bc53f;
}
.box-action-share:hover {
  opacity: 90;
  filter: alpha(opacity=9000);
}
.box-action-share .box-create-new-share {
  height: 241px;
  width: 250px;
}
.box-action-share .box-create-new-share .img-new-share {
  width: 200px;
  height: 200px;
}
.box-action-share .box-create-new-share .add-share-div {
  background-color: #fff;
  height: 44px;
  text-align: center;
  color: #000;
}
.box-action-share .box-create-new-share h4 {
  background: #fff;
}
.row-action-share {
  cursor: pointer;
}
.row-action-share .row-create-new-share {
  background: #8bc53f;
  padding: 22px 0px 22px 0px;
  height: 5px;
  width: 51px;
  float: left;
}
.row-action-share .row-create-new-share .img-new-share {
  height: 46px;
  width: 51px;
  top: 5.1px;
  position: absolute;
  left: 10px;
  right: 0px;
}
.item-preview {
  background: #fafafa;
  overflow-x: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 0 5px 5px 5px;
}
.item-preview .header {
  background: #f2f2f2;
  min-height: 60px;
  padding-left: 60px;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.item-preview .header .pre-title {
  position: absolute;
  width: 60px;
  top: 0;
  left: 0;
  bottom: 0;
}
.item-preview .header .pre-title .icon {
  display: block;
  height: 100%;
  background-color: #333;
  text-align: center;
  font-size: 26px;
  line-height: 2.1;
  color: #fff;
}
.item-preview .header .title {
  display: block;
  color: #838383;
  font-size: 16px;
  line-height: 1.6;
  padding: 17px 20px;
  margin-right: 75px;
}
.item-note .item-preview .header .title {
  margin-right: 185px;
}
.item-preview .header .options {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  height: 60px;
}
.item-preview .header .options .dropdown {
  display: inline-block;
  vertical-align: middle;
}
.item-preview .header .options .dropdown .dropdown-toggle {
  display: inline-block;
  font-size: 20px;
  color: #838383;
  line-height: 42px;
  height: 40px;
  padding: 0 10px;
}
.item-preview .header .options .dropdown .dropdown-menu {
  left: auto;
  right: 0;
}
.item-preview .header .options .dropdown .dropdown-menu > li > a {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  color: #838383;
}
.item-preview .header .options .dropdown .dropdown-menu > li > a i {
  font-size: 14px;
}
.item-preview .header .options .dropdown.open .dropdown-toggle,
.item-preview .header .options .dropdown .dropdown-toggle :hover {
  color: #565656;
}
.item-preview .header .options > .btn {
  display: inline-block;
  vertical-align: middle;
}
.app-modals .item-preview .header .options > .btn.btn-print {
  display: none;
}
.item-preview .header .options .modal-close-btn {
  display: none;
  vertical-align: middle;
  font-size: 11px;
  color: #838383;
  line-height: 42px;
  height: 40px;
  padding: 0 5px;
}
.modal-frame .item-preview .header .options .modal-close-btn {
  display: inline-block;
}
.item-note-unpublished .item-preview .header:after,
.item-note-draft .item-preview .header:after {
  content: '';
  display: block;
  position: absolute;
  top: -15px;
  right: -15px;
  background: #dd9b39;
  width: 30px;
  transform: rotate(45deg);
  height: 30px;
}
.item-note-unpublished .item-preview .header:after {
  background: #DD4B39;
}
.item-preview .body .item-media {
  padding: 20px 30px 10px;
  text-align: center;
}
.item-preview .body .item-media > img {
  max-width: 70%;
  max-height: 300px;
}
.item-preview .body .item-desc {
  padding: 20px 30px 10px;
  color: #565656;
  font-size: 15px;
  line-height: 1.35;
}
.item-preview .body .item-desc p {
  margin: 0 0 10px;
}
.item-preview .body .item-fields {
  background: #f6f6f6;
  width: 100%;
  max-width: 100%;
  padding: 10px 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.item-preview .body .item-fields .item-field {
  padding: 10px 0;
  color: #565656;
  font-size: 14px;
}
.item-preview .body .item-fields .item-field label {
  font-size: 12px;
  color: #838383;
  margin: 0;
}
.item-preview .body .item-fields .item-field .item-field-value .progress {
  margin: 10px 0 5px;
  background: #fdfdfd;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value {
  margin: 5px 0;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .item-user-list-item {
  float: left;
  margin: 0 5px;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .item-user-list-item .userImage {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee {
  display: inline-block;
  height: 26px;
  margin: 0 10px 10px 0;
  padding: 0 10px;
  color: #6b6b6b;
  font-size: 12px;
  line-height: 26px;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee .userImage {
  margin-left: -13px;
  display: block;
  float: left;
  margin-right: 5px;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee .userImage img {
  display: block;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee .userName {
  display: inline-block;
  background: #e8e8e8;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee.task-assignee-status-accepted .fa:before {
  content: "\f087";
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee.task-assignee-status-declined {
  opacity: 0.7;
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee.task-assignee-status-declined .fa:before {
  content: "\f088";
}
.item-preview .body .item-fields .item-field.item-user-list-field .item-field-value .task-assignee.task-assignee-role-organizer .fa:before {
  content: "\f015";
}
.item-preview .body .item-comments {
  margin: 30px 60px;
}
.item-preview .body .item-comments .comment-history-tab-links {
  float: right!important;
  line-height: 30px;
  height: 30px;
  width: auto!important;
}
.item-preview .body .item-comments .comment-history-tab-links a {
  display: inline-block;
  margin: 0 5px;
  height: 30px;
  color: #777;
  font-size: 13px;
  padding: 2px 5px 0;
  text-decoration: none;
}
.item-preview .body .item-comments .comment-history-tab-links a.active {
  border-bottom: solid 2px #47a447;
}
.item-preview .body .item-comments ul.comments-list {
  list-style: none;
}
.item-preview .body ul,
.item-preview .body ol {
  padding: 10px 30px;
  margin: 0 0 5px;
}
.item-preview .body ul {
  list-style: disc;
}
.item-preview .footer {
  background: #f2f2f2;
  color: #838383;
  line-height: 35px;
  font-size: 12px;
  padding: 0 30px;
}
.item-preview .footer a {
  color: #838383;
}
.item-preview .footer ul.breadcrumb {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  line-height: 2;
}
.item-preview .footer ul.breadcrumb li {
  vertical-align: middle;
  max-width: 120px;
}
.item-preview[data-type="task"] .header .pre-title .icon {
  background-color: #49d181;
}
.item-preview[data-type="contact"] .header .pre-title .contact-image-dropzone {
  height: 60px;
  overflow: hidden;
}
.item-preview[data-type="contact"] .header .pre-title .icon {
  background-color: #24bcf4;
}
.item-preview[data-type="link"] .header .pre-title {
  background-color: #d52e2e;
}
.item-preview[data-type="link"] .header .pre-title .link-favicon {
  text-align: center;
  height: 60px;
  line-height: 60px;
}
.item-preview[data-type="calendar"] .header .pre-title .icon {
  background-color: #8a61b1;
}
.item-preview[data-type="note"] .header .pre-title .icon {
  background-color: #1bc8b2;
}
.item-preview[data-type="note"] .body .item-desc {
  background: #fff;
}
.item-preview[data-type="note"] .body pre.text-format-note {
  border: none;
  background-color: #FFF;
}
.item-preview[data-type="document"] .header .pre-title .icon {
  background-color: #bc62be;
}
.item-preview[data-type="document"] .header .title {
  margin-right: 175px;
}
.contact-search-actions {
  width: 365px;
  padding-left: 135px;
  float: left;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  margin-top: 18px;
  margin-bottom: -3px;
}
.contact-search-actions .cancel-action {
  margin: 20px 10px 10px 15px;
}
.contact-search-actions .save-action {
  margin: 20px 0px 10px 20px;
}
.activity-link-preview {
  margin-top: 10px;
}
.activity-link-preview .activity-link-preview-image {
  padding-right: 0;
}
.activity-link-preview .activity-link-preview-title {
  line-height: 1.3!important;
  margin-bottom: 5px;
  font-size: 13px;
  font-style: normal;
}
.activity-link-preview .activity-link-preview-title > img {
  margin-right: 5px;
}
.activity-link-preview .activity-link-preview-description {
  font-size: 13px;
  margin-bottom: 0;
}
.attendee-going {
  padding: 10px 30px;
  background: #269abc;
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 1px #f2f2f2;
  color: #fff;
}
.attendee-going > p {
  line-height: 30px;
  margin-bottom: 0;
}
.item-user-list-field ul.event-attendees-list {
  list-style: none;
  padding: 0;
}
.note-content {
  color: #6a6a6a;
  font-size: 14px;
  padding-top: 10px;
}
.note-content ul {
  list-style: disc;
  margin-left: 20px;
}
.note-editable ol,
.note-editable ul {
  padding: inherit;
  margin: inherit;
  list-style: inherit;
}
.document-preview-modal {
  height: calc(100% - 60px);
}
.document-preview-modal .document-preview-page {
  height: 100%;
}
.document-preview-page .single-page {
  height: 100%;
}
.document-preview-page .content {
  margin: 0 auto !important;
  width: 100% !important;
  height: calc(100% - 60px);
}
.document-preview-page .document-preview {
  height: 100%;
}
.document-preview-page .document-preview > .row {
  margin-left: 0;
  margin-right: 0;
}
.document-preview-page .document-preview .header {
  z-index: 5;
}
.document-preview-page .document-preview .document-body-row {
  height: calc(100% - 60px);
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col {
  height: 100%;
  overflow: auto;
  overflow-x: auto;
  position: relative;
  background: #fcfcfc;
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-canvas-holder {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-canvas-holder canvas {
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-loading,
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-error {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: #838383;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-loading .icon,
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-error .icon {
  font-size: 75px;
  margin-bottom: 10px;
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-loading span,
.document-preview-page .document-preview .document-body-row .document-body-preview-col .document-preview-error span {
  display: block;
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col.loading .document-preview-loading {
  display: block;
}
.document-preview-page .document-preview .document-body-row .document-body-preview-col.error .document-preview-error {
  display: block;
}
.document-preview-page .document-preview .document-body-row .body {
  height: 100%;
  overflow: auto;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.document-preview-page .document-preview .document-body-row .body .item-fields {
  padding-left: 0;
  padding-right: 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  box-shadow: none;
  background: none;
}
.document-preview-page .document-preview .document-body-row .body .item-comments {
  margin: 0;
}
.document-preview-page .document-preview .document-body-row .body .item-comments ul.comments-list {
  padding-left: 0;
  padding-right: 0;
  max-height: none;
}
.document-preview-page .document-preview .document-body-row .body .item-comments .history-content {
  padding: 0;
}
.document-preview-page .document-preview .document-body-row .body .wdt-emoji-popup {
  bottom: auto!important;
  top: 100%!important;
  z-index: 1;
}
.global-search {
  height: 100%;
}
.global-search .header {
  width: 100%;
  padding: 15px 20px;
}
.global-search .header .toolbar-search {
  width: calc(100% - 400px);
}
.global-search .header .toolbar-search form {
  width: 100%;
}
.global-search .header .toolbar-search .search-class {
  float: right;
  width: calc(100% - 100px);
  height: 75px;
  font-size: 2.6em;
  padding: 0 75px 0 20px;
}
.global-search .header .toolbar-search .icon-search {
  float: left;
  width: 100px;
  height: 75px;
}
.global-search .header .toolbar-search .icon-search i {
  margin-top: 9px;
  margin-left: 18px;
  font-size: 3.2em;
  display: inline-block;
}
.global-search .header .toolbar-search .reset {
  background: none;
  width: 60px;
  height: 75px;
  top: 0;
  right: 0 !important;
}
.global-search .header .toolbar-search .reset i {
  font-size: 2.6em;
  margin-top: 19px;
  cursor: pointer;
}
.global-search .header .filter-type .btn,
.global-search .header .filter-section .btn {
  background-color: #F0F0F0;
  box-shadow: none;
  height: 75px;
  font-size: 1.7em;
  width: 180px;
  color: #555;
  padding: 17px 12px;
}
.global-search .header .filter-type .btn .caret,
.global-search .header .filter-section .btn .caret {
  border-top-color: #888888;
  margin-left: 3px;
}
.global-search .header .filter-type .types-list,
.global-search .header .filter-section .types-list {
  min-width: 180px;
}
.global-search .header .filter-section {
  margin-right: 10px;
}
.global-search .search-result {
  overflow-y: auto;
  height: calc(100% - 105px);
  margin-left: 25px;
  margin-right: 25px;
}
.global-search .search-result .list-container {
  margin: 0 10px 0;
}
.global-search .search-result .list-container ul.list {
  margin: 0;
  list-style: none;
  border: none;
}
.global-search .search-result .list-container ul.list li.title {
  height: 26px;
  background-color: #fafafa;
  margin: 0 0 0 -20px;
  padding: 4px 20px 0;
}
.global-search .search-result .list-container ul.list li.title i {
  color: #888;
}
.global-search .search-result .list-container ul.list li.title h4 {
  font-weight: normal;
  font-size: 12px;
  margin: 0;
  padding-left: 5px;
  display: inline-block;
}
.global-search .search-result .list-container ul.list li.row {
  padding: 10px 0;
  border-bottom: solid 1px #DEDEDE;
  border-top: solid 1px #FFF;
  overflow: auto;
  font-size: 11px;
  cursor: pointer;
}
.global-search .search-result .list-container ul.list li.row .result-preview {
  display: block;
  float: left;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  font-size: 20px;
}
.global-search .search-result .list-container ul.list li.row .result-preview img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: block;
}
.global-search .search-result .list-container ul.list li.row .result-preview .user-link,
.global-search .search-result .list-container ul.list li.row .result-preview .userImage {
  display: block;
  width: 48px;
  height: 48px;
}
.global-search .search-result .list-container ul.list li.row .result-preview.result-preview-task {
  background: #49d181;
}
.global-search .search-result .list-container ul.list li.row .result-preview.result-preview-contact {
  background: #24bcf4;
}
.global-search .search-result .list-container ul.list li.row .result-preview.result-preview-link {
  background: #d52e2e;
}
.global-search .search-result .list-container ul.list li.row .result-preview.result-preview-event {
  background: #8a61b1;
}
.global-search .search-result .list-container ul.list li.row .result-preview.result-preview-note {
  background: #1bc8b2;
}
.global-search .search-result .list-container ul.list li.row .result-preview.result-preview-document {
  background: #bc62be;
}
.global-search .search-result .list-container ul.list li.row a {
  color: inherit;
  display: block;
}
.global-search .search-result .list-container ul.list li.row div.body {
  margin: 0 0 0 58px;
  font-size: 13px;
}
.global-search .search-result .list-container ul.list li.row .result-date {
  font-size: 10px;
}
.global-search .no-result {
  display: none;
  color: #d1d1d1;
}
.outline-iframe-body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px;
  overflow: hidden;
}
.outline-iframe-body .main-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
}
@media print {
  header:after {
    content: "www.share.to";
  }
  #sidebar {
    display: none;
  }
  .navbar {
    display: none;
  }
  .info-bar {
    display: none;
  }
  .filters-container {
    display: none;
  }
  .load-more {
    display: none;
  }
  .app-wrap {
    position: static !important;
    margin-top: 20px;
  }
  body.info-bar-fix #primary {
    margin: 0px !important;
    padding: 0px !important;
  }
  .list-container {
    border: 2px solid #000;
  }
  .list > li {
    border-bottom: 2px solid #000;
  }
  .row-view-bar {
    display: none;
  }
  .row .row-action-buttons {
    display: none;
  }
  .row-favicon {
    display: none;
  }
  .list > li .row-content p {
    color: #000 !important;
  }
  /*contact: box-view */
  .created-box {
    display: none;
  }
  .columned .box {
    border: 1px solid #000000 !important;
  }
  .columned .box p {
    color: #000 !important;
  }
  .box h4 {
    border-bottom: 1px solid #000000 !important;
  }
}
/* iPads (portrait and landscape) ----------- */
body.my-ipad.my-landscape {
  /*     width:1030px;   */
  /***** 3790: All pop-ups doesn't display well *****/
}
body.my-ipad.my-landscape input.span8,
body.my-ipad.my-landscape textarea.span8,
body.my-ipad.my-landscape .uneditable-input.span8 {
  width: 480px;
}
body.my-ipad.my-portrait {
  /*  width:770px;  */
  /***** 3790: All pop-ups doesn't display well *****/
}
body.my-ipad.my-portrait #modal {
  width: 680px !important;
}
body.my-ipad.my-portrait input.span8,
body.my-ipad.my-portrait textarea.span8,
body.my-ipad.my-portrait .uneditable-input.span8 {
  width: 460px;
}
body.my-ipad.my-portrait .app-wrap .create-frame-wrap {
  position: absolute;
  top: 0px;
}
/* iPads (main styles) ----------- */
body.my-ipad {
  /* Hide items */
  /***** 3792-task: Priority and notes have an overlap *****/
  /***** 3790: All pop-ups doesn't display well *****/
  /****** contact ******/
  /****** task & calendar ******/
}
body.my-ipad .page-share .web-collab {
  display: none !important;
}
body.my-ipad .page-share .chatboxoptions .btn-video-call {
  display: none !important;
}
body.my-ipad .btn-video-call {
  display: none !important;
}
body.my-ipad .settings .help-block {
  display: none;
}
body.my-ipad #sidebar .drop-zone .drop-note {
  display: none;
}
body.my-ipad .row-content .row-reminder-date-item span,
body.my-ipad .row-content .row-reminder-time-item span {
  float: none;
}
body.my-ipad .row-content .row-reminder-date-item i,
body.my-ipad .row-content .row-reminder-time-item i {
  margin: 5px 8px 0;
}
body.my-ipad .row-content .row-reminder-date-item,
body.my-ipad .row-content .row-reminder-time-item {
  float: left;
  padding-right: 10px;
  width: auto;
}
body.my-ipad .row > h4,
body.my-ipad .row > div > h4 {
  width: 220px;
}
body.my-ipad input.span8,
body.my-ipad textarea.span8,
body.my-ipad .uneditable-input.span8 {
  width: 430px;
}
body.my-ipad .app-wrap .create-frame-wrap {
  position: absolute;
  top: 0px;
}
body.my-ipad .info-bar {
  position: absolute;
}
body.my-ipad .contact-form [class*="span"] {
  float: none;
  margin-left: 20px;
}
body.my-ipad .contact-form fieldset {
  width: 600px;
}
body.my-ipad .task-form [class*="span"],
body.my-ipad .event-form [class*="span"] {
  float: none;
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  body.my-ipad {
    /* your css rules for ipad portrait */
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
  body.my-ipad {
    /* your css rules for ipad landscape */
  }
}
/*
---------------------------------------------------
Styles for fix migration 2.x to 3.x
---------------------------------------------------
*/
body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  margin-right: 0px !important;
}
.navbar {
  background-color: #333333;
  border-radius: 0;
}
.navbar .nav-apps li {
  float: left;
}
.navbar .nav-apps li a {
  padding: 0;
}
.navbar .avatar > a {
  background: rgba(0, 0, 0, 0);
}
.navbar .avatar > a:hover,
.navbar .avatar > a:focus {
  background: rgba(0, 0, 0, 0);
}
.filters-container .btn-toolbar .btn {
  background-color: #F0F0F0;
  box-shadow: none;
  height: 33px;
  font-size: 11px;
  color: #555;
}
.filters-container .btn-toolbar .btn.active {
  background-color: #DADADA;
}
.filters-container .btn-toolbar .btn.btn-action-contact {
  background-color: #24BCF4;
  color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-contact .caret {
  border-top-color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-task {
  background-color: #53bd2f;
  color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-task .caret {
  border-top-color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-link {
  background-color: #eb6055;
  color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-link .caret {
  border-top-color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-event {
  background-color: #875fad;
  color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-event .caret {
  border-top-color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-note {
  background-color: #1bc8b2;
  color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-note .caret {
  border-top-color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-document {
  background-color: #bc62be ;
  color: #fff;
}
.filters-container .btn-toolbar .btn.btn-action-document .caret {
  border-top-color: #fff;
}
.filters-container .btn-toolbar .btn .fa {
  font-size: 14px;
}
.filters-container .btn-toolbar .btn .caret {
  border-top-color: #888888;
}
.filters-container .btn-toolbar .btn.btn-success {
  color: #ffffff;
  font-weight: bold;
}
.filters-container .btn-toolbar .btn.btn-success .caret {
  border-top-color: #ffffff;
}
.filters-container .btn-toolbar .btn-group[data-toggle="buttons-radio"] .btn {
  font-size: 20px;
  padding-top: 0;
  line-height: 20px;
  padding-bottom: 0;
}
.filters-container .btn-toolbar .dropdown-menu li a {
  padding: 3px 10px;
  font-size: 12px;
}
.filters-container .row {
  margin: 0;
}
.pull-right .dropdown-menu {
  right: 0;
  left: auto;
}
img {
  max-width: 100%;
}
.breadcrumb {
  border-radius: 0;
  background: transparent;
}
.modal {
  position: fixed;
  max-width: 90%;
  top: 50%;
  left: 50%;
  z-index: 1050;
  overflow: auto;
  width: 560px;
  margin: 0 0 0 -280px;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  bottom: auto;
}
.modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%;
}
.modal.fade.in {
  top: 10%;
}
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
.modal-header .close {
  margin-top: 2px;
}
.modal-body {
  overflow-y: auto;
  padding: 15px;
}
.modal-form {
  margin-bottom: 0;
}
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fff;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
textarea {
  outline: none;
}
button,
submit {
  outline: none;
}
.form-validation-error {
  font-size: 12px;
}
.form-validation-error ul {
  margin-left: 20px;
}
.form-group .form-validation-error {
  /*position: absolute;*/
  left: 15px;
  top: -15px;
  padding: 0!important;
  width: 100%;
  font-size: 10px;
  font-weight: bold;
  color: #EA7777;
}
.form-group .input-group .form-validation-error {
  left: 0;
}
/* dark bootstrap dropdown menu */
.dropdown-menu.dropdown-menu-dark {
  background: rgba(50, 50, 50, 0.98);
}
.dropdown-menu.dropdown-menu-dark > li > a {
  color: #f5f5f5;
}
.dropdown-menu.dropdown-menu-dark > li > a:hover {
  background: rgba(0, 0, 0, 0.15);
}
.dropdown-menu.dropdown-menu-dark > li.divider {
  background-color: rgba(0, 0, 0, 0.1);
}
.dropdown-menu.dropdown-menu-dark > li.active > a {
  background: rgba(0, 0, 0, 0.5);
}
/* extra bootstrap btn styles */
.btn.btn-confirm {
  background-color: #5cb85c;
  border-color: #449d44;
  color: #fff;
}
.btn.btn-confirm:hover {
  background-color: #449d44;
}
.btn.btn-shares {
  background-color: #F77D33;
  border-color: #ee6009;
  color: #fff;
}
.btn.btn-shares:hover {
  background-color: #ee6009;
}
.btn.btn-tasks {
  background-color: #49d181;
  border-color: #2fb867;
  color: #fff;
}
.btn.btn-tasks:hover {
  background-color: #2fb867;
}
.btn.btn-contacts {
  background-color: #24bcf4;
  border-color: #0ba2da;
  color: #fff;
}
.btn.btn-contacts:hover {
  background-color: #0ba2da;
}
.btn.btn-links {
  background-color: #d52e2e;
  border-color: #ad2323;
  color: #fff;
}
.btn.btn-links:hover {
  background-color: #ad2323;
}
.btn.btn-calendars {
  background-color: #8a61b1;
  border-color: #704a95;
  color: #fff;
}
.btn.btn-calendars:hover {
  background-color: #704a95;
}
.btn.btn-notes {
  background-color: #1bc8b2;
  border-color: #159b8a;
  color: #fff;
}
.btn.btn-notes:hover {
  background-color: #159b8a;
}
.btn.btn-documents {
  background-color: #bc62be;
  border-color: #a545a8;
  color: #fff;
}
.btn.btn-documents:hover {
  background-color: #a545a8;
}
/* chosen inputs */
.chosen-container-multi .chosen-choices {
  background: #FFF;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  padding: 0 12px;
  border-color: #CCC;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  height: 36px;
}
.chosen-container-multi .chosen-choices li.search-choice {
  margin-top: 8px;
  margin-bottom: 0;
  background: #efefef;
}
.chosen-container-multi.chosen-container-active .chosen-choices {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  border: 1px solid #66afe9;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.chosen-container-single .chosen-single {
  background: #fbfbfb;
  border-color: #ccc;
}
.chosen-container-single .chosen-search input[type=text] {
  border-color: #CCC;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.chosen-container-single .chosen-drop {
  border-color: #bcbcbc;
}
.chosen-container-single.chosen-with-drop .chosen-single {
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #fbfbfb), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#fbfbfb 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#fbfbfb 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#fbfbfb 20%, #ffffff 80%);
  background-image: linear-gradient(#fbfbfb 20%, #ffffff 80%);
}
/* typeahead dropdown extends */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  background: #3c8ec8;
}
.chosen-container-single .chosen-single {
  height: 34px;
  line-height: 32px;
}
.chosen-container-single .chosen-single div b {
  background-position-y: 6px!important;
}
.chosen-container-single .chosen-search input[type=text] {
  height: auto!important;
}
/* bootstrap panel styles */
.panel.panel-light {
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.panel.panel-light .panel-heading {
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 0;
  background: #f5f5f5;
  border-bottom: solid 1px #d2d2d2;
  font-weight: 500!important;
}
/* boostrap nav-tabs */
.nav-tabs {
  padding-left: 0!important;
}
.nav-tabs > li {
  font-size: 13px;
  margin-bottom: -1px;
  margin-right: 15px;
}
.nav-tabs > li > a {
  border: none;
  color: #8c8c8c;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border: none;
  background: none;
  color: #616161;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: none;
  background: none;
  color: #000;
  border-bottom: solid 1px #000;
}
html {
  width: 100%;
  height: 100%;
}
html.hidden {
  display: block!important;
}
.rtl {
  direction: rtl;
}
body {
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.4px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: bold;
}
a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: none !important;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.hide {
  display: none !important;
}
.btn-toolbar {
  margin: 0;
}
.custom-bg.bg-1 {
  background: #cc90e2;
}
.custom-bg.bg-2 {
  background: #80d066;
}
.custom-bg.bg-3 {
  background: #ecd074;
}
.custom-bg.bg-4 {
  background: #6fb1e4;
}
.custom-bg.bg-5 {
  background: #e57979;
}
.custom-bg.bg-6 {
  background: #f98bae;
}
.custom-bg.bg-7 {
  background: #73cdd0;
}
.custom-bg.bg-8 {
  background: #fba76f;
}
body .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  display: block;
}
.col-centered {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.text-clearfix {
  overflow: hidden;
  vertical-align: top;
}
.semi-bold {
  font-weight: 500;
}
ul.dropdown-menu {
  z-index: 1100;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:active > .dropdown-menu,
.dropdown-submenu:focus > .dropdown-menu {
  display: block;
}
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}
.dropdown-submenu.pull-left {
  float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.dropup .dropdown-submenu > .dropdown-menu {
  bottom: 0;
  top: auto;
}
.input-group div.chosen-container-single:first-of-type .chosen-single {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group div.chosen-container-single:last-of-type .chosen-single {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#app-not-found {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #232323;
  font-family: 'Roboto', sans-serif;
}
#app-not-found .wrapper {
  max-width: 700px;
  width: 100%;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#app-not-found .wrapper i.icon {
  font-size: 8em;
  text-align: center;
  color: #FDD835;
}
#app-not-found .wrapper .title {
  text-align: center;
  font-size: 60px;
  color: #FD6E25;
}
#app-not-found .wrapper .desc {
  text-align: center;
  font-size: 20px;
  color: #fff;
}
#app-not-found .wrapper .btn {
  background: none repeat scroll 0 0 #1E89DA;
  border: 0 solid transparent;
  border-radius: 3px;
  box-shadow: 0 0 0;
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  height: 50px;
  margin-bottom: 0px;
  border-bottom: 5px solid #1265A5;
  padding: 12px 20px;
  margin-top: 25px;
}
#app-not-found[data-icon="false"] i.icon {
  display: none;
}
#app-not-found[data-btn="false"] .btn {
  display: none;
}
#app-not-support {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  overflow: hidden;
}
#app-not-support .background {
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  color: #6f6f6f;
}
#app-not-support .background .btn-close {
  font-size: 3em;
  color: #3b6291;
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
}
#app-not-support .background .btn-skip {
  position: absolute;
  bottom: 30px;
  right: 40px;
  cursor: pointer;
}
#app-not-support .background .wraper {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
#app-not-support .background .wraper .cover {
  background-image: url(../../../assets/img/sadman.png);
  display: inline-block;
  width: 186px;
  height: 283px;
}
#app-not-support .background .wraper i.icon {
  color: #3b6291;
  font-size: 8em;
  position: absolute;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: -120px;
  left: 50%;
}
#app-not-support .background .wraper .title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 10px;
  text-transform: uppercase;
  color: #595959;
}
#app-not-support .background .wraper .message {
  color: #9b9b9b;
  text-align: center;
  font-size: 15px;
  letter-spacing: 2px;
  font-family: 'Lato', sans-serif;
  margin-top: 15px;
}
#app-not-support .background .wraper a.btn {
  margin-top: 15px;
  border: solid;
  border-width: 0px;
  border-radius: 0px;
  padding: 10px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
}
#app-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
}
#app-loading .background {
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  color: #6f6f6f;
}
#app-loading .background .wraper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
#app-loading .background .wraper .loader {
  height: 16px;
  margin-bottom: 10px;
}
#app-loading .background .wraper .loader span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  -webkit-animation: 3s infinite linear;
  -moz-animation: 3s infinite linear;
  -o-animation: 3s infinite linear;
}
#app-loading .background .wraper .loader span:nth-child(1) {
  background: #E84C3D;
  -webkit-animation: hiri 1.2s infinite linear;
  -moz-animation: hiri 1.2s infinite linear;
  -o-animation: hiri 1.2s infinite linear;
}
#app-loading .background .wraper .loader span:nth-child(2) {
  background: #F1C40F;
  z-index: 100;
}
#app-loading .background .wraper .loader span:nth-child(3) {
  background: #2FCC71;
  -webkit-animation: hanan 1.2s infinite linear;
  -moz-animation: hanan 1.2s infinite linear;
  -o-animation: hanan 1.2s infinite linear;
}
#app-loading .background .wraper .title {
  text-align: center;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 3px;
  margin-top: 10px;
}
#app-loading .background .wraper .message {
  text-align: center;
  font-size: 15px;
  letter-spacing: 2px;
}
@-webkit-keyframes hanan {
  0% {
    -webkit-transform: translateX(20px);
  }
  50% {
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
    z-index: 200;
  }
}
@-moz-keyframes hanan {
  0% {
    -moz-transform: translateX(20px);
  }
  50% {
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(20px);
    z-index: 200;
  }
}
@-o-keyframes hanan {
  0% {
    -o-transform: translateX(20px);
  }
  50% {
    -o-transform: translateX(-20px);
  }
  100% {
    -o-transform: translateX(20px);
    z-index: 200;
  }
}
@-webkit-keyframes hiri {
  0% {
    -webkit-transform: translateX(-20px);
    z-index: 200;
  }
  50% {
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
  }
}
@-moz-keyframes hiri {
  0% {
    -moz-transform: translateX(-20px);
    z-index: 200;
  }
  50% {
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(-20px);
  }
}
@-o-keyframes hiri {
  0% {
    -o-transform: translateX(-20px);
    z-index: 200;
  }
  50% {
    -o-transform: translateX(20px);
  }
  100% {
    -o-transform: translateX(-20px);
  }
}
#lc_chat_layout.lc-collapsed {
  bottom: -390px !important;
}
.navbar {
  height: 0;
  display: none;
  transition: all 0.3s ease 0s;
  margin-bottom: 0;
  width: 100%;
  margin-left: 250px;
}
.navbar .navbar-inner {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  z-index: 150;
}
.navbar .brand-container {
  float: left;
  width: 60px;
  height: 60px;
  position: relative;
}
.navbar .nav-apps {
  height: 50px;
  padding: 10px;
}
.navbar .nav-apps a {
  background-color: #3E3E3E;
  border-radius: 30px;
  display: block;
  height: 30px;
  line-height: 32px;
  left: 0;
  text-align: center;
  position: absolute;
  top: 0;
  width: 30px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar .nav-apps a i {
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 14px;
}
.navbar .nav-apps li {
  position: relative;
  width: 30px;
  margin: 0 3px;
  height: 30px;
}
.navbar .nav-apps li.active a i {
  color: #fff !important;
}
.navbar .nav-apps li.active.home a {
  background-color: #2FB18A !important;
}
.navbar .nav-apps li.active.shares a {
  background-color: #F58A3D !important;
}
.navbar .nav-apps li.active.tasks a {
  background-color: #53BD2F !important;
}
.navbar .nav-apps li.active.contacts a {
  background-color: #39C9F9 !important;
}
.navbar .nav-apps li.active.links a {
  background-color: #EB6055 !important;
}
.navbar .nav-apps li.active.events a {
  background-color: #875FAD !important;
}
.navbar .nav-apps li.active.notes a {
  background-color: #1bc8b2 !important;
}
.navbar .nav-apps li.active.documents a {
  background-color: #BC62BE !important;
}
.navbar .nav-apps li:hover > span {
  height: 6px;
}
.navbar-active {
  height: 50px;
  border: 0;
  display: block;
}
.color-iblue,
.share-to-color {
  color: #0483cd;
}
.color-iblue a,
.share-to-color a {
  color: #0483cd !important;
  text-decoration: none;
}
.color-iorange,
.shares-color {
  color: #E78A46;
}
.color-iorange a,
.shares-color a {
  color: #E78A46 !important;
  text-decoration: none;
}
.color-iredLight,
.users-color {
  color: #ad6178;
}
.color-iredLight a,
.users-color a {
  color: #ad6178 !important;
  text-decoration: none;
}
.color-igreen,
.tasks-color {
  color: #53bd2f;
}
.color-igreen a,
.tasks-color a {
  color: #53bd2f !important;
  text-decoration: none;
}
.color-iblueLight,
.contacts-color {
  color: #4eaccb;
}
.color-iblueLight a,
.contacts-color a {
  color: #4eaccb !important;
  text-decoration: none;
}
.color-iredDark,
.links-color {
  color: #c6574e;
}
.color-iredDark a,
.links-color a {
  color: #c6574e !important;
  text-decoration: none;
}
.color-icyan,
.folders-color {
  color: #6FB6CD;
}
.color-icyan a,
.folders-color a {
  color: #6FB6CD !important;
  text-decoration: none;
}
.color-iviolet,
.events-color {
  color: #875fad;
}
.color-iviolet a,
.events-color a {
  color: #875fad !important;
  text-decoration: none;
}
.color-iyellow,
.notes-color {
  color: #1bc8b2;
}
.color-iyellow a,
.notes-color a {
  color: #1bc8b2 !important;
  text-decoration: none;
}
.color-ibluepure,
.mails-color {
  color: #2c9cfa;
}
.color-ibluepure a,
.mails-color a {
  color: #2c9cfa !important;
  text-decoration: none;
}
.color-iblueDark,
.reminders-color {
  color: #0090e4;
}
.color-iblueDark a,
.reminders-color a {
  color: #0090e4 !important;
  text-decoration: none;
}
.color-ivioletLight,
.documents-color {
  color: #bc62be;
}
.color-ivioletLight a,
.documents-color a {
  color: #bc62be !important;
  text-decoration: none;
}
.app-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #232323;
}
.app-wrap .app-sidebar {
  z-index: 30;
  height: 100%;
  width: 275px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.prospect-view .app-wrap .app-sidebar {
  display: none;
}
.app-wrap .app-conference {
  z-index: 22;
  width: 55%;
  position: absolute;
  top: 0;
  left: -55%;
  bottom: 0;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
}
.app-wrap .app-center {
  z-index: 20;
  overflow: hidden;
  padding: 0px;
  width: calc(100% - 275px);
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 275px;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.app-wrap .app-center #main-view {
  overflow: hidden;
  padding: 0px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.app-wrap .app-center #main-view > div {
  height: 100%;
  background: #fff;
}
.app-wrap .app-center #main-view .join-conference {
  width: 100%;
  padding: 70px;
  text-align: center;
  background-image: url(../../../assets/img/join-conf-bg.png);
  background-size: cover;
}
.app-wrap .app-center #main-view .join-conference img.shareto-logo {
  max-width: 60px;
}
.app-wrap .app-center #main-view .join-conference .title {
  margin-bottom: 20px;
  font-family: lato;
  line-height: 1.7;
  color: #F79B18;
  font-weight: 400;
}
.app-wrap .app-center #main-view .join-conference .description {
  margin-bottom: 30px;
  font-family: lato;
  font-size: 16px;
  color: #FFF;
  line-height: 1.8;
}
.app-wrap .app-center #main-view .join-conference ul {
  list-style: circle;
  margin: 0 auto;
  padding: 0;
  padding-left: 20px;
  max-width: 410px;
  width: 100%;
}
.app-wrap .app-center #main-view .join-conference ul li {
  margin-bottom: 24px;
  text-align: left;
  font-family: lato;
  font-style: italic;
  font-size: 15px;
  color: #E6E6E6;
}
.app-wrap .app-center #main-view .join-conference .btn-register {
  background: none repeat scroll 0 0 #1E89DA;
  border: 0 solid transparent;
  border-radius: 3px;
  box-shadow: 0 0 0;
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  height: 50px;
  border-bottom: 5px solid #1265A5;
  padding: 13px 40px;
  margin-top: 20px;
}
.app-wrap .app-center .main {
  height: 100%;
  overflow: auto;
}
.app-wrap .app-center .detail-sidebar {
  width: 0;
  border-left: 1px solid #e1e1e1;
  float: right;
  height: 100%;
  position: relative;
}
.app-wrap .app-center .scrollable {
  overflow: auto;
  height: 100%;
  width: 100%;
  position: relative;
}
.app-wrap .app-center .list-main.list-fixed-top {
  position: absolute;
  top: 106px;
  bottom: 0;
  left: 20px;
  right: 20px;
  overflow: auto;
}
.app-wrap .global-notification {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 38px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #FFF;
  background: #7596ab;
}
.app-wrap .global-notification .global-notification-message {
  display: inline-block;
}
.app-wrap .global-notification .global-notification-message .fa,
.app-wrap .global-notification .global-notification-message .icon {
  font-size: 17px;
}
.app-wrap .global-notification .global-notification-buttons {
  display: inline-block;
  margin-left: 15px;
}
.app-wrap .global-notification .global-notification-buttons .btn:not(.btn-danger):not(.btn-warning):not(.btn-default) {
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  font-weight: bold;
  border-color: rgba(0, 0, 0, 0.08);
}
.app-wrap .global-notification .global-notification-buttons .btn:not(.btn-danger):not(.btn-warning):not(.btn-default):hover {
  background: rgba(0, 0, 0, 0.1);
}
.app-wrap .global-notification .global-notification-buttons .btn {
  padding: 3px 12px;
}
.app-wrap .global-notification .close-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  cursor: pointer;
  font-size: 13px;
}
.app-wrap .global-notification.type-alert {
  background: #f0ad4e;
  color: #fff;
}
.app-wrap .global-notification.type-danger {
  background: #f04e4e;
  color: #fff;
}
.app-wrap[data-sidebar="false"] .app-sidebar {
  width: 50px;
}
.app-wrap[data-sidebar="false"] .app-sidebar #sidebar-right {
  display: none;
}
.app-wrap[data-sidebar="false"] .app-center {
  width: calc(100% - 50px);
  left: 50px;
}
.app-wrap.close-sidebar .app-sidebar {
  left: -275px;
}
.app-wrap.close-sidebar .app-center {
  left: 0;
  width: 100%;
}
.app-wrap.show-conf .app-sidebar {
  left: -275px;
}
.app-wrap.show-conf .app-conference {
  left: 0;
}
.app-wrap.show-conf .app-center {
  left: 55%!important;
  width: 45%!important;
}
.app-wrap.show-conf.conf-chat-active .app-conference {
  left: -55%;
}
.app-wrap.show-conf.conf-chat-active .app-center {
  left: 0!important;
  width: 100%!important;
}
.app-wrap.show-conf.conf-compress-mode .app-conference {
  left: auto;
  right: 0;
  width: 250px;
}
.app-wrap.show-conf.conf-compress-mode .app-center {
  width: calc(100% - 275px - 250px) !important;
  left: 275px!important;
}
.app-wrap.show-conf.conf-compress-mode .app-sidebar {
  left: 0;
}
.app-wrap.show-conf.conf-compress-mode[data-sidebar="false"] .app-center {
  width: calc(100% - 50px - 250px) !important;
  left: 50px!important;
}
.app-wrap.show-conf:not(.conf-compress-mode) .app-center #main-view:before {
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -35px;
  content: "\e8d0";
  text-align: center;
  font-family: Linearicons;
  line-height: 70px;
  color: #e6e6e6;
  font-size: 70px;
  z-index: -1;
  animation: fa-spin 2s infinite linear;
  -webkit-animation: fa-spin 2s infinite linear;
}
.app-wrap.no-sidebar .app-center,
.anonymous-user .app-wrap .app-center,
.prospect-view .app-wrap .app-center {
  width: 100%;
  left: 0;
}
.app-wrap.no-sidebar .app-center,
.anonymous-user .app-wrap .app-center {
  -webkit-transition: initial;
  transition: initial;
}
.app-wrap.global-notification-enabled {
  padding-top: 40px;
}
.app-wrap.global-notification-enabled .app-sidebar,
.app-wrap.global-notification-enabled .app-conference,
.app-wrap.global-notification-enabled .app-center {
  top: 40px;
}
#add-extension-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  color: #e0e0e0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: 100%;
  height: 100%;
}
#add-extension-overlay p {
  text-align: center;
  max-width: 70%;
  margin: 25px auto 0;
  font-style: italic;
  font-size: 22px;
}
#add-extension-overlay .vertical-middle {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
}
.info-bar {
  position: fixed;
  width: 200px;
  background: #f7f7f7;
  border-left: 1px solid #e1e1e1;
  z-index: 111;
}
.info-bar .head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.info-bar .head a {
  line-height: 30px;
  padding: 0 10px;
  background: #444;
  color: white;
  display: block;
}
.calendar-holder {
  position: absolute;
  bottom: 10px;
  right: 0;
  top: 10px;
  left: 210px;
}
.calendar-holder > div {
  height: 100%;
}
.calendar-holder > div > .calendar-frame {
  height: 100%;
}
.calendar-holder.cal-share {
  padding-left: 0px;
}
.calendar-holder .calendar-frame {
  padding: 0 15px;
}
#sidebarAlt {
  background: none repeat scroll 0 0 #F7F7F7;
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #DCDCDC;
  bottom: 0;
  left: 0px;
  padding: 0 10px;
  position: absolute;
  top: 0px;
  width: 210px;
  z-index: 110;
}
#sidebarAlt .row-content {
  padding-top: 0px;
}
#sidebarAlt .calendar-side-title {
  padding: 3px 10px;
}
#sidebarAlt .calendar-all-events {
  display: block;
  background: white;
  line-height: 30px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  color: black;
}
#sidebarAlt .calendar-all-events .row-view-bar {
  background-image: -webkit-linear-gradient(top, #8FCBDE 0%, #6FB6CD 100%);
  background-image: -o-linear-gradient(top, #8FCBDE 0%, #6FB6CD 100%);
  background-image: linear-gradient(to bottom, #8FCBDE 0%, #6FB6CD 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8fcbde', endColorstr='#ff6fb6cd', GradientType=0);
}
#sidebarAlt .calendar-list {
  clear: both;
}
#sidebarAlt .calendar-list .events-favicon {
  margin-left: 0;
}
#sidebarAlt ul.list li.row {
  background-color: #FFF;
}
#sidebarAlt ul.list li.row:hover {
  background-color: #fbfbfb;
}
#sidebarAlt .events-favicon {
  margin-right: 7px;
  margin-top: 7px;
}
#sidebarAlt .row-favicon {
  margin-right: 7px;
  margin-top: 7px;
}
#sidebarAlt .row-view-bar {
  float: left;
  height: 30px;
  width: 10px;
  margin-right: 10px;
  margin-bottom: -1px;
}
#primary .profile-info .form-horizontal,
#primary .profile-password .form-horizontal,
#primary .company-info .form-horizontal,
#primary .delete-account .form-horizontal {
  width: 700px;
  margin: auto;
}
#primary .profile-info .form-horizontal .form-group,
#primary .profile-password .form-horizontal .form-group,
#primary .company-info .form-horizontal .form-group,
#primary .delete-account .form-horizontal .form-group {
  margin-right: 0;
  margin-left: 0;
}
#primary .profile-info legend,
#primary .profile-password legend,
#primary .company-info legend,
#primary .delete-account legend {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
}
#primary .profile-info.delete-account .form-horizontal,
#primary .profile-password.delete-account .form-horizontal,
#primary .company-info.delete-account .form-horizontal,
#primary .delete-account.delete-account .form-horizontal {
  width: 500px;
}
#primary .profile-sessions fieldset {
  margin: 0 auto;
  width: 500px;
}
#primary .profile-sessions fieldset .list-group-item .device-icon {
  font-size: 35px;
  margin-right: 10px;
  margin-top: 2px;
}
#primary .white-wrapper {
  border: 1px solid #eeeeee;
  background-color: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
#primary .container-fluid.page-share {
  padding: 0;
}
#primary .page {
  position: relative;
  height: 100%;
}
#primary .page.page-contacts {
  height: 100%;
}
#primary .page.page-tasks {
  height: 100%;
}
#primary .page.page-links {
  height: 100%;
}
#primary .page.page-notes {
  height: 100%;
}
#primary .page.page-documents {
  height: 100%;
}
#primary .page.page-calendar {
  height: calc(100% - 60px);
  overflow-y: auto;
}
#primary .page.page-share {
  height: 100%;
}
#primary .list-holder {
  height: 100%;
}
#primary .list-holder > div {
  height: 100%;
}
#primary .list-holder .list-content {
  overflow-y: auto;
  height: calc(100% - 109px);
}
#primary .list-holder .list-content .list-main .list-container {
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
}
#primary .page-header {
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom-color: #e2e2e2;
  border-bottom: 0;
  text-shadow: 1px 1px 0 #fff;
}
#primary .page-header h1,
#primary .page-header h2 {
  font-style: italic;
  font-weight: normal;
  text-align: center;
}
#primary .page-header h1 span,
#primary .page-header h2 span {
  background: #fff;
  padding: 0 10px;
}
#primary .page-header hr {
  margin-top: -13px;
}
#primary .page-header.left-aligned h1,
#primary .page-header.left-aligned h2 {
  text-align: left;
}
#primary .page-header.left-aligned h1 span,
#primary .page-header.left-aligned h2 span {
  padding-left: 0;
}
#primary .page-header.white-bg h1 span,
#primary .page-header.white-bg h2 span {
  background: #fff;
}
#primary .page-header.normal-hr hr {
  margin-top: 5px;
}
#primary .single-page {
  overflow-y: auto;
  height: 100%;
}
#primary .single-page .content {
  margin: 50px auto;
  width: 700px;
}
#primary .single-page .profile-task-show .source-icon {
  position: absolute;
  top: 10px;
  font-size: 20px;
  right: 10px;
  color: #888;
}
#primary .single-page .profile-task-show .profile-item-container {
  padding: 20px;
}
#primary .single-page .profile-task-show .profile-item-container .contact-avatar-container {
  width: 160px;
  margin: 0 auto;
}
#primary .single-page .profile-task-show .profile-item-container .contact-avatar-container .contact-image-dropzone > a > img {
  border-radius: 10px;
}
#primary .single-page .profile-task-show .profile-item-container .contact-avatar-container .default-image {
  width: 100%;
  height: 100px;
  border: solid 1px #ccc;
  text-align: center;
  margin: 0px;
  padding: 0px;
  padding-top: 20px;
}
#primary .single-page .profile-task-show .download-btn-holder {
  text-align: center;
  margin-bottom: 10px;
}
#primary .single-page .profile-task-show .profile-task-detail-2 {
  padding: 20px;
  background-color: #f3f3f3;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .webpage .controls {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .item-key {
  height: 30px;
  line-height: 30px;
  width: 50%;
  float: left;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .item-key > label {
  font-size: 11px;
  color: #777;
  width: 110px;
  float: left;
  margin-right: 10px;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .item-key > div {
  float: left;
  font-size: 12px;
  color: #999;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .note-key {
  line-height: 20px;
  width: 100%;
  clear: both;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .note-key .item-key-1 {
  font-size: 12px;
  color: #999;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .note-key .item-key-1 > label {
  font-size: 11px;
  color: #777;
  width: 100px;
  float: left;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .note-key .item-key-1 > div {
  margin-left: 115px;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .webpage {
  width: 100%;
  height: auto;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .webpage,
#primary .single-page .profile-task-show .profile-task-detail-2 .email,
#primary .single-page .profile-task-show .profile-task-detail-2 .email2,
#primary .single-page .profile-task-show .profile-task-detail-2 .email3 {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  height: auto;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .webpage > div,
#primary .single-page .profile-task-show .profile-task-detail-2 .email > div,
#primary .single-page .profile-task-show .profile-task-detail-2 .email2 > div,
#primary .single-page .profile-task-show .profile-task-detail-2 .email3 > div {
  width: 500px;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .workAddress {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  height: auto;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .workAddress > div {
  width: 500px;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .homeAddress {
  width: 100%;
  height: auto;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .homeAddress > div {
  width: 500px;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .download-btn-holder {
  text-align: center;
}
#primary .single-page .profile-task-show .profile-task-detail-2 .download-btn-holder .btn {
  display: inline-block;
}
#primary .single-page .profile-task-show .wall-content .comments-block {
  margin: 0;
  padding: 20px;
}
#primary .single-page .profile-task-show .wall-content .comments-block .comment-form {
  margin-bottom: 0px;
}
#primary .single-page .profile-task-show .wall-content .comments-block .comment-form .user-comment {
  background-color: #fff;
}
#primary .single-page .profile-task-show .wall-content .comments-block .comments-list {
  padding-left: 8px;
}
#primary .single-page .profile-task-show .wall-content .comments-block .comments-list .comment-body > p {
  float: left;
}
#primary .single-page .profile-task-show .wall-content .comments-block .comments-list .comment-body > div.comment-meta {
  overflow: hidden;
  line-height: 14px;
  padding: 3px;
  display: inline;
  color: #777;
  margin: 0;
}
#primary .single-page .profile-task-show .wall-content .comments-block .comments-list > li {
  min-height: 25px;
}
#primary .single-page .profile-task-show .profile-action-button {
  overflow: hidden;
  padding: 10px 20px;
  background-color: #e8e8e8;
}
#primary .single-page .profile-task-show .profile-action-button .creation-date-item,
#primary .single-page .profile-task-show .profile-action-button .creator-user-link {
  font-size: 12px;
  color: #888;
  float: left;
  margin-right: 10px;
}
#primary .single-page .profile-task-show .profile-action-button ul li {
  width: 30px;
  text-align: center;
}
#primary .single-page .profile-task-show .profile-action-button ul li a {
  color: #555;
}
.main-box {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #fff;
  border: 1px solid #f1f1f1;
  padding: 15px 20px;
}
.main-box .actions {
  margin: 5px 0 10px;
  padding: 10px 0;
  border-top: 1px solid #eeeeee;
}
.main-box .actions:before,
.main-box .actions:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.main-box .actions:after {
  clear: both;
}
.main-box:before,
.main-box:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.main-box:after {
  clear: both;
}
.main-box form,
.main-box input {
  margin-bottom: 0;
}
.main-box .chzn-container {
  position: relative;
  top: 2px;
}
h2.title {
  display: none;
  background-image: -webkit-linear-gradient(top, #555555 0%, #000 100%);
  background-image: -o-linear-gradient(top, #555555 0%, #000 100%);
  background-image: linear-gradient(to bottom, #555555 0%, #000 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff000000', GradientType=0);
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  height: 50px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 250;
}
.filters-container {
  padding: 8px 20px;
  position: relative;
  border-right: 0;
  border-left: 0;
}
.filters-container:before,
.filters-container:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.filters-container:after {
  clear: both;
}
.breadcrumb-container {
  position: relative;
  background-color: #333;
  height: 60px;
}
.breadcrumb-container .alert {
  margin: 0;
  padding: 3px 10px;
  margin-top: 7px;
}
.breadcrumb-container span.fa-folder {
  position: absolute;
  left: 30px;
  color: #999;
  top: 9px;
  font-size: 12px;
}
.breadcrumb-container ul {
  margin: 0;
}
.breadcrumb-container ul.breadcrumb {
  padding: 0px 20px;
  float: left;
  height: 60px;
  overflow-y: hidden;
  font-size: 16px;
  line-height: 60px;
  width: auto;
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  right: 175px;
}
.breadcrumb-container ul.breadcrumb li {
  line-height: 60px;
  color: #7D7D7D;
  max-width: 220px;
}
.breadcrumb-container ul.breadcrumb li a {
  color: #7D7D7D;
}
.breadcrumb-container .creat-new {
  margin: 13px 20px 13px 10px;
}
.anonymous-user .breadcrumb-container .creat-new {
  display: none;
}
.modal .breadcrumb-container {
  display: none!important;
}
ul.breadcrumb li.ellipsis {
  display: inline-block;
  width: auto;
}
.nav-tabs {
  background-color: #f7f7f7;
  padding-top: 15px;
  padding-left: 65px;
}
.nav-tabs > li > a {
  padding-top: 6px;
  padding-bottom: 6px;
}
.list > li {
  margin: 0;
}
.list > li .share-row-description {
  color: #555555;
  float: left;
  font-size: 12px;
  margin: 15px 20px 0 15px;
  overflow: hidden;
  width: 280px;
}
.list > li .row-content {
  height: 24px;
  line-height: 24px;
}
.list > li .row-content .share-box-properties {
  height: 52px;
  width: 250px;
}
.list > li .row-content .share-box-properties ul {
  height: 52px;
  width: 250px;
  padding: 0;
  margin: 0;
}
.list > li .row-content .share-box-properties ul li {
  list-style: none;
  float: left;
  width: 36px;
  display: block;
  height: 52px;
}
.list > li .row-content .share-box-properties ul li .top {
  width: 36px;
  height: 22px;
  display: block;
  float: left;
  text-align: center;
}
.list > li .row-content .share-box-properties ul li .top i {
  display: block;
  width: 17px;
  height: 16px;
  margin-left: 9px;
  margin-top: 3px;
}
.list > li .row-content .share-box-properties ul li .bottom {
  width: 36px;
  height: 24px;
  padding-top: 6px;
  text-align: center;
  display: block;
  float: left;
}
.list > li .row-content .share-box-properties ul li:last-child,
.list > li .row-content .share-box-properties ul li:first-child {
  width: 35px;
}
.list > li .row-content .share-box-properties ul li:last-child span,
.list > li .row-content .share-box-properties ul li:first-child span {
  width: 35px;
}
.progress {
  margin: 0;
  height: 20px;
}
.progress .bar {
  height: 20px;
}
.row-favicon {
  display: block;
  width: 16px;
  height: 17px;
  float: right;
  margin-top: 8px;
  margin-left: 20px;
  margin-right: 10px;
  margin-top: 9px;
}
.row-favicon.shares-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -48px -195px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.users-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -64px -195px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.tasks-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -32px -140px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.contacts-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -48px -140px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.links-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -64px -140px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.events-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -80px -140px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.notes-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -96px -140px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.reminders-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -112px -140px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row-favicon.documents-favicon {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -128px -140px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
h4 > .checkbox-container {
  -moz-user-select: none;
  cursor: pointer;
  height: 16px;
  width: 16px;
  float: left;
}
h4 > .checkbox-container span {
  display: block;
  border: 1px solid #C6C6C6;
  background: #FFF;
}
h4 > .checkbox-container .checkbox-item {
  padding: 0 !important;
  background: transparent url('../../../assets/img/sprite.png') no-repeat -13px -301px;
  width: 13px;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
}
h4 > .checkbox-container .selected {
  background: transparent url('../../../assets/img/sprite.png') no-repeat 0px -301px;
  width: 13px;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
}
form {
  margin-bottom: 0 !important;
}
form .hint {
  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;
  background-color: #3c763d;
}
form .hint:hover {
  background-color: #2b542c;
}
form .form-actions {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 0px;
}
form .form-actions .save-btn {
  background: #87b763;
  border-color: #709456;
}
form .form-actions .save-btn:hover {
  background-color: #729e52;
  border-color: #618448;
}
form .form-actions > button,
form .form-actions > .btn {
  float: right;
  margin-left: 10px;
}
form .control-checkbox-fix {
  padding-top: 7px;
}
form .form-control {
  font-size: 12px !important;
}
.list {
  padding: 0;
  overflow: visible;
  margin: 0;
}
.list.list-view > li {
  padding-bottom: 0px;
}
.list.list-view > li .btn-toolbar {
  margin-top: 15px;
}
.list.list-view > li .progress {
  margin-top: 15px;
}
.list.list-view > li .row-content {
  margin-top: 10px;
  margin-bottom: 10px;
}
.list.list-view > li .row-view-bar {
  float: left;
  height: 50px;
  width: 10px;
  margin-right: 10px;
  margin-bottom: -2px;
}
.list.list-view .row::after {
  content: "";
  height: 1px;
  background-color: #e5e5e5;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}
.list.list-view .row:last-child::after {
  height: 0px;
}
.list.list-view .row .box-action-buttons {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.anonymous-user .list.list-view .row .box-action-buttons {
  visibility: hidden;
}
.list.list-view .row.selected {
  background-color: #FFF6ED!important;
  border-radius: 25px 0 0 25px;
}
.list.list-view .row.selected .box-action-buttons {
  opacity: 100;
  filter: alpha(opacity=10000);
}
.list.list-view .row.selected .box-action-buttons ul li.picker-select-unselect .picker-select {
  display: none;
}
.list.list-view .row.selected .box-action-buttons ul li.picker-select-unselect .picker-unselect {
  display: block;
}
.list.list-view .row:hover .box-action-buttons {
  opacity: 100;
  filter: alpha(opacity=10000);
}
.list > li {
  list-style: none;
  margin-left: 0;
}
.list > li:before,
.list > li:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.list > li:after {
  clear: both;
}
.list > li.ui-draggable-dragging {
  z-index: 300000;
  opacity: 80;
  filter: alpha(opacity=8000);
}
.list .row-counters {
  float: left;
  margin-right: 10px;
}
.list .row-counters .counter {
  float: left;
  padding: 6px 0;
  width: 60px;
  border: 1px solid #eee;
  background: #f7f7f7;
  color: #555555;
  margin-right: 10px;
  text-align: center;
  text-shadow: 0 1px 1px #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.list .row-counters .counter.single {
  width: 50px;
  height: 50px;
  line-height: 52px;
  padding: 0;
}
.list .row-counters .counter.single .count {
  display: inline;
}
.list .row-counters .counter .count {
  display: block;
}
.list .row-counters .counter p {
  margin: 0;
  font-weight: normal;
  font-size: 12px;
}
.list .row-counters .counter.error {
  color: #e84b3e;
}
.list .row-counters .counter.success {
  color: #2f6b1b;
}
.list .row-content {
  position: relative;
  overflow: hidden;
}
.list .row-content .author {
  position: absolute;
  right: 0;
  bottom: 0;
}
.profile .post-meta-social {
  margin-left: 20px;
  margin-top: 40px;
  padding-left: 0;
  width: 100px;
}
.profile .post-meta-social div {
  margin: 3px 0px;
}
.profile .profile-action-button > ul {
  width: 150px;
  height: 35px;
  margin: 0;
  padding: 0;
}
.profile .profile-action-button > ul .checkbox-container {
  -moz-user-select: none;
  cursor: pointer;
  height: 16px;
  width: 16px;
  float: right;
}
.profile .profile-action-button > ul .checkbox-container span {
  display: block;
  border: 1px solid #C6C6C6;
}
.profile .profile-action-button > ul .checkbox-container .checkbox-item {
  height: 14px;
  padding: 0 !important;
  width: 14px;
}
.profile .profile-action-button > ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 45px;
  height: 50px;
}
.profile .profile-action-button > ul li a {
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  float: left;
}
.profile .profile-action-button > ul li a i {
  display: block;
  width: 23px;
  height: 23px;
  margin: 13px 13px;
  background-position: -48px -347px;
}
.profile .profile-action-button > ul li a i.item-action-add-task {
  background: transparent url('../../../assets/img/sprite.png') no-repeat 0px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-add-contact {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -23px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-add-link {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -46px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-add-event {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -69px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-add-note {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -92px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-add-reminder {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -115px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-add-document {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -138px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-edit {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -161px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-delete {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -184px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i.item-action-add-folder {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -207px -379px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-task {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -149px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-contact {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -172px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-link {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -195px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-event {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -218px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-note {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -241px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-reminder {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -264px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-document {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -287px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-edit {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -310px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-delete {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -333px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile .profile-action-button > ul li a i:hover.item-action-add-folder {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -356px -23px;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
}
.profile label.task-control-label {
  float: left;
  margin-right: 40px;
  text-align: right;
  width: 90px;
}
.profile label.task-control-label-mini {
  float: left;
  text-align: right;
  width: 70px;
  padding-right: 10px;
}
.profile .comments-list {
  padding: 0;
  margin: 0;
  width: 510px;
}
.profile .comments-list li {
  list-style: none;
}
.profile .comments-list li .comment-image {
  float: left;
  width: 30px;
}
.profile .comments-list li .comment-image img {
  width: 30px;
}
.profile .comments-list li .comment-body {
  margin-left: 40px;
  font-size: 12px;
}
.profile .comments-list li .comment-body p {
  color: #888;
  font-weight: bold;
  font-size: 11px;
  margin: 0;
}
.profile .comments-list li .comment-body .comment-meta {
  font-size: 11px;
}
.profile .comment-body {
  color: #666666;
  margin-left: 20px;
}
.profile .wall.list {
  margin-left: 20px;
  margin-right: 20px;
}
.profile .contact-avatar {
  float: left;
  width: 250px;
}
.profile .contact-avatar-container {
  float: left;
  width: 250px;
  position: relative;
  margin: 20px 20px 10px 10px;
  border-bottom: 4px solid #39c9f9;
}
.profile .link-screenshot {
  border: 1px solid #EAEAEA;
  float: left;
  margin: 20px;
  min-height: 330px;
  width: 510px;
}
.profile .link-image-container {
  width: 560px;
  position: relative;
  min-height: 352px;
}
.profile .link-image-container:hover .link-visit-text {
  opacity: 1;
}
.profile .link-visit-text {
  float: left;
  margin-left: 20px;
  margin-right: 20px;
  width: 502px;
  position: absolute;
  bottom: 0;
  background-color: #c6574e;
  color: #fff;
  line-height: 42px;
  font-size: 13px;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding-left: 10px;
}
.profile .contact-info {
  background: none repeat scroll 0 0 #fbfbfb;
  border-bottom: 4px solid #C1C1C1;
  margin-left: 20px;
  min-height: 231px;
  margin-right: 20px;
  margin-top: 20px;
  padding-top: 20px;
  overflow: hidden;
}
.profile .wall-content {
  float: left;
  width: 100%;
}
.profile .wall-content > ul {
  margin-left: 20px;
}
.profile .wall-content textarea#comments {
  width: 457px !important;
  border-radius: 0px !important;
  margin-bottom: 20px;
}
.profile .wall-content .post-top-content {
  background: #000000;
  opacity: 0.8;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  height: 20px;
}
.profile .wall-content .activity {
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
}
.profile .wall-content .post-content-name {
  float: left;
}
.profile .wall-content .post-content-date {
  float: right;
}
.profile .wall-content .post-comment-text {
  font-style: normal;
  font-size: 12px;
  margin-left: 10px;
  margin-top: 5px;
}
.profile .form-group {
  clear: left;
}
.profile-item-title {
  display: block;
  font-size: 20px;
}
.profile-item-desc {
  color: #6a6a6a;
  font-size: 14px;
  padding-top: 10px;
}
.profile-contact-title {
  display: block;
  float: left;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  padding: 0px 10px;
  bottom: 0px;
  color: #333;
}
.profile-contact-desc {
  font-size: 13px;
  margin-bottom: 20px;
  float: left;
  margin-left: 20px;
  color: #6a6a6a;
  width: 250px;
  text-align: left;
}
.profile-item-container.folder-container {
  overflow: hidden;
}
.profile-item-container.reminder-container {
  overflow: hidden;
}
.profile-item-container.document-container {
  overflow: hidden;
  text-align: center;
}
.profile-item-container.document-container i.fa {
  font-size: 7em;
}
.profile-item-container.document-container .fail-message {
  display: block;
  color: gray;
  margin-bottom: 20px;
  margin-top: 5px;
}
.profile-item-container.document-container > div {
  margin-bottom: 15px;
  font-size: 16px;
}
.profile-item-container.document-container > img {
  border-radius: 10px;
}
.profile-item-container.contact-container {
  overflow: hidden;
  padding: 0;
  margin-left: 0px;
  padding-bottom: 50px;
  margin-top: 0px;
  border-bottom: none;
}
.profile-item-container.link-container {
  overflow: hidden;
}
.profile-item-container.link-container .link-image-container {
  text-align: center;
}
.profile-item-container.link-container .link-image-container .link-screenshot {
  width: 250px;
  border-radius: 10px;
}
.profile-item-container.link-container .link-image-container .link-visit-text {
  line-height: 50px;
  font-size: 16px;
}
.profile-item-container.note-container {
  overflow: hidden;
}
.profile-top-bar {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: -1px;
  margin-left: -2px;
  padding-left: 2px;
}
.profile-task-detail-3 {
  background: none repeat scroll 0 0 #FBFBFB;
  float: left;
  width: 20px;
  min-height: 116px;
}
.profile-task-detail-2 {
  overflow: hidden;
}
.profile-task-detail {
  float: right;
  width: 100%;
  background: #fbfbfb;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #EFEFEF;
}
.profile-inner-item {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.profile-task-show {
  float: right;
  width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  border: 1px solid #EFEFEF;
  position: relative;
}
.history-content {
  font-size: 12px;
  padding: 20px;
}
.contact-title {
  margin-top: 55px;
  font-size: 26px;
}
.link-title {
  font-size: 16px;
  line-height: 20px;
}
.link-title > img {
  margin-right: 5px;
}
.link-desc {
  font-size: 12px;
}
.task-detail-item {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}
.task-detail-item label {
  margin-bottom: 2px;
}
.task-detail-item .progress {
  line-height: 20px;
}
.modal .task-detail-item .progress {
  width: 168px;
}
.task-detail-item .progress .progress-bar {
  min-width: 25px;
}
.task-detail-item.task-assignees,
.task-detail-item.event-attendees {
  float: none!important;
  width: 100%!important;
  clear: both;
}
.task-detail-item.task-assignees .task-controls,
.task-detail-item.event-attendees .task-controls {
  margin-top: 10px;
}
.modal .task-detail-item.task-assignees .task-controls,
.modal .task-detail-item.event-attendees .task-controls {
  margin-top: 0;
}
.task-detail-item.task-assignees .task-assignee,
.task-detail-item.event-attendees .task-assignee {
  display: inline-block;
  height: 26px;
  margin: 0 10px 10px;
  padding: 0 10px;
  color: #6b6b6b;
  background: #e8e8e8;
  font-size: 12px;
  line-height: 26px;
}
.task-detail-item.task-assignees .task-assignee .userImage,
.task-detail-item.event-attendees .task-assignee .userImage {
  margin-left: -13px;
  display: block;
  float: left;
  margin-right: 5px;
}
.task-detail-item.task-assignees .task-assignee .userImage img,
.task-detail-item.event-attendees .task-assignee .userImage img {
  display: block;
}
.task-detail-item.task-assignees .task-assignee.task-assignee-status-accepted .fa:before,
.task-detail-item.event-attendees .task-assignee.task-assignee-status-accepted .fa:before {
  content: "\f087";
}
.task-detail-item.task-assignees .task-assignee.task-assignee-status-declined,
.task-detail-item.event-attendees .task-assignee.task-assignee-status-declined {
  opacity: 0.7;
}
.task-detail-item.task-assignees .task-assignee.task-assignee-status-declined .fa:before,
.task-detail-item.event-attendees .task-assignee.task-assignee-status-declined .fa:before {
  content: "\f088";
}
.task-detail-item.task-assignees .task-assignee.task-assignee-role-organizer .fa:before,
.task-detail-item.event-attendees .task-assignee.task-assignee-role-organizer .fa:before {
  content: "\f015";
}
.profile-action-button ul {
  float: right;
  list-style: none;
}
.anonymous-user .profile-action-button ul {
  display: none;
}
.profile-action-button ul li {
  float: right;
}
.label-wall {
  background: none repeat scroll 0 0 #FBFBFB;
  border-bottom: 5px solid #3a87ad;
  float: right;
  margin-right: 20px;
  margin-left: 10px;
  margin-top: 20px;
  min-height: 156px;
  width: 250px;
}
.label-wall .label-holder {
  padding: 0px 15px;
  color: #1e89da;
  overflow-y: auto;
  list-style: none;
  margin: 0px;
  max-height: 88px;
}
.label-wall .label-holder .label-item {
  float: left;
  padding: 1px 3px 1px 5px;
  margin: 0px 7px 5px 1px;
  background: #3a87ad;
  color: #FFF;
  font-size: 11px;
  line-height: 15px;
}
/* Feedbacks */
.feedback .list li {
  list-style: none;
}
.feedback .feedback-votes {
  float: left;
  padding: 15px 20px;
  border: 1px solid #EEE;
  background: #F7F7F7;
  font-size: 16px;
  margin-right: 10px;
  font-weight: bold;
}
/* Bookmarks */
.bookmark .list li {
  list-style: none;
}
.bookmark .bookmark-votes {
  float: left;
  padding: 15px 20px;
  border: 1px solid #EEE;
  background: #F7F7F7;
  font-size: 16px;
  margin-right: 10px;
  font-weight: bold;
}
.profile {
  margin-top: 20px;
  margin-left: 0px !important;
  padding-left: 20px;
  padding-right: 20px;
}
.profile .sidebar .box {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #fff;
  border: 1px solid #f1f1f1;
}
.profile .sidebar .box .actions {
  margin: 5px 0 10px;
  padding: 10px 0;
  border-top: 1px solid #eeeeee;
}
.profile .sidebar .box .actions:before,
.profile .sidebar .box .actions:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.profile .sidebar .box .actions:after {
  clear: both;
}
.profile .sidebar .box .actions {
  margin-bottom: 0;
}
.profile .sidebar .box.brief h4,
.profile .sidebar .box.brief .stats,
.profile .sidebar .box.brief p {
  display: none;
}
.profile .content .main-nav-tabs {
  margin-bottom: 0;
}
.profile .content .box {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #fff;
  border: 1px solid #f1f1f1;
}
.profile .content .box .actions {
  margin: 5px 0 10px;
  padding: 10px 0;
  border-top: 1px solid #eeeeee;
}
.profile .content .box .actions:before,
.profile .content .box .actions:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.profile .content .box .actions:after {
  clear: both;
}
.profile .content .box.has-tabs {
  border-top: 0;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.profile .content .page-header {
  margin-bottom: 5px;
}
.profile .new-post textarea {
  width: 99%;
  min-height: 80px;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.profile .new-post .wmd-preview {
  padding: 15px 10px 8px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.profile .new-post .actions {
  padding-top: 0;
  border-top: 0;
}
.profile .wall {
  margin-top: 10px;
}
.profile .wall .activity {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.profile .wall .activity:before,
.profile .wall .activity:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.profile .wall .activity:after {
  clear: both;
}
.profile .wall .activity:last-child {
  border-bottom: 0;
}
.profile .wall .activity .post-image {
  float: left;
}
.profile .wall .activity .post-body {
  overflow: hidden;
  position: relative;
}
.profile .wall .activity .post-body h3 {
  margin-bottom: -3px;
}
.profile .wall .activity .post-body h3 a {
  color: #286090;
}
.profile .wall .activity .post-body .post-meta {
  color: #777777;
  display: block;
  margin-bottom: 10px;
}
.profile .wall .activity .post-body .post-reply {
  border-top: 1px dotted #eeeeee;
  padding-top: 5px;
  margin-top: 10px;
}
.profile .wall .activity .post-body .post-comments {
  border-top: 1px dotted #eeeeee;
  padding-top: 5px;
  margin-top: 10px;
}
.profile .wall .activity .post-body .post-comments .comments-list {
  list-style: none;
  margin: 0;
}
.profile .wall .activity .post-body .post-comments .comments-list li {
  margin-bottom: 10px;
}
.profile .wall .activity .post-body .post-comments .comments-list li:before,
.profile .wall .activity .post-body .post-comments .comments-list li:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.profile .wall .activity .post-body .post-comments .comments-list li:after {
  clear: both;
}
.profile .wall .activity .post-body .post-comments .comments-list .comment-image {
  float: left;
  margin-right: 10px;
}
.profile .wall .activity .post-body .post-comments .comments-list .comment-image > img {
  margin-top: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.profile .wall .activity .post-body .post-comments .comments-list .comment-body {
  overflow: hidden;
}
.profile .wall .activity .post-body .post-comments .comments-list .comment-body p {
  display: inline;
  margin: 0;
}
.profile .wall .activity .post-body .post-comments .comments-list .comment-meta {
  color: #777777;
  font-size: 11px;
}
.profile .wall .activity .post-body .post-comments .comments-list .comment-form {
  background: #f9f9f9;
  padding: 5px 8px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.profile .wall .activity .post-body .post-comments .comments-list .comment-form textarea {
  resize: none;
  margin-top: 3px;
  width: 300px;
  overflow: hidden;
}
.profile .wall .activity .post-body .post-report {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.profile .wall .activity .post-body .post-report i {
  opacity: .4;
}
.profile .wall .activity .post-body .post-report a {
  cursor: pointer;
}
.profile .wall .activity .post-body .post-report a:hover i {
  opacity: 1;
}
.profile .wall .activity .post-body:hover .post-report {
  display: block;
}
.load-more {
  margin: 0 auto 20px;
  text-align: center;
}
.load-more .no-more {
  margin-top: 40px;
  display: none;
  text-shadow: 1px 1px 0 #fff;
}
.load-more .no-more h3 {
  font-style: italic;
  font-weight: normal;
}
.load-more .no-more h3 span {
  background: #fff;
  padding: 0 10px;
}
.load-more .no-more hr {
  margin-top: -18px;
}
.load-more.white-bg .load-btn {
  background: #f6f6f6;
}
.load-more.white-bg .no-more h3 span {
  background: #ffffff;
  font-size: 12px;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  color: #bbb;
  font-style: normal;
  padding: 3px 20px;
}
.ui-draggable.selected {
  z-index: 1000;
}
.toolbar-search {
  margin-right: 10px;
  float: left;
}
.toolbar-search .icon-search {
  border-radius: 5px 0 0 5px !important;
  height: 33px;
  background-color: #EAEAEA;
  display: inline-block;
  padding: 0 10px;
  float: left;
  font-size: 16px;
  line-height: 33px;
}
.toolbar-search .icon-search i {
  color: #555555;
}
.toolbar-search input {
  float: left;
  width: 150px;
  padding: 0 15px 0 10px;
  height: 33px;
  border: 1px solid #E5E5E5;
  border-radius: 0 5px 5px 0;
  font-size: 11px;
  border-left: 0;
  outline: none;
}
.toolbar-search .reset {
  right: 7px !important;
}
.wide-search {
  position: relative;
}
.wide-search input.form-control {
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 16px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  border-radius: 45px;
}
.wide-search .icon-magnifier,
.wide-search .reset {
  position: absolute;
  top: 0;
  height: 45px;
  line-height: 47px;
  width: 35px;
  text-align: center;
}
.wide-search .icon-magnifier {
  left: 0;
}
.wide-search .reset {
  right: 0;
  cursor: pointer;
}
.btn-selection {
  position: relative;
}
.anonymous-user .btn-selection {
  display: none;
}
.btn-selection #checkbox {
  position: absolute;
  top: 11px;
  left: 11px;
  cursor: pointer;
  z-index: 10;
}
.btn-selection i {
  font-size: 13px;
}
.btn-selection button {
  width: 45px;
  border-radius: 4px !important;
}
.btn-selection button .caret {
  position: absolute;
  top: 15px;
  right: 8px;
}
.shares-list .box-action-buttons {
  height: 40px;
}
.shares-list .box-action-buttons ul li a i {
  margin: 6px 3px;
}
#modal .video-call-mode li {
  width: 180px;
  height: 120px;
}
.video-call-mode ul {
  padding: 10px;
  margin: 0;
}
.video-call-mode ul li {
  margin: 5px;
  width: 280px;
  height: 180px;
  background: #fff;
  padding: 3px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
  position: relative;
  float: left;
}
.video-call-mode ul li span {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  background: black;
  line-height: 30px;
  opacity: 80;
  filter: alpha(opacity=8000);
  color: white;
  padding: 0 20px;
}
.video-call-mode ul li img {
  width: 100%;
}
.page-share .share-content {
  padding-right: 280px;
}
.page-share .art .cover {
  height: 270px;
}
.page-share .art .cover .share-navbar {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 300%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(300%, rgba(0, 0, 0, 0.4)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 300%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 300%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 300%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 300%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
  /* IE6-9 */
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
.page-share .art .cancel-change {
  position: absolute;
  bottom: 5px;
  z-index: 1;
  right: 112px;
}
.page-share .art .save-change {
  position: absolute;
  bottom: 5px;
  z-index: 1;
  right: 10px;
}
.page-share .art .text-cover-image {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  position: absolute;
  z-index: 1;
  line-height: 22px;
  padding: 5px 15px;
  border-radius: 2px;
}
.page-share .user-activities {
  display: block;
  margin: auto;
  width: 710px;
}
.page-share .share-compact.share-content .art {
  display: none;
}
.page-share .box-add-item {
  background: white;
}
.page-share .box-add-item.opened .btn-toggle {
  background: #f7f7f7;
  color: #111;
}
.page-share .box-add-item .toggle-area-div {
  display: none;
}
.page-share .box-add-item .add-buttons {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-share .box-add-item .add-buttons a {
  font-weight: bold;
  display: block;
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
}
.page-share .box-add-item .add-buttons a:hover {
  background: #f7f7f7;
}
.page-share .box-add-item .btn-toggle {
  display: block;
  text-align: center;
  padding: 20px 10px;
  background: #39C9F9;
  color: white;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}
.page-share .box-add-item .nav-tabs {
  padding-left: 10px;
  padding-top: 0;
  margin-bottom: 0;
}
.page-share .list-view {
  margin: 20px;
  margin-left: 0;
}
.page-share .box-view {
  margin-top: 10px;
}
.page-share .list-holder {
  overflow: hidden;
}
.page-share .filters-holder {
  background: #fbfbfb;
  border: 1px solid #DADADA;
  border-top: 0;
  overflow: hidden;
}
.page-share .share-readonly .user-add-input {
  display: none;
}
.page-share .share-readonly .user-picker h2 {
  margin-bottom: 0;
  border-bottom: 0;
}
.page-share .share-readonly .picker-list {
  margin-top: -4px;
}
.art .cover {
  height: 270px;
  position: relative;
  background-size: cover;
}
.art .cover .change-share-photo {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
.art .cover .change-share-photo .edit {
  margin-right: 2px;
  font-size: 11px;
}
.art .avatar {
  border-radius: 70px;
  display: block;
  height: 70px;
  left: 0;
  position: absolute;
  top: 15px;
  width: 70px;
  z-index: 10;
}
.art .summary-container {
  width: 240px;
  position: relative;
  left: 512px;
  height: 95px;
  top: 15px;
  border-radius: 240px;
  overflow: hidden;
}
.art .summary-content {
  border-radius: 3px;
  left: 85px;
  opacity: 1;
  position: absolute;
  text-align: left;
  top: 35px;
  width: 205px;
}
.art .summary-content h3 {
  font-size: 18px;
  font-weight: lighter;
  padding-bottom: 10px;
  color: #fff;
}
.art .summary-content .bio-contact {
  font-size: 16px;
  font-weight: lighter;
  color: #fff;
  display: none;
}
.art .summary {
  max-width: none;
  color: #FFFFFF;
  position: relative;
  width: 1000px;
  -webkit-filter: brightness(0.8) blur(12px);
}
.art .summary h3 {
  font-size: 19px;
  font-weight: lighter;
  padding-bottom: 10px;
}
.art .summary ul {
  font-size: 14px;
  margin: 0;
}
.art .summary ul li {
  border-bottom: 1px dotted #777777;
  padding-bottom: 3px;
  margin-bottom: 3px;
  font-size: 14px;
  list-style: none;
}
.art .summary ul li:last-child {
  border-bottom: none;
}
.box-view li.selected {
  -webkit-box-shadow: 0px 1px 5px rgba(136, 136, 136, 0.4);
  box-shadow: 0px 1px 5px rgba(136, 136, 136, 0.4);
}
.box-view li.selected .box-action-buttons {
  background: #333;
  opacity: 100;
  filter: alpha(opacity=10000);
}
.box-view li.selected .box-hover {
  display: block;
}
.selector-container {
  float: right !important;
}
.more-add-height {
  height: 24px !important;
}
.row-content {
  height: 24px;
  padding-top: 6px;
}
.row-content .row-reminder-date-item,
.row-content .row-reminder-time-item {
  float: left;
  float: right;
  width: 160px;
}
.row-content .row-reminder-date-item i,
.row-content .row-reminder-time-item i {
  display: block;
  float: left;
  background: transparent url('../../../assets/img/sprite.png') no-repeat -80px -141px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
  margin: 0px 10px;
}
.row-content .row-reminder-date-item span,
.row-content .row-reminder-time-item span {
  float: left;
  color: #525252;
  line-height: 16px;
}
.row-content .row-reminder-time-item i {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -103px -195px;
  width: 16px;
  height: 17px;
  overflow: hidden;
  text-indent: -9999px;
}
.row .image-holder {
  float: left;
  height: 51px;
  overflow: hidden;
  width: 51px;
}
.row > h4,
.row > div > h4 {
  background-color: #F5F5F5;
  border-right: 1px solid #F1F1F1;
  float: left;
  opacity: 0.8;
  padding: 0 8px 0 10px;
  width: 300px;
}
.row > h4 a,
.row > div > h4 a {
  font-size: 12px;
}
.popover {
  font-family: 'Roboto', sans-serif;
  z-index: 110;
  color: #333;
}
.popover ul {
  padding: 0;
  margin: 0;
}
.popover ul li {
  list-style: none;
}
.signup .buttons {
  margin: 24px auto 0 26px;
  width: 500px;
  height: 43px;
}
.signup .buttons a {
  display: block;
  float: left;
  height: 70px;
}
.fb-connect {
  background: url(../../../assets/img/signin-sprites.png) -300px 0px no-repeat;
  width: 250px;
}
.fb-connect:hover {
  background-position: -300px -100px;
}
.fb-connect:active {
  background-position: -300px -200px;
}
.tw-connect {
  background: url(../../../assets/img/signin-sprites.png) 0px 0px no-repeat;
  width: 230px;
}
.tw-connect:hover {
  background-position: 0 -100px;
}
.tw-connect:active {
  background-position: 0 -200px;
}
.color-btn-group {
  color: #0088CC;
}
.color-btn-group:hover {
  color: #0088CC;
}
.color-btn-group:active {
  color: #0088CC;
}
.div-float {
  float: left;
}
.share-setting {
  width: 700px;
  overflow: hidden;
  padding-right: 10px;
  padding-top: 15px;
  float: right;
}
.share-setting .btn-view {
  margin-right: 10px;
}
.image-upload-holder {
  position: relative;
}
.image-upload-holder:hover .btn-image-upload {
  display: block;
}
.image-upload-holder .btn-image-upload {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  color: white;
  font-size: 20px;
  background: black;
  opacity: 70;
  filter: alpha(opacity=7000);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}
.image-upload-holder .btn-image-upload:hover {
  color: #ddd;
}
.image-upload-holder .btn-image-remove {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  color: white;
  font-size: 20px;
  background: black;
  opacity: 70;
  filter: alpha(opacity=7000);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}
.image-upload-holder .btn-image-remove:hover {
  color: #ddd;
}
.image-upload-holder:hover .btn-image-remove {
  display: block;
}
.box {
  overflow: hidden;
}
.box .btn-image-upload {
  right: 20px;
}
.simple-list .btn-view,
.simple-list .hide-simple,
.simple-list .row-content,
.simple-list .list-content .filters-container .row-fluid .btn-toolbar .attach-items-folders {
  display: none;
}
.simple-list .box-action-buttons {
  width: 37px;
}
.simple-list .box-action-buttons ul {
  width: 37px;
}
.simple-list .box-action-buttons ul li:not(.selector-i) {
  display: none;
}
.simple-list .box-action-buttons ul li.selector-i {
  display: block;
}
.simple-list .list.list-view {
  padding: 0;
}
.simple-list .list.list-view li h4 {
  width: auto;
  background: transparent;
  border: 0;
  float: none;
  padding-left: 20px;
}
.simple-list .list.list-view li h4 a {
  display: block;
}
.compact-list .breadcrumb-container .alert {
  padding: 1px 10px;
  margin-top: 4px;
}
.compact-list .breadcrumb-container .breadcrumb > li {
  line-height: 30px;
}
.compact-list .list.list-view li h4 {
  line-height: 34px;
}
.compact-list .list.list-view li h4 > i,
.compact-list .list.list-view li h4 > div > i {
  margin-top: 8px;
}
.compact-list .list.list-view li .btn-toolbar,
.compact-list .list.list-view li .progress {
  margin-top: 7px;
}
.compact-list .list.list-view li .row-content {
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 18px;
}
.compact-list .list.list-view li .row-content p {
  line-height: 18px;
  height: 18px;
  overflow: hidden;
}
.compact-list .list.list-view li .row-content p i {
  margin-top: 2px;
}
.compact-list .list.list-view li .row-view-bar {
  height: 34px;
}
.compact-list .list.list-view li .checkbox-container {
  margin-top: 9px;
}
.compact-list .list.list-view li .row-favicon {
  margin-top: 9px;
}
.compact-list .list.list-view li .row-content {
  padding-top: 0px;
}
.compact-list .list.list-view li .image-holder {
  height: 34px;
  width: 34px;
}
.compact-list .list.list-view li .box-action-buttons {
  height: 43px;
}
.compact-list .list.list-view li .box-action-buttons ul li a {
  height: 34px;
}
.compact-list .list.list-view li .box-action-buttons ul li a i {
  margin: 5px 4px;
}
.compact-list .list.list-view li .box-action-buttons .checkbox-container {
  padding-top: 0;
  margin-top: 0;
}
.item-picker {
  margin: -15px;
}
.item-picker .item-picker-body {
  float: left;
  height: 342px;
  overflow: hidden;
}
.item-picker .item-picker-body .list-holder {
  background-color: #FCFCFC;
  border-right: 1px solid #EBEBEB;
  box-shadow: 0 0 6px rgba(1, 1, 1, 0.1);
  float: left;
  height: 342px;
  width: 570px;
}
.item-picker .item-picker-body .list-holder .filters-container {
  border: 1px solid #EEEEEE;
}
.item-picker .item-picker-body .list-holder .breadcrumb-container {
  background-color: #F8F8F8;
  border-bottom: 1px solid #EFEFEF;
}
.item-picker .item-picker-body .list-holder .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.item-picker .item-picker-body .list-holder .list-main {
  height: 246px;
  padding: 10px 15px;
  overflow-y: auto;
}
.item-picker .item-picker-body .list-holder .list-main .list-container {
  padding: 0;
}
.item-picker .item-picker-sidebar {
  float: left;
  width: 60px;
  height: 100%;
  background-color: #333;
  list-style: none;
  padding: 0;
  margin: 0;
}
.item-picker .item-picker-sidebar.tasks-active {
  border-right: 3px solid #53bd2f;
}
.item-picker .item-picker-sidebar.contacts-active {
  border-right: 3px solid #39c9f9;
}
.item-picker .item-picker-sidebar.links-active {
  border-right: 3px solid #EB6055;
}
.item-picker .item-picker-sidebar.notes-active {
  border-right: 3px solid #1bc8b2;
}
.item-picker .item-picker-sidebar.documents-active {
  border-right: 3px solid #bc62be;
}
.item-picker .item-picker-sidebar.calendars-active {
  border-right: 3px solid #875fad;
}
.item-picker .item-picker-sidebar li {
  line-height: 51.3px;
}
.item-picker .item-picker-sidebar li a {
  color: #FFFFFF;
  display: block;
  font-size: 24px;
  padding: 7px 5px 10px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.item-picker .item-picker-sidebar li a:hover {
  background: #444;
}
.item-picker .item-picker-sidebar li a.active {
  background: #fff;
}
.item-picker .item-picker-sidebar li.tasks a.active {
  background-color: #53bd2f;
}
.item-picker .item-picker-sidebar li.contacts a.active {
  background-color: #39c9f9;
}
.item-picker .item-picker-sidebar li.links a.active {
  background-color: #EB6055;
}
.item-picker .item-picker-sidebar li.notes a.active {
  background-color: #1bc8b2;
}
.item-picker .item-picker-sidebar li.documents a.active {
  background-color: #bc62be;
}
.item-picker .item-picker-sidebar li.calendars a.active {
  background-color: #875fad;
}
.keys {
  border: 0;
  background: none;
}
.keys b {
  min-width: 18px;
  height: 15px;
  margin: 0 2px;
  padding: 2px;
  text-align: center;
  font: 12px/16px sans-serif;
  color: #777;
  background: #EFF0F2;
  border-top: 1px solid #F5F5F5;
  text-shadow: 0px 1px 0px #F5F5F5;
  -webkit-box-shadow: inset 0 0 25px #eee, 0 1px 0 #c3c3c3, 0 2px 0 #c9c9c9, 0 2px 3px #333;
  -moz-box-shadow: inset 0 0 25px #eee, 0 1px 0 #c3c3c3, 0 2px 0 #c9c9c9, 0 2px 3px #333;
  box-shadow: inset 0 0 25px #eee, 0 1px 0 #c3c3c3, 0 2px 0 #c9c9c9, 0 2px 3px #333;
  display: inline-block;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.icon-remove-sign {
  cursor: pointer;
  float: right;
}
.input-prepend,
.input-append {
  position: relative;
}
.settings {
  overflow-y: auto;
  height: 100%;
}
.settings .image-upload-holder {
  width: 200px;
}
.settings .image-upload-holder img {
  width: 100%;
}
.settings iframe {
  border: none;
  width: 100%;
  height: 99%;
}
.settings #payment-tabs {
  position: relative;
}
.settings #payment-tabs #paymant-label {
  position: absolute;
  top: 20px;
  left: 30px;
}
.settings #payment-tabs ul.nav-tabs {
  background: none;
  padding-left: 205px!important;
}
.settings #payment-tabs .tab-pane {
  padding-top: 30px;
}
.toolbar-search .reset {
  top: 11px;
  right: 45px;
  width: 12px;
  height: 18px;
  position: absolute;
  z-index: 2;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAlUlEQVR42o2RSQrDMAxFc5KCD5MTBgw5ioejeFMoybYhyaLdqPpFKp9AaAwPeXgSQu5E5EvO%2BaZE5a6IxRH37rjYKyukI6WUDe%2FwvOKTBSalhIQFHuTBH7Baa9gj4siJA%2BSHwgJHbmeC%2FKLso8i8%2F1ZGz1w5Xuw5Qg42Hjmj1rrD%2B835LEHvd58z%2F2CwH5tNnO0c3PkAGud706ytt0YAAAAASUVORK5CYII%3D") no-repeat;
}
.input-prepend,
.input-append {
  position: relative;
}
.success-sent-sign {
  margin-bottom: 20px;
}
.success-sent-sign i {
  border: 3px solid #53bd2f;
  border-radius: 80px;
  color: #53bd2f;
  float: left;
  font-size: 40px;
  height: 80px;
  line-height: 76px;
  padding: 0 25px;
  width: 30px;
}
.success-sent-sign .alert-success {
  background-color: #EBF4E7;
  border-color: #BDE4C0;
  float: left;
  margin: 25px 0 25px 15px;
  width: 538px;
  position: relative;
}
.success-sent-sign .arrow-left-point {
  border-bottom: 5px solid rgba(0, 0, 0, 0);
  border-right: 9px solid #EBF4E7;
  border-top: 5px solid rgba(0, 0, 0, 0);
  height: 0;
  left: -9px;
  position: absolute;
  top: 13px;
  width: 0;
  z-index: 1;
}
.success-sent-sign .arrow-left-point-border {
  border-bottom: 6px solid rgba(0, 0, 0, 0);
  border-right: 11px solid #BDE4C0;
  border-top: 6px solid rgba(0, 0, 0, 0);
  height: 0;
  left: -11px;
  position: absolute;
  top: 12px;
  width: 0;
  z-index: 0;
}
@keyframes masked-animation {
  0% {
    background-color: #269e00;
  }
  50% {
    background-color: #49d01e;
  }
  1000% {
    background-color: #269e00;
  }
}
@-webkit-keyframes masked-animation {
  0% {
    background-color: #269e00;
  }
  50% {
    background-color: #49d01e;
  }
  1000% {
    background-color: #269e00;
  }
}
@-o-keyframes masked-animation {
  0% {
    background-color: #269e00;
  }
  50% {
    background-color: #49d01e;
  }
  1000% {
    background-color: #269e00;
  }
}
@-moz-keyframes masked-animation {
  0% {
    background-color: #269e00;
  }
  50% {
    background-color: #49d01e;
  }
  1000% {
    background-color: #269e00;
  }
}
.page-mail .filters-container {
  background: #f1f1f1;
  padding-top: 7px;
  padding-bottom: 2px;
}
.page-mail .filters-container .btn-toolbar .btn {
  background-color: red;
}
.page-mail .filters-container .search-holder {
  float: left;
}
.page-mail .filters-container .search-holder i {
  color: #a1a1a1;
  font-size: 18px;
}
.page-mail .filters-container .search-holder input {
  border: 0;
  background: transparent;
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
  font-size: 14px;
  margin-left: 5px;
  margin-top: 3px;
}
.page-mail .filters-container .search-holder input:-moz-placeholder {
  color: #a1a1a1;
}
.page-mail .filters-container .search-holder input:-ms-input-placeholder {
  color: #a1a1a1;
}
.page-mail .filters-container .search-holder input:-webkit-input-placeholder {
  color: #a1a1a1;
}
.page-mail .list {
  border: 0 !important;
}
.page-mail .list > li {
  cursor: pointer;
}
.page-mail .list > li.row {
  background: white;
  padding: 10px 5px;
  padding-bottom: 5px;
}
.page-mail .list > li.row:hover {
  background: #fafafa;
}
.page-mail .list > li .icons {
  float: left;
  margin-right: 10px;
  font-size: 16px;
}
.page-mail .list > li .icons a {
  color: #acacac;
}
.page-mail .list > li .message {
  overflow: hidden;
}
.page-mail .list > li .message .name {
  display: block;
  font-weight: bold;
  color: #333;
}
.page-mail .list > li .message b {
  display: block;
  padding: 3px;
  font-weight: normal;
}
.page-mail .list > li .message .preview {
  padding: 5px 0;
  color: #b9bcbc;
}
.page-mail .list > li .image-holder {
  border: 1px solid #e1e1e1;
  background: white;
  padding: 1px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  float: left;
  margin-right: 10px;
}
.page-mail .list > li .image-holder img {
  width: 100%;
}
.ui-autocomplete {
  z-index: 200 !important;
}
li.row:hover .row-content ul li {
  color: #aaa;
  opacity: 1;
}
.calendar-list li:hover .row-content ul li a {
  opacity: 1;
}
.row-content {
  position: relative;
}
.row-content ul {
  width: 60px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  list-style: none;
}
.anonymous-user .row-content ul {
  display: none;
}
.row-content ul li {
  width: 20px;
  float: right;
  list-style: none;
  font-size: 10px;
  margin-top: 3px;
}
.row-content ul li a {
  color: #ccc;
  opacity: 0;
  padding: 5px 0px;
}
.row-content ul li:hover a {
  color: #777;
  opacity: 1;
}
.row-content #title .edit-title {
  border-bottom: none;
  width: 105px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-top: 0px;
  padding-left: 20px;
  opacity: 1;
  top: 2px;
  position: absolute;
  z-index: 0;
}
.row-content .check-calShare {
  float: left;
  margin-top: 8px;
  position: absolute;
  z-index: 10;
}
.list.list-view > li.item-share .box-action-buttons .shared-row {
  margin-top: 7px;
  padding-top: 0px;
}
.Task-color {
  color: #53bd2f;
}
.Contact-color {
  color: #4eaccb;
}
.Link-color {
  color: #c6574e;
}
.Folder-color {
  color: #6FB6CD;
}
.Event-color {
  color: #875fad;
}
.Note-color {
  color: #e9c609;
}
.Document-color {
  color: #bc62be;
}
.box-action-buttons .single-select {
  width: 100%;
  height: 15px;
  color: #ddd;
  padding: 6px 0px;
  font-size: 11px;
  display: table-cell;
  position: absolute;
  left: 4px;
  top: 2px;
  cursor: pointer;
}
.row.item-task.item-folder.img-root span.span-root {
  background: #f69045;
  position: absolute;
  width: 37px;
  height: 36px;
  float: left;
  margin-top: -11px;
  border-radius: 50px;
}
.row.item-task.item-folder.img-root span.span-root .image-root {
  background: transparent url('../../../assets/img/sprite.png') no-repeat -24px -643px;
  width: 34px;
  height: 23px;
  overflow: hidden;
  text-indent: -9999px;
  position: absolute;
  left: 1px;
  top: 3px;
}
.row.item-task.item-folder.img-root h4#root-item {
  margin: 0;
  height: 25px;
}
.row.item-task.item-folder.img-root h4#root-item a.root-foolder-div {
  color: #f69045;
  line-height: 26px;
  position: absolute;
  top: -6px;
  left: 50px;
  height: 14px;
  margin: 0px;
}
.row.item-task.item-folder.img-root h4#root-item i.root-favicon {
  margin-right: -2px;
  margin-top: 5px;
}
.messages-color {
  color: #2fb18a;
}
.btn-interventions {
  float: left;
  background-color: #444;
  border-radius: 5px;
  text-align: center;
  height: 34px;
  padding: 0 10px;
  margin: 8px 0;
}
.btn-interventions .intervention-text {
  color: #fff;
  font-size: 10px;
  margin: 4px 0;
  text-transform: uppercase;
  display: block;
}
.btn-interventions .intervention-progress {
  background: #666;
  width: 170px;
  color: #fff;
  border-radius: 5px;
  height: 5px;
  display: block;
  position: relative;
}
.btn-interventions .intervention-progress .intervention-percent {
  display: block;
  background: #83C546;
  height: 5px;
  border-radius: 5px 0 0 5px;
}
.intervention-modal .modal-body {
  padding: 0;
}
.intervention-modal .brand {
  display: block;
  margin: 0;
  background: transparent url('../../../assets/img/sprite.png') no-repeat -45px 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  text-indent: -9999px;
  float: left;
}
.intervention-modal .header {
  background: #333333;
  font-size: 18px;
  color: #fff;
  overflow: hidden;
}
.intervention-modal .header span {
  padding: 20px;
  text-align: center;
  display: block;
}
.intervention-modal .header a {
  color: #fff;
  padding: 20px 21px;
  display: block;
}
.intervention-modal .section-links {
  margin: 30px 0;
  text-align: center;
}
.intervention-modal .section-links a {
  padding: 20px;
  font-size: 30px;
  color: #111;
}
.intervention-modal .padded {
  padding: 20px;
}
.intervention-modal .menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.intervention-modal .menu ul li.done a span {
  color: #e1e1e1;
  text-decoration: line-through;
}
.intervention-modal .menu ul li a {
  padding: 20px;
  font-size: 18px;
  display: block;
  border-bottom: 1px solid #e1e1e1;
  color: #8fb5e1;
  font-weight: normal;
}
.intervention-modal .menu ul li a:hover {
  background: #f7f7f7;
}
.intervention-modal .menu ul li a .icon-check-empty,
.intervention-modal .menu ul li a .icon-check {
  font-size: 24px;
  float: left;
  margin-right: 10px;
}
.intervention-modal .menu ul li a .icon-check-empty {
  color: #a1a1a1;
}
.intervention-modal .menu ul li a .icon-check {
  color: green;
}
.intervention-modal .menu ul li:last-child a {
  border-bottom: none;
}
.box-add-item.share-block .add-buttons {
  margin: 0px;
}
.box-add-item.share-block .add-buttons a {
  padding-left: 10px;
  color: #333333;
}
.box-add-item.share-block li {
  padding: 0px;
  clear: both;
  list-style: none;
  background-color: #f1f1f1;
  border-radius: 3px;
  margin: 5px 0px;
}
.box-add-item.share-block li i {
  background-color: #2C9AFF;
  display: inline-block;
  color: #fff;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 3px 0 0 3px;
  font-size: 13px;
}
.box-add-item.share-block li .btn-share-item {
  margin: 8px 5px 5px 0px;
  display: none;
  border: 1px solid #C5D0CC;
  border-radius: 3px;
  color: #525B59;
  padding: 4px 7px;
}
.box-add-item.share-block li:hover .btn-share-item {
  display: inline-block;
}
.box-add-item.share-block li:hover .btn-share-item:hover {
  background-color: #DBE0DF;
}
.clearfix:after,
.clearfix:before {
  clear: both;
  content: "";
  display: table;
}
#share-items-navbar {
  background: #444444;
  position: absolute;
  left: 250px;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  text-align: center;
  z-index: 200;
  display: none;
}
#share-items-navbar .btn-dismiss-share {
  float: left;
  background: transparent;
  font-size: 17px;
  display: inline-block;
  color: #fff;
}
#share-items-navbar .btn-dismiss-share i {
  font-size: 13px;
}
#share-items-navbar .text {
  color: #fff;
  font-size: 13px;
  line-height: 30px;
  font-weight: bold;
}
#share-items-navbar .btnaddshare {
  float: right;
  display: block;
  border: 1px solid #F77D33;
  border-radius: 10px;
  padding: 5px;
  background: #F77D33;
  color: #fff;
  width: 110px;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
}
#share-items-navbar .btnaddshare:hover {
  background: #F77D33;
  border: 1px solid #F77D33;
}
#share-items-navbar ul.share-items {
  margin: 0 auto;
  width: 710px;
}
.setting-navbar {
  margin: 0 auto;
  width: 100%;
  height: 60px;
  background: #fcfcfc;
  -webkit-box-shadow: inset 0px 0px 0px 1px #ccc;
  -moz-box-shadow: inset 0px 0px 0px 1px #ccc;
  box-shadow: inset 0px 0px 0px 1px #ccc;
}
.setting-navbar ul {
  list-style: none;
  margin: auto;
  padding: 0;
  /*max-width: 800px;*/
  width: 100%;
  height: 100%;
}
.setting-navbar ul li {
  line-height: 18px;
  float: left;
  font-size: 15px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.setting-navbar ul li .name,
.setting-navbar ul li a {
  padding: 22px 35px 7px;
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 12px;
  font-weight: bold;
  display: block;
}
.setting-navbar ul li:hover {
  border-bottom: 2px solid #555;
}
.setting-navbar ul li:hover .name {
  color: #333;
}
.setting-navbar ul li.active {
  border-bottom: 2px solid #555;
}
.setting-navbar ul li.active .name {
  color: #333;
}
.setting-navbar ul li .setting-border {
  border: 1px solid #ccc;
}
.setting-navbar a.logout-setting {
  float: right;
  margin: 12px 20px 0px;
  text-align: center;
  color: #999;
  padding: 3px;
}
.setting-navbar a.logout-setting .btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
  border-radius: 10px;
  font-size: 11px;
  padding: 8px 17px;
  text-transform: uppercase;
  font-weight: bold;
}
.setting-navbar a.logout-setting .setting-border {
  border: 4px solid #f8904a;
  opacity: 0;
}
.setting-navbar a.logout-setting .setting-border.name-1 {
  width: 90px;
}
.setting-navbar a.logout-setting .setting-border.name-2 {
  width: 120px;
}
.setting-navbar a.logout-setting:hover .setting-border {
  opacity: 1;
}
.sources-list-holder {
  width: 1000px;
  margin: auto;
}
.sources-list-holder .page {
  overflow: hidden;
}
.sources-list-holder .page .list-holder {
  width: 48%;
  float: left;
  margin: 0 1%;
}
.sources-list-holder .bottom-tip {
  text-align: center;
  margin-top: 25px;
  padding: 10px;
  background: #fafafa;
  border: 1px solid #c7c7c7;
  font-family: lato;
  font-style: italic;
  color: #de7b23;
}
.sources-list-holder .bottom-tip p:last-child {
  margin-bottom: 0px;
}
.new-holder .exist-source {
  background-color: #FAFAFA;
}
.new-holder .exist-source [class^="shicon-"],
.new-holder .exist-source [class*=" shicon-"],
.new-holder .exist-source [class^="fa-"],
.new-holder .exist-source [class*=" fa-"] {
  font-size: 15px;
  background-color: #666;
  width: 30px;
  border-radius: 10px;
  color: #FFF;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 30px;
}
.new-holder .exist-source [class^="shicon-"].shicon-source-linkedin,
.new-holder .exist-source [class*=" shicon-"].shicon-source-linkedin,
.new-holder .exist-source [class^="fa-"].shicon-source-linkedin,
.new-holder .exist-source [class*=" fa-"].shicon-source-linkedin {
  font-size: 12px;
}
.new-holder .exist-source [class^="shicon-"].shicon-source-box,
.new-holder .exist-source [class*=" shicon-"].shicon-source-box,
.new-holder .exist-source [class^="fa-"].shicon-source-box,
.new-holder .exist-source [class*=" fa-"].shicon-source-box {
  font-size: 20px;
}
.new-holder .exist-source li .model-row {
  overflow: hidden;
}
.new-holder .exist-source li .model-row .details {
  float: right;
  width: 100px;
}
.new-holder .exist-source li .model-row .model-name {
  color: #555;
  float: left;
  height: 30px;
  line-height: 30px;
}
.new-holder .exist-source li .model-row .description {
  float: left;
}
.new-holder .exist-source li .model-row .source-username {
  line-height: 25px;
  color: #A3A3A3;
  float: left;
  clear: left;
}
.exist-holder .exist-source {
  background-color: #FAFAFA;
}
.exist-holder .exist-source [class^="shicon-"],
.exist-holder .exist-source [class*=" shicon-"],
.exist-holder .exist-source [class*=" fa-"] {
  font-size: 15px;
  background-color: #666;
  width: 30px;
  border-radius: 10px;
  color: #FFF;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 30px;
}
.exist-holder .exist-source [class^="shicon-"].shicon-source-linkedin,
.exist-holder .exist-source [class*=" shicon-"].shicon-source-linkedin,
.exist-holder .exist-source [class*=" fa-"].shicon-source-linkedin {
  font-size: 12px;
}
.exist-holder .exist-source [class^="shicon-"].shicon-source-box,
.exist-holder .exist-source [class*=" shicon-"].shicon-source-box,
.exist-holder .exist-source [class*=" fa-"].shicon-source-box {
  font-size: 20px;
}
.exist-holder .exist-source li .model-row {
  overflow: hidden;
}
.exist-holder .exist-source li .model-row .details {
  float: right;
  width: 100px;
}
.exist-holder .exist-source li .model-row .model-name {
  color: #555;
  float: left;
  height: 30px;
  line-height: 30px;
}
.exist-holder .exist-source li .model-row .description {
  float: left;
  font-size: 10px;
  color: #fff;
  font-weight: bold;
  padding: 2px 7px;
  border-radius: 7px;
  margin: 6px;
}
.exist-holder .exist-source li .model-row .source-username {
  line-height: 25px;
  color: #A3A3A3;
  float: left;
  clear: left;
  margin-top: -8px;
  font-size: 12px;
  margin-left: 41px;
}
.section-document-holder {
  position: relative;
}
.share-section-holder {
  position: relative;
  height: 100%;
}
.nav-apps li.back {
  display: none;
}
.nav-apps li.back > div {
  background-color: #4E4E4E;
  display: block;
  height: 58px;
  left: -8px;
  position: absolute;
  top: -12px;
  width: 40px;
  border-right: 1px solid #888;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.nav-apps li.back > div:hover {
  background-color: #3E3E3E;
}
.nav-apps li.back > div:hover i {
  color: #fff;
}
.nav-apps li.back > div i {
  font-size: 1.3em;
  margin: 9px;
  position: relative;
  top: 20px;
  left: 3px;
  color: #d9d9d9;
}
.nav-apps li.back.show-back {
  display: block;
}
.pre-breadcrumb {
  position: relative;
}
.pre-breadcrumb .item-logo {
  display: none;
  float: left;
  width: 60px;
  height: 60px;
  text-align: center;
  background-color: #4e4e4e;
}
.pre-breadcrumb .item-logo i.icon {
  font-size: 26px;
  color: #FFFFFF;
  line-height: 54px;
  display: none;
  text-align: center;
}
.pre-breadcrumb .item-logo[data-type=tasks] {
  background-color: #49d181;
}
.pre-breadcrumb .item-logo[data-type=tasks] i.icon-clipboard-check {
  display: inline-block;
}
.pre-breadcrumb .item-logo[data-type=contacts] {
  background-color: #24bcf4;
}
.pre-breadcrumb .item-logo[data-type=contacts] i.icon-contacts {
  display: inline-block;
}
.pre-breadcrumb .item-logo[data-type=links] {
  background-color: #d52e2e;
}
.pre-breadcrumb .item-logo[data-type=links] i.icon-link2 {
  display: inline-block;
}
.pre-breadcrumb .item-logo[data-type=events] {
  background-color: #8a61b1;
}
.pre-breadcrumb .item-logo[data-type=events] i.icon-calendar-full {
  display: inline-block;
}
.pre-breadcrumb .item-logo[data-type=notes] {
  background-color: #1bc8b2;
}
.pre-breadcrumb .item-logo[data-type=notes] i.icon-register {
  display: inline-block;
}
.pre-breadcrumb .item-logo[data-type=documents] {
  background-color: #bc62be;
}
.pre-breadcrumb .item-logo[data-type=documents] i.icon-copy {
  display: inline-block;
}
.pre-breadcrumb .inner-back {
  float: left;
  background-color: #4e4e4e;
  display: block;
  height: 60px;
  text-align: center;
  line-height: 60px;
  width: 60px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.pre-breadcrumb .inner-back i.icon {
  font-size: 14px;
  position: relative;
  width: 30px;
  color: #FFFFFF;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  height: 30px;
  border-radius: 35px;
}
.pre-breadcrumb .inner-back:hover {
  background-color: #777777;
}
.pre-breadcrumb .inner-back:hover i {
  color: #fff;
}
.item-picker .pre-breadcrumb .inner-back {
  display: none;
}
.pre-breadcrumb.main-root .item-logo {
  display: block;
}
.pre-breadcrumb.main-root .inner-back {
  display: none;
}
.list-main .list-container .list-view > li {
  width: 100%;
}
.list-main .list-container .list-view > li .row-view {
  width: 36px;
  height: 36px;
  background-color: #cecece;
  border-radius: 50%;
  float: left;
  text-align: center;
  margin-right: 10px;
  line-height: 36px;
  overflow: hidden;
}
.list-main .list-container .list-view > li .row-view img {
  vertical-align: middle !important;
}
.list-main .list-container .list-view > li .row-view i {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
}
.list-main .list-container .list-view > li .row-folder {
  background-color: #4979d1;
}
.list-main .list-container .list-view > li .row-folder i {
  color: #FFF;
  font-size: 14px;
}
.list-main .list-container .list-view > li .details-container {
  overflow: hidden;
  padding: 4px 0;
  height: 36px;
}
.list-main .list-container .list-view > li .details-container .details-primary {
  overflow: hidden;
  line-height: 13px;
}
.list-main .list-container .list-view > li .details-container .details-primary a {
  float: left;
  font-size: 13px;
  line-height: 13px;
  color: #555;
  font-weight: bold;
}
.list-main .list-container .list-view > li .details-container .details-primary span.item-date-stamp {
  font-size: 10px;
  color: #999;
  display: block;
  clear: both;
  line-height: 2;
}
.list-main .list-container .list-view > li .details-container .details-more {
  overflow: hidden;
  line-height: 13px;
}
.list-main .list-container .list-view > li .details-container .details-more * {
  font-size: 12px;
  color: #999;
}
.list-main .list-container .list-view > li.item-task .row-task {
  background-color: #49d18c;
}
.list-main .list-container .list-view > li.item-task .row-task i {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
}
.list-main .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item {
  color: #666;
  font-size: 14px;
  float: left;
}
.anonymous-user .list-main .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item {
  display: none;
}
.list-main .list-container .list-view > li.item-task .details-container .details-primary a {
  padding-left: 5px;
}
.list-main .list-container .list-view > li.item-task .details-container .details-more .folder-description-container {
  font-size: 13px;
  color: #999;
}
.list-main .list-container .list-view > li.item-task .details-container .details-more .duedate-container {
  font-size: 12px;
  color: #999;
}
.list-main .list-container .list-view > li.item-task .details-container .details-more .priority-container {
  font-size: 12px;
  color: #bbb;
  font-weight: bold;
  border-left: 1px solid;
  padding-left: 3px;
}
.list-main .list-container .list-view > li.item-contact .row-contact {
  background-color: rgba(0, 0, 0, 0);
}
.list-main .list-container .list-view > li.item-contact .details-container .details-more {
  line-height: 16px;
}
.list-main .list-container .list-view > li.item-contact .details-container .details-more .information-container span {
  display: none;
}
.list-main .list-container .list-view > li.item-contact .details-container .details-more .information-container span:first-child {
  display: block;
  line-height: 18px;
}
.list-main .list-container .list-view > li.item-link .row-link {
  background-color: #d3d3d3;
}
.list-main .list-container .list-view > li.item-link .details-container .details-more {
  line-height: 16px;
}
.list-main .list-container .list-view > li.item-note .row-note {
  background-color: #1bc8b2;
  padding: 6px 7px;
}
.list-main .list-container .list-view > li.item-note .row-note .note-first-letters {
  font-size: 14px;
  display: block;
  line-height: 24px;
  text-align: center;
  padding-left: 2px;
}
.list-main .list-container .list-view > li.item-note .details-container .details-more {
  line-height: 16px;
}
.list-main .list-container .list-view > li.item-calendar-attach .row-event {
  background-color: #875fad;
}
.list-main .list-container .list-view > li.item-calendar-attach .details-container .details-primary a {
  line-height: 27px;
}
.list-main .list-container .list-view > li.item-calendar-attach .details-container .details-more {
  line-height: 16px;
}
.list-main .list-container .item .btn-select > i.icon:before,
.list-main .list-container .item-folder .btn-select > i.icon:before {
  content: "\e98d";
}
.list-main .list-container .item.selected .btn-select > i.icon:before,
.list-main .list-container .item-folder.selected .btn-select > i.icon:before {
  content: "\e999";
}
.modal .list-container .list-view > li,
.page-tasks .list-container .list-view > li,
.page-contacts .list-container .list-view > li,
.page-links .list-container .list-view > li,
.page-notes .list-container .list-view > li,
.page-documents .list-container .list-view > li {
  position: relative;
  margin: 10px 0;
}
.modal .list-container .list-view > li .row-view,
.page-tasks .list-container .list-view > li .row-view,
.page-contacts .list-container .list-view > li .row-view,
.page-links .list-container .list-view > li .row-view,
.page-notes .list-container .list-view > li .row-view,
.page-documents .list-container .list-view > li .row-view {
  width: 36px;
  height: 36px;
  background-color: #cecece;
  border-radius: 5px;
  float: left;
  text-align: center;
  margin-right: 5px;
  line-height: 36px;
  overflow: hidden;
}
.modal .list-container .list-view > li .row-view i,
.page-tasks .list-container .list-view > li .row-view i,
.page-contacts .list-container .list-view > li .row-view i,
.page-links .list-container .list-view > li .row-view i,
.page-notes .list-container .list-view > li .row-view i,
.page-documents .list-container .list-view > li .row-view i {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
}
.modal .list-container .list-view > li .row-folder,
.page-tasks .list-container .list-view > li .row-folder,
.page-contacts .list-container .list-view > li .row-folder,
.page-links .list-container .list-view > li .row-folder,
.page-notes .list-container .list-view > li .row-folder,
.page-documents .list-container .list-view > li .row-folder {
  background-color: #4979d1;
}
.modal .list-container .list-view > li .row-folder i,
.page-tasks .list-container .list-view > li .row-folder i,
.page-contacts .list-container .list-view > li .row-folder i,
.page-links .list-container .list-view > li .row-folder i,
.page-notes .list-container .list-view > li .row-folder i,
.page-documents .list-container .list-view > li .row-folder i {
  color: #FFF;
  font-size: 18px;
}
.modal .list-container .list-view > li .box-action-buttons,
.page-tasks .list-container .list-view > li .box-action-buttons,
.page-contacts .list-container .list-view > li .box-action-buttons,
.page-links .list-container .list-view > li .box-action-buttons,
.page-notes .list-container .list-view > li .box-action-buttons,
.page-documents .list-container .list-view > li .box-action-buttons {
  height: 36px;
  line-height: 36px;
}
.modal .list-container .list-view > li .box-action-buttons ul,
.page-tasks .list-container .list-view > li .box-action-buttons ul,
.page-contacts .list-container .list-view > li .box-action-buttons ul,
.page-links .list-container .list-view > li .box-action-buttons ul,
.page-notes .list-container .list-view > li .box-action-buttons ul,
.page-documents .list-container .list-view > li .box-action-buttons ul {
  height: 30px;
  margin: -4px 0 0 0;
  padding: 0;
}
.modal .list-container .list-view > li .box-action-buttons ul .checkbox-container,
.page-tasks .list-container .list-view > li .box-action-buttons ul .checkbox-container,
.page-contacts .list-container .list-view > li .box-action-buttons ul .checkbox-container,
.page-links .list-container .list-view > li .box-action-buttons ul .checkbox-container,
.page-notes .list-container .list-view > li .box-action-buttons ul .checkbox-container,
.page-documents .list-container .list-view > li .box-action-buttons ul .checkbox-container {
  -moz-user-select: none;
  cursor: pointer;
  height: 16px;
  width: 16px;
  float: right;
}
.modal .list-container .list-view > li .box-action-buttons ul .checkbox-container span,
.page-tasks .list-container .list-view > li .box-action-buttons ul .checkbox-container span,
.page-contacts .list-container .list-view > li .box-action-buttons ul .checkbox-container span,
.page-links .list-container .list-view > li .box-action-buttons ul .checkbox-container span,
.page-notes .list-container .list-view > li .box-action-buttons ul .checkbox-container span,
.page-documents .list-container .list-view > li .box-action-buttons ul .checkbox-container span {
  display: block;
  border: 1px solid #C6C6C6;
}
.modal .list-container .list-view > li .box-action-buttons ul .checkbox-container .checkbox-item,
.page-tasks .list-container .list-view > li .box-action-buttons ul .checkbox-container .checkbox-item,
.page-contacts .list-container .list-view > li .box-action-buttons ul .checkbox-container .checkbox-item,
.page-links .list-container .list-view > li .box-action-buttons ul .checkbox-container .checkbox-item,
.page-notes .list-container .list-view > li .box-action-buttons ul .checkbox-container .checkbox-item,
.page-documents .list-container .list-view > li .box-action-buttons ul .checkbox-container .checkbox-item {
  height: 14px;
  padding: 0 !important;
  width: 14px;
}
.modal .list-container .list-view > li .box-action-buttons ul li,
.page-tasks .list-container .list-view > li .box-action-buttons ul li,
.page-contacts .list-container .list-view > li .box-action-buttons ul li,
.page-links .list-container .list-view > li .box-action-buttons ul li,
.page-notes .list-container .list-view > li .box-action-buttons ul li,
.page-documents .list-container .list-view > li .box-action-buttons ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 28px;
  height: 36px;
}
.modal .list-container .list-view > li .box-action-buttons ul li:last-child,
.page-tasks .list-container .list-view > li .box-action-buttons ul li:last-child,
.page-contacts .list-container .list-view > li .box-action-buttons ul li:last-child,
.page-links .list-container .list-view > li .box-action-buttons ul li:last-child,
.page-notes .list-container .list-view > li .box-action-buttons ul li:last-child,
.page-documents .list-container .list-view > li .box-action-buttons ul li:last-child {
  margin-right: 7px;
}
.modal .list-container .list-view > li .box-action-buttons ul li a,
.page-tasks .list-container .list-view > li .box-action-buttons ul li a,
.page-contacts .list-container .list-view > li .box-action-buttons ul li a,
.page-links .list-container .list-view > li .box-action-buttons ul li a,
.page-notes .list-container .list-view > li .box-action-buttons ul li a,
.page-documents .list-container .list-view > li .box-action-buttons ul li a {
  display: block;
  cursor: pointer;
  text-align: center;
  color: #777;
}
.modal .list-container .list-view > li .box-action-buttons ul li.selector-i,
.page-tasks .list-container .list-view > li .box-action-buttons ul li.selector-i,
.page-contacts .list-container .list-view > li .box-action-buttons ul li.selector-i,
.page-links .list-container .list-view > li .box-action-buttons ul li.selector-i,
.page-notes .list-container .list-view > li .box-action-buttons ul li.selector-i,
.page-documents .list-container .list-view > li .box-action-buttons ul li.selector-i {
  display: none;
}
.modal .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect,
.page-tasks .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect,
.page-contacts .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect,
.page-links .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect,
.page-notes .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect,
.page-documents .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect {
  display: block;
}
.modal .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect .picker-unselect,
.page-tasks .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect .picker-unselect,
.page-contacts .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect .picker-unselect,
.page-links .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect .picker-unselect,
.page-notes .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect .picker-unselect,
.page-documents .list-container .list-view > li .box-action-buttons ul li.picker-select-unselect .picker-unselect {
  display: none;
}
.modal .list-container .list-view > li .details-container,
.page-tasks .list-container .list-view > li .details-container,
.page-contacts .list-container .list-view > li .details-container,
.page-links .list-container .list-view > li .details-container,
.page-notes .list-container .list-view > li .details-container,
.page-documents .list-container .list-view > li .details-container {
  overflow: hidden;
  padding: 4px 0;
  height: 40px;
}
.modal .list-container .list-view > li .details-container .pull-left,
.page-tasks .list-container .list-view > li .details-container .pull-left,
.page-contacts .list-container .list-view > li .details-container .pull-left,
.page-links .list-container .list-view > li .details-container .pull-left,
.page-notes .list-container .list-view > li .details-container .pull-left,
.page-documents .list-container .list-view > li .details-container .pull-left {
  width: 70%;
}
.modal .list-container .list-view > li .details-container .details-primary,
.page-tasks .list-container .list-view > li .details-container .details-primary,
.page-contacts .list-container .list-view > li .details-container .details-primary,
.page-links .list-container .list-view > li .details-container .details-primary,
.page-notes .list-container .list-view > li .details-container .details-primary,
.page-documents .list-container .list-view > li .details-container .details-primary {
  overflow: hidden;
  line-height: 13px;
}
.modal .list-container .list-view > li .details-container .details-primary a,
.page-tasks .list-container .list-view > li .details-container .details-primary a,
.page-contacts .list-container .list-view > li .details-container .details-primary a,
.page-links .list-container .list-view > li .details-container .details-primary a,
.page-notes .list-container .list-view > li .details-container .details-primary a,
.page-documents .list-container .list-view > li .details-container .details-primary a {
  float: left;
  font-size: 13px;
  line-height: 13px;
  color: #555;
  font-weight: bold;
}
.modal .list-container .list-view > li .details-container .details-more,
.page-tasks .list-container .list-view > li .details-container .details-more,
.page-contacts .list-container .list-view > li .details-container .details-more,
.page-links .list-container .list-view > li .details-container .details-more,
.page-notes .list-container .list-view > li .details-container .details-more,
.page-documents .list-container .list-view > li .details-container .details-more {
  overflow: hidden;
  line-height: 13px;
}
.modal .list-container .list-view > li .details-container .details-more *,
.page-tasks .list-container .list-view > li .details-container .details-more *,
.page-contacts .list-container .list-view > li .details-container .details-more *,
.page-links .list-container .list-view > li .details-container .details-more *,
.page-notes .list-container .list-view > li .details-container .details-more *,
.page-documents .list-container .list-view > li .details-container .details-more * {
  font-size: 12px;
  color: #999;
}
.modal .list-container .list-view > li.item-task .row-task,
.page-tasks .list-container .list-view > li.item-task .row-task,
.page-contacts .list-container .list-view > li.item-task .row-task,
.page-links .list-container .list-view > li.item-task .row-task,
.page-notes .list-container .list-view > li.item-task .row-task,
.page-documents .list-container .list-view > li.item-task .row-task {
  background-color: #49d18c;
}
.modal .list-container .list-view > li.item-task .row-task i,
.page-tasks .list-container .list-view > li.item-task .row-task i,
.page-contacts .list-container .list-view > li.item-task .row-task i,
.page-links .list-container .list-view > li.item-task .row-task i,
.page-notes .list-container .list-view > li.item-task .row-task i,
.page-documents .list-container .list-view > li.item-task .row-task i {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
}
.modal .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item,
.page-tasks .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item,
.page-contacts .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item,
.page-links .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item,
.page-notes .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item,
.page-documents .list-container .list-view > li.item-task .details-container .details-primary .checkbox-item {
  color: #666;
  font-size: 14px;
  float: left;
}
.modal .list-container .list-view > li.item-task .details-container .details-primary a,
.page-tasks .list-container .list-view > li.item-task .details-container .details-primary a,
.page-contacts .list-container .list-view > li.item-task .details-container .details-primary a,
.page-links .list-container .list-view > li.item-task .details-container .details-primary a,
.page-notes .list-container .list-view > li.item-task .details-container .details-primary a,
.page-documents .list-container .list-view > li.item-task .details-container .details-primary a {
  padding-left: 5px;
}
.modal .list-container .list-view > li.item-task .details-container .details-more .folder-description-container,
.page-tasks .list-container .list-view > li.item-task .details-container .details-more .folder-description-container,
.page-contacts .list-container .list-view > li.item-task .details-container .details-more .folder-description-container,
.page-links .list-container .list-view > li.item-task .details-container .details-more .folder-description-container,
.page-notes .list-container .list-view > li.item-task .details-container .details-more .folder-description-container,
.page-documents .list-container .list-view > li.item-task .details-container .details-more .folder-description-container {
  font-size: 13px;
  color: #999;
}
.modal .list-container .list-view > li.item-task .details-container .details-more .duedate-container,
.page-tasks .list-container .list-view > li.item-task .details-container .details-more .duedate-container,
.page-contacts .list-container .list-view > li.item-task .details-container .details-more .duedate-container,
.page-links .list-container .list-view > li.item-task .details-container .details-more .duedate-container,
.page-notes .list-container .list-view > li.item-task .details-container .details-more .duedate-container,
.page-documents .list-container .list-view > li.item-task .details-container .details-more .duedate-container {
  font-size: 12px;
  color: #999;
}
.modal .list-container .list-view > li.item-task .details-container .details-more .priority-container,
.page-tasks .list-container .list-view > li.item-task .details-container .details-more .priority-container,
.page-contacts .list-container .list-view > li.item-task .details-container .details-more .priority-container,
.page-links .list-container .list-view > li.item-task .details-container .details-more .priority-container,
.page-notes .list-container .list-view > li.item-task .details-container .details-more .priority-container,
.page-documents .list-container .list-view > li.item-task .details-container .details-more .priority-container {
  font-size: 12px;
  color: #bbb;
  font-weight: bold;
  border-left: 1px solid;
  padding-left: 3px;
}
.modal .list-container .list-view > li.item-task .pull-right,
.page-tasks .list-container .list-view > li.item-task .pull-right,
.page-contacts .list-container .list-view > li.item-task .pull-right,
.page-links .list-container .list-view > li.item-task .pull-right,
.page-notes .list-container .list-view > li.item-task .pull-right,
.page-documents .list-container .list-view > li.item-task .pull-right {
  position: relative;
}
.modal .list-container .list-view > li.item-task .pull-right .progress,
.page-tasks .list-container .list-view > li.item-task .pull-right .progress,
.page-contacts .list-container .list-view > li.item-task .pull-right .progress,
.page-links .list-container .list-view > li.item-task .pull-right .progress,
.page-notes .list-container .list-view > li.item-task .pull-right .progress,
.page-documents .list-container .list-view > li.item-task .pull-right .progress {
  position: absolute;
  top: 5px;
  left: 0;
  margin-top: 0;
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.modal .list-container .list-view > li.item-task .pull-right .progress .progress-bar,
.page-tasks .list-container .list-view > li.item-task .pull-right .progress .progress-bar,
.page-contacts .list-container .list-view > li.item-task .pull-right .progress .progress-bar,
.page-links .list-container .list-view > li.item-task .pull-right .progress .progress-bar,
.page-notes .list-container .list-view > li.item-task .pull-right .progress .progress-bar,
.page-documents .list-container .list-view > li.item-task .pull-right .progress .progress-bar {
  background-color: #49d181;
  line-height: 20px;
}
.modal .list-container .list-view > li.item-task .pull-right .progress .progress-bar span,
.page-tasks .list-container .list-view > li.item-task .pull-right .progress .progress-bar span,
.page-contacts .list-container .list-view > li.item-task .pull-right .progress .progress-bar span,
.page-links .list-container .list-view > li.item-task .pull-right .progress .progress-bar span,
.page-notes .list-container .list-view > li.item-task .pull-right .progress .progress-bar span,
.page-documents .list-container .list-view > li.item-task .pull-right .progress .progress-bar span {
  color: #fff;
}
.modal .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent,
.page-tasks .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent,
.page-contacts .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent,
.page-links .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent,
.page-notes .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent,
.page-documents .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent {
  position: relative;
}
.modal .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent span,
.page-tasks .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent span,
.page-contacts .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent span,
.page-links .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent span,
.page-notes .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent span,
.page-documents .list-container .list-view > li.item-task .pull-right .progress .progress-bar.out-percent span {
  position: absolute;
  top: 0;
  right: -30px;
  color: #49d181;
}
.modal .list-container .list-view > li.item-task:hover .progress,
.page-tasks .list-container .list-view > li.item-task:hover .progress,
.page-contacts .list-container .list-view > li.item-task:hover .progress,
.page-links .list-container .list-view > li.item-task:hover .progress,
.page-notes .list-container .list-view > li.item-task:hover .progress,
.page-documents .list-container .list-view > li.item-task:hover .progress {
  display: none;
}
.anonymous-user .modal .list-container .list-view > li.item-task:hover .progress,
.anonymous-user .page-tasks .list-container .list-view > li.item-task:hover .progress,
.anonymous-user .page-contacts .list-container .list-view > li.item-task:hover .progress,
.anonymous-user .page-links .list-container .list-view > li.item-task:hover .progress,
.anonymous-user .page-notes .list-container .list-view > li.item-task:hover .progress,
.anonymous-user .page-documents .list-container .list-view > li.item-task:hover .progress {
  display: block;
}
.modal .list-container .list-view > li.item-contact .row-view,
.page-tasks .list-container .list-view > li.item-contact .row-view,
.page-contacts .list-container .list-view > li.item-contact .row-view,
.page-links .list-container .list-view > li.item-contact .row-view,
.page-notes .list-container .list-view > li.item-contact .row-view,
.page-documents .list-container .list-view > li.item-contact .row-view {
  line-height: 40px;
}
.modal .list-container .list-view > li.item-contact .row-contact,
.page-tasks .list-container .list-view > li.item-contact .row-contact,
.page-contacts .list-container .list-view > li.item-contact .row-contact,
.page-links .list-container .list-view > li.item-contact .row-contact,
.page-notes .list-container .list-view > li.item-contact .row-contact,
.page-documents .list-container .list-view > li.item-contact .row-contact {
  background-color: #24bcf4;
}
.modal .list-container .list-view > li.item-contact .details-container .details-more,
.page-tasks .list-container .list-view > li.item-contact .details-container .details-more,
.page-contacts .list-container .list-view > li.item-contact .details-container .details-more,
.page-links .list-container .list-view > li.item-contact .details-container .details-more,
.page-notes .list-container .list-view > li.item-contact .details-container .details-more,
.page-documents .list-container .list-view > li.item-contact .details-container .details-more {
  line-height: 16px;
}
.modal .list-container .list-view > li.item-contact .details-container .details-more .information-container span,
.page-tasks .list-container .list-view > li.item-contact .details-container .details-more .information-container span,
.page-contacts .list-container .list-view > li.item-contact .details-container .details-more .information-container span,
.page-links .list-container .list-view > li.item-contact .details-container .details-more .information-container span,
.page-notes .list-container .list-view > li.item-contact .details-container .details-more .information-container span,
.page-documents .list-container .list-view > li.item-contact .details-container .details-more .information-container span {
  display: none;
}
.modal .list-container .list-view > li.item-contact .details-container .details-more .information-container span:first-child,
.page-tasks .list-container .list-view > li.item-contact .details-container .details-more .information-container span:first-child,
.page-contacts .list-container .list-view > li.item-contact .details-container .details-more .information-container span:first-child,
.page-links .list-container .list-view > li.item-contact .details-container .details-more .information-container span:first-child,
.page-notes .list-container .list-view > li.item-contact .details-container .details-more .information-container span:first-child,
.page-documents .list-container .list-view > li.item-contact .details-container .details-more .information-container span:first-child {
  display: block;
  line-height: 18px;
}
.modal .list-container .list-view > li.item-link .row-link,
.page-tasks .list-container .list-view > li.item-link .row-link,
.page-contacts .list-container .list-view > li.item-link .row-link,
.page-links .list-container .list-view > li.item-link .row-link,
.page-notes .list-container .list-view > li.item-link .row-link,
.page-documents .list-container .list-view > li.item-link .row-link {
  background-color: #d3d3d3;
}
.modal .list-container .list-view > li.item-link .details-container .details-more,
.page-tasks .list-container .list-view > li.item-link .details-container .details-more,
.page-contacts .list-container .list-view > li.item-link .details-container .details-more,
.page-links .list-container .list-view > li.item-link .details-container .details-more,
.page-notes .list-container .list-view > li.item-link .details-container .details-more,
.page-documents .list-container .list-view > li.item-link .details-container .details-more {
  line-height: 16px;
}
.modal .list-container .list-view > li.item-note .row-note,
.page-tasks .list-container .list-view > li.item-note .row-note,
.page-contacts .list-container .list-view > li.item-note .row-note,
.page-links .list-container .list-view > li.item-note .row-note,
.page-notes .list-container .list-view > li.item-note .row-note,
.page-documents .list-container .list-view > li.item-note .row-note {
  background-color: #1bc8b2;
  padding: 0px;
}
.modal .list-container .list-view > li.item-note .row-note .note-first-letters,
.page-tasks .list-container .list-view > li.item-note .row-note .note-first-letters,
.page-contacts .list-container .list-view > li.item-note .row-note .note-first-letters,
.page-links .list-container .list-view > li.item-note .row-note .note-first-letters,
.page-notes .list-container .list-view > li.item-note .row-note .note-first-letters,
.page-documents .list-container .list-view > li.item-note .row-note .note-first-letters {
  font-size: 8px;
  display: block;
  line-height: 12px;
  letter-spacing: 3px;
  text-align: left;
}
.modal .list-container .list-view > li.item-note .details-container .details-more,
.page-tasks .list-container .list-view > li.item-note .details-container .details-more,
.page-contacts .list-container .list-view > li.item-note .details-container .details-more,
.page-links .list-container .list-view > li.item-note .details-container .details-more,
.page-notes .list-container .list-view > li.item-note .details-container .details-more,
.page-documents .list-container .list-view > li.item-note .details-container .details-more {
  line-height: 16px;
}
.modal .list-container .list-view > li.item-share .row-share,
.page-tasks .list-container .list-view > li.item-share .row-share,
.page-contacts .list-container .list-view > li.item-share .row-share,
.page-links .list-container .list-view > li.item-share .row-share,
.page-notes .list-container .list-view > li.item-share .row-share,
.page-documents .list-container .list-view > li.item-share .row-share {
  background-color: #F77D33;
}
.modal .list-container .list-view > li.item-share .row-share i,
.page-tasks .list-container .list-view > li.item-share .row-share i,
.page-contacts .list-container .list-view > li.item-share .row-share i,
.page-links .list-container .list-view > li.item-share .row-share i,
.page-notes .list-container .list-view > li.item-share .row-share i,
.page-documents .list-container .list-view > li.item-share .row-share i {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
}
.modal .list-container .list-view > li.item-document .row-document,
.page-tasks .list-container .list-view > li.item-document .row-document,
.page-contacts .list-container .list-view > li.item-document .row-document,
.page-links .list-container .list-view > li.item-document .row-document,
.page-notes .list-container .list-view > li.item-document .row-document,
.page-documents .list-container .list-view > li.item-document .row-document {
  background-color: #bc62be;
}
.modal .list-container .list-view > li.item-document .row-document i,
.page-tasks .list-container .list-view > li.item-document .row-document i,
.page-contacts .list-container .list-view > li.item-document .row-document i,
.page-links .list-container .list-view > li.item-document .row-document i,
.page-notes .list-container .list-view > li.item-document .row-document i,
.page-documents .list-container .list-view > li.item-document .row-document i {
  color: #FFF;
  font-style: normal;
  font-weight: normal;
}
.modal .list-container .list-view > li.item-event .row-event,
.page-tasks .list-container .list-view > li.item-event .row-event,
.page-contacts .list-container .list-view > li.item-event .row-event,
.page-links .list-container .list-view > li.item-event .row-event,
.page-notes .list-container .list-view > li.item-event .row-event,
.page-documents .list-container .list-view > li.item-event .row-event {
  background-color: #875fad;
}
.modal .list-container .list-view > li.item-event .row-event i,
.page-tasks .list-container .list-view > li.item-event .row-event i,
.page-contacts .list-container .list-view > li.item-event .row-event i,
.page-links .list-container .list-view > li.item-event .row-event i,
.page-notes .list-container .list-view > li.item-event .row-event i,
.page-documents .list-container .list-view > li.item-event .row-event i {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
}
.modal .list-container .list-view > li:hover .box-action-buttons,
.page-tasks .list-container .list-view > li:hover .box-action-buttons,
.page-contacts .list-container .list-view > li:hover .box-action-buttons,
.page-links .list-container .list-view > li:hover .box-action-buttons,
.page-notes .list-container .list-view > li:hover .box-action-buttons,
.page-documents .list-container .list-view > li:hover .box-action-buttons {
  opacity: 1;
}
.modal .single-page .page-view .profile-action-button .creation-date-item,
.modal .single-page .page-view .profile-action-button .creator-user-link {
  font-size: 12px;
  color: #888;
  float: left;
  margin-right: 10px;
}
.form-edit input {
  height: 30px;
}
.form-notify {
  width: 700px;
  margin: 0 auto;
}
.form-notify legend {
  padding: 10px 15px;
  font-size: 20px;
}
.form-notify label {
  padding-left: 10px;
  font-size: 16px;
}
.form-notify span.info {
  font-size: 12px;
  color: #A9A9A9;
  font-style: italic;
  display: inline-block;
  margin-bottom: 10px;
}
.first-letter-title {
  text-transform: uppercase;
}
.ui-widget-content {
  background: #fdfdfd;
  border-radius: 4px;
  border: 1px solid #eee;
}
.ui-widget-content a {
  color: #666;
}
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #eee;
  background: #fff;
  font-weight: normal;
  color: #000;
}
.ui-state-focus a,
.ui-widget-content .ui-state-focus a,
.ui-widget-header .ui-state-focus a {
  color: #000;
}
.ui-menu-item .username img {
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-top: 2px;
  border-radius: 50px;
}
.ui-timepicker-wrapper {
  z-index: 100000;
  margin-top: -1px;
  width: 102px;
}
.share-section {
  height: 100%;
  width: 100%;
  position: relative;
}
.share-section .share-list-new {
  position: absolute;
  top: 35%;
  width: 100%;
  text-align: center;
  color: #999;
}
.attach-list .details-container .pull-left {
  max-width: 425px;
}
.attach-list .details-container .pull-left span {
  display: inline-block;
  line-height: 16px;
}
.attach-list .box-action-buttons ul li:not(.selector-i) {
  display: none;
}
.attach-list .box-action-buttons ul li.selector-i {
  display: block;
}
.form-group .alert {
  padding: 10px;
  margin-bottom: 0px;
}
.item-show {
  cursor: pointer;
}
.company-form {
  max-width: 800px;
  width: 100%;
  margin: auto;
  position: relative;
}
.company-form .form-validation-error {
  left: 16px;
}
.company-form .total-price {
  font-size: 25px;
  font-weight: bold;
}
.company-form .total-price .currency {
  font-size: 20px;
  margin-right: -5px;
}
.company-form .total-price .loading-indicator {
  cursor: pointer;
  font-size: 18px;
  color: #777;
}
.company-form.company-form-renew {
  margin-top: 20px!important;
  width: 100%!important;
}
.company-info {
  width: 100%;
  max-width: 90%;
  margin: 30px auto;
}
.company-info .row {
  margin: 0 -15px !important;
}
.company-info .alert-info {
  text-align: center;
}
.company-info .alert-info img {
  width: 35px;
  height: auto;
  margin-right: 10px;
}
.company-info .company-invoice-status {
  font-size: 13px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.company-info .company-invoice-status .alert {
  padding: 8px 10px;
}
.company-info .btn.change-name-btn {
  padding: 2px 7px;
}
.company-info .alert-error {
  display: none;
}
.company-info .form-actions {
  margin-top: 10px;
}
.company-info .plan {
  cursor: pointer;
}
.company-info .plan .plan-wraper {
  box-shadow: 0 3px 5px 0 #C1C1C1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.company-info .plan .plan-wraper:hover {
  box-shadow: 0 7px 10px 0 #BBBBBB;
}
.company-info .plan .plan-header {
  position: relative;
  padding: 10px 10px 10px 43px;
  height: 40px;
  color: #fff;
}
.company-info .plan .plan-header i.fa {
  position: absolute;
  top: 7px;
  left: 10px;
  color: #fff;
}
.company-info .plan .plan-header input[type="radio"] {
  display: none;
}
.company-info .plan .plan-body {
  padding: 10px 10px 15px;
  font-size: 12px;
  color: #7D7D7D;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: none;
}
.company-info .plan .plan-body ul {
  margin: 0;
  padding-left: 25px;
  list-style-position: outside;
  padding-right: 15px;
}
.company-info .plan .plan-body ul li {
  padding: 3px 0;
}
.company-info .plan#plan-1 .plan-header {
  border-top: 1px solid #27ae60;
  border-right: 1px solid #27ae60;
  border-left: 1px solid #27ae60;
  border-bottom: none;
  background-color: #27ae60;
}
.company-info .plan#plan-2 .plan-header {
  border-top: 1px solid #2980b9;
  border-right: 1px solid #2980b9;
  border-left: 1px solid #2980b9;
  border-bottom: none;
  background-color: #2980b9;
}
.company-info .plan input[type="radio"] ~ i.fa.fa-circle-o {
  display: inline;
}
.company-info .plan input[type="radio"] ~ i.fa.fa-check-circle-o {
  display: none;
}
.company-info .plan input[type="radio"]:checked ~ i.fa.fa-circle-o {
  display: none;
}
.company-info .plan input[type="radio"]:checked ~ i.fa.fa-check-circle-o {
  display: inline;
}
.company-info .term {
  cursor: pointer;
  position: relative;
  padding: 10px 10px 10px 43px;
  height: 40px;
  font-size: 14px;
  font-weight: normal;
  color: #333;
}
.company-info .term i.fa {
  position: absolute;
  top: 7px;
  left: 10px;
}
.company-info .term input[type="radio"] {
  display: none;
}
.company-info .term input[type="radio"] ~ i.fa.fa-circle-o {
  display: inline;
  color: #B9B9B9;
}
.company-info .term input[type="radio"] ~ i.fa.fa-check-circle-o {
  display: none;
}
.company-info .term input[type="radio"]:checked ~ i.fa.fa-circle-o {
  display: none;
}
.company-info .term input[type="radio"]:checked ~ i.fa.fa-check-circle-o {
  display: inline;
}
.company-info .header {
  text-align: center;
  font-weight: bold;
}
.company-info .header span {
  border-bottom: 1px solid #bbb;
}
.company-info .row {
  margin: 0 0 10px;
}
.company-info .expiry .form-control {
  width: 40%;
  display: inline-block;
}
.company-info .expiry span {
  width: 20%;
}
.company-info .title {
  float: left;
  margin-right: 10px;
}
.company-info .biling {
  text-align: right;
  margin-right: 20px;
}
.company-info .current-plan .subscription-plan {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  opacity: 0.5;
  border: 1px solid #e5e5e5;
  cursor: default;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
}
.company-info .current-plan .subscription-plan .subscription-plan-head {
  line-height: 35px;
  height: 35px;
  background: #5cb85c;
  text-align: center;
  font-size: 16px;
  color: #FFF;
}
.company-info .current-plan .subscription-plan .subscription-plan-detail {
  padding: 10px 15px;
}
.company-info .current-plan .subscription-plan .subscription-plan-detail ul {
  list-style: none;
}
.company-info .current-plan .subscription-plan .subscription-plan-detail ul li {
  font-size: 12px;
}
.company-info .current-plan .subscription-plan .subscription-plan-detail ul li:before {
  content: '- ';
}
.company-info .current-plan .subscription-plan .subscription-plan-footer {
  height: 32px;
  line-height: 32px;
  color: #FFF;
  text-align: center;
}
.company-info .current-plan .subscription-plan .subscription-plan-footer .btn {
  display: block;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none!important;
}
.company-info .current-plan .subscription-plan .subscription-plan-footer .btn:hover {
  border: none;
}
.company-info .current-plan .subscription-plan .subscription-plan-footer .btn-buy-more {
  float: right;
  width: auto;
  font-size: 11px;
  height: 32px;
  line-height: 20px;
}
.company-info .current-plan .subscription-plan.subscription-plan-enterprise .subscription-plan-head {
  background: #337ab7;
}
.company-info .current-plan .subscription-plan.active {
  opacity: 1;
}
.company-info .current-plan .subscription-plan.active .subscription-plan-footer {
  background: #337ab7;
}
.company-info .current-plan .subscription-plan:hover {
  opacity: 1;
}
.company-info .tab-current-planing {
  background-color: #fff;
}
.company-info .invite-member form.form-inline {
  margin-top: 25px;
}
.company-info .invite-member form.form-inline .row > div {
  padding: 0 5px;
}
.company-info .member-area h3.semi-bold {
  margin: 0;
  line-height: 45px;
}
.company-info .member-area .members-list {
  margin-top: 15px;
}
.company-info .member-area .members-list .list-group-item.isNew {
  opacity: 0.5;
}
.company-info .member-area .company-member-item .company-member-item-info {
  line-height: 1.6;
}
.company-info .member-area .company-member-item .company-member-item-info > input {
  margin: 0;
  vertical-align: middle;
}
.company-info .member-area .company-member-item .company-member-item-info .company-member-item-info-name {
  color: #48797b;
  font-size: 13px;
  font-weight: 500;
}
.company-info .member-area .company-member-item .company-user-role,
.company-info .member-area .company-member-item .company-user-cxrole {
  margin: 8px 0;
}
.company-info .member-area .company-member-item .company-user-role label,
.company-info .member-area .company-member-item .company-user-cxrole label {
  color: #48797b;
  font-size: 13px;
  font-weight: 500;
  text-align: right;
  min-width: 70px;
  margin: 0 5px 0 0;
}
.company-info .member-area .company-member-item .company-member-item-actions {
  text-align: right;
}
.company-info .member-area .company-member-item .company-member-item-actions .btn-group {
  margin-top: 10px;
}
.company-info #company-billing {
  margin-bottom: 100px;
}
.company-info #company-billing .btn-change {
  padding: 5px 10px;
}
.company-info #company-billing .btn-change i.fa {
  margin-right: 5px;
}
.company-info #company-billing .btn-save-change {
  padding: 5px 10px;
}
.company-info #company-billing .btn-save-change i.fa {
  margin-right: 5px;
}
.company-info #company-billing .btn-not-change {
  padding: 5px 10px;
  margin-right: 5px;
}
.company-info #company-billing .btn-not-change i.fa {
  margin-right: 5px;
}
.company-info #company-billing .company-information {
  margin-bottom: 30px;
}
.company-info #company-billing .company-information .title {
  font-weight: bold;
}
.company-info #company-billing .current-package {
  position: relative;
}
.company-info #company-billing .current-plan {
  margin-bottom: 20px;
}
.company-info #company-billing .current-plan.not-editable .plan-list {
  opacity: 0.8;
}
.company-info #company-billing .current-plan.not-editable .plan-list .plans {
  cursor: default;
}
.company-info #company-billing .current-plan.not-editable .plan-list .plans .plan-wraper:hover {
  box-shadow: 0 3px 5px 0 #C1C1C1;
}
.company-info #company-billing .current-plan.not-editable .plan-list .plans.not-active .plan-header {
  background-color: #666 !important;
  border-top: 1px solid #ccc !important;
  border-right: 1px solid #ccc !important;
  border-left: 1px solid #ccc !important;
  border-bottom: none !important;
}
.company-info #company-billing .current-plan.not-editable .change-result {
  display: none;
}
.company-info #company-billing .current-plan .plans {
  cursor: pointer;
}
.company-info #company-billing .current-plan .plans .plan-wraper {
  box-shadow: 0 3px 5px 0 #C1C1C1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.company-info #company-billing .current-plan .plans .plan-wraper:hover {
  box-shadow: 0 7px 10px 0 #BBBBBB;
}
.company-info #company-billing .current-plan .plans .plan-header {
  position: relative;
  padding: 10px 10px 10px 43px;
  height: 40px;
  color: #fff;
}
.company-info #company-billing .current-plan .plans .plan-header i.fa {
  position: absolute;
  top: 7px;
  left: 10px;
  color: #fff;
}
.company-info #company-billing .current-plan .plans .plan-header input[type="radio"] {
  display: none;
}
.company-info #company-billing .current-plan .plans .plan-body {
  padding: 10px 10px 15px;
  font-size: 12px;
  color: #7D7D7D;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: none;
}
.company-info #company-billing .current-plan .plans .plan-body ul {
  margin: 0;
  padding-left: 10px;
  list-style-position: inside;
}
.company-info #company-billing .current-plan .plans .plan-body ul li {
  padding: 3px 0;
}
.company-info #company-billing .current-plan .plans#plan-professional .plan-header {
  border-top: 1px solid #27ae60;
  border-right: 1px solid #27ae60;
  border-left: 1px solid #27ae60;
  border-bottom: none;
  background-color: #27ae60;
}
.company-info #company-billing .current-plan .plans#plan-enterprise .plan-header {
  border-top: 1px solid #2980b9;
  border-right: 1px solid #2980b9;
  border-left: 1px solid #2980b9;
  border-bottom: none;
  background-color: #2980b9;
}
.company-info #company-billing .current-plan .plans input[type="radio"] ~ i.fa.fa-circle-o {
  display: inline;
}
.company-info #company-billing .current-plan .plans input[type="radio"] ~ i.fa.fa-check-circle-o {
  display: none;
}
.company-info #company-billing .current-plan .plans input[type="radio"]:checked ~ i.fa.fa-circle-o {
  display: none;
}
.company-info #company-billing .current-plan .plans input[type="radio"]:checked ~ i.fa.fa-check-circle-o {
  display: inline;
}
.company-info #company-billing .current-users {
  margin-bottom: 20px;
}
.company-info #company-billing .current-users.not-editable .current-users-body {
  opacity: 0.8;
}
.company-info #company-billing .current-users.not-editable .change-result {
  display: none;
}
.company-info #company-billing .current-users .current-users-body input#usersCount {
  width: 65px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.company-info #company-billing .current-users .current-users-body span i {
  font-style: normal;
  font-weight: bold;
  margin-left: 3px;
  margin-right: 3px;
  border: 1px solid #BFBFBF;
  padding: 7px 11px;
  border-radius: 4px;
}
.company-info #company-billing .current-term.not-editable .term-list {
  opacity: 0.8;
}
.company-info #company-billing .current-term.not-editable .term-list .term {
  cursor: default;
}
.company-info #company-billing .current-term.not-editable .change-result {
  display: none;
}
.company-info #company-billing .change-result .alert {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: left;
}
.company-info #company-billing .change-result .btn-save-change {
  margin-top: 10px;
}
.company-info #company-billing .change-result .btn-not-change {
  margin-top: 10px;
  margin-right: 5px;
}
.company-info #company-users {
  position: relative;
}
.company-info #company-users-usage h3 {
  margin: 30px 0 15px;
}
.company-info #company-users-usage .company-user-stats .company-user-stats-item .company-user-stats-item-box {
  height: 100px;
  border-left: solid 1px #ddd;
}
.company-info #company-users-usage .company-user-stats .company-user-stats-item .company-user-stats-item-box .icon {
  display: block;
  line-height: 35px;
  font-size: 30px;
  text-align: center;
  color: #668e90;
}
.company-info #company-users-usage .company-user-stats .company-user-stats-item .company-user-stats-item-box label {
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  margin: 3px 0 10px 0;
  font-weight: normal;
  display: block;
  color: #8c8c8c;
  letter-spacing: 1px;
}
.company-info #company-users-usage .company-user-stats .company-user-stats-item .company-user-stats-item-box p {
  text-align: center;
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 500;
  color: #3f4646;
}
.company-info #company-users-usage .company-user-stats .company-user-stats-item .company-user-stats-item-box p span {
  font-size: 13px;
  color: #8c8c8c;
  font-weight: normal;
}
.company-info .company-disabled-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #FFF;
  background: rgba(255, 255, 255, 0.65);
}
.company-info .reseller-info {
  float: right;
  font-size: 12px;
  margin-top: 10px;
}
.company-info .reseller-info .icon-telephone,
.company-info .reseller-info .icon-at-sign {
  font-size: 15px;
  padding-left: 10px;
}
.company-info .reseller-info > span,
.company-info .reseller-info > i,
.company-info .reseller-info > a {
  vertical-align: middle;
  color: inherit;
}
.company-info table.table small {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.body-content-share .edit-input-comment {
  height: 25px;
  padding: 0px 12px;
  font-size: 11px;
  background: #e5e5e5;
  border: none;
  box-shadow: none;
  border-radius: 10px;
}
.body-content-share .edit-input-comment.not-post {
  background: #F6F6F6;
}
.body-content-share .change-content .btn {
  margin-right: -10px;
  font-size: 13px;
  color: #fff;
  background: #8ED067;
  width: 130px;
  margin-top: 20px;
}
.body-content-share .change-content .dropdown-menu {
  min-width: 70px;
  margin: -5px -28px;
  padding: 4px 0px 0px;
}
.filepicker-section-picker {
  margin-left: 8px;
}
#filepicker .breadcrumb {
  border-bottom: 1px solid #eee;
  margin: 0 1px 15px;
  padding: 0 0 5px;
}
#filepicker .list-group {
  margin-bottom: 0;
}
#filepicker .list-group .list-group-item .label {
  font-size: 10px;
  font-weight: normal;
  line-height: 15px;
  margin-left: 5px;
}
#filepicker .list-group .list-group-item.action-button {
  background: #f77d33;
  color: #FFF;
}
#filepicker .list-group .no-directory {
  font-size: 12px;
  color: #adadad;
}
/* Keyframes for animating video conference button when video conference is running */
@-moz-keyframes videoConferenceBgBlink {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: #d43f3a;
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes videoConferenceBgBlink {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: #d43f3a;
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes videoConferenceBgBlink {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: #d43f3a;
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
/* Keyframes for new shares */
@-moz-keyframes shareBgBlink {
  0% {
    background: rgba(247, 125, 51, 0);
  }
  50% {
    background: rgba(247, 125, 51, 0.2);
  }
  100% {
    background: rgba(247, 125, 51, 0);
  }
}
@-webkit-keyframes shareBgBlink {
  0% {
    background: rgba(247, 125, 51, 0);
  }
  50% {
    background: rgba(247, 125, 51, 0.2);
  }
  100% {
    background: rgba(247, 125, 51, 0);
  }
}
@keyframes shareBgBlink {
  0% {
    background: rgba(247, 125, 51, 0);
  }
  50% {
    background: rgba(247, 125, 51, 0.2);
  }
  100% {
    background: rgba(247, 125, 51, 0);
  }
}
#redirecting {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  color: #2980b9;
  font-family: 'Roboto';
  position: relative;
}
#redirecting .redirect-wrapper {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 500px;
  text-align: center;
}
#redirecting .redirect-wrapper .redirect-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
}
#redirecting .redirect-wrapper .redirect-icon:before {
  content: '';
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  animation: shadow .5s linear infinite;
}
#redirecting .redirect-wrapper .redirect-icon:after {
  content: '';
  width: 50px;
  height: 50px;
  background: #2980b9;
  animation: animate .5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes shadow {
  0%,
  100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}
#redirecting .redirect-wrapper .redirect-title {
  font-size: 50px;
  font-weight: 100;
  margin-top: 30px;
}
#redirecting .redirect-wrapper .redirect-btn {
  color: rgba(41, 128, 185, 0.5);
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#redirecting .redirect-wrapper .redirect-btn:hover {
  color: rgba(41, 128, 185, 0.8);
}
.chrome-link-dl {
  text-align: center;
}
.userImage {
  display: inline-block;
  border-radius: 50%;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.9px;
}
.userImage > img {
  border: none!important;
  border-radius: 50%;
}
.userImage.userImageSize_150 {
  width: 150px;
  height: 150px;
  line-height: 150px;
  font-size: 65px;
}
.userImage.userImageSize_100 {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 30px;
}
.userImage.userImageSize_48 {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
}
.userImage.userImageSize_38 {
  width: 38px;
  height: 38px;
  line-height: 40px;
}
.userImage.userImageSize_36 {
  width: 36px;
  height: 36px;
}
.userImage.userImageSize_36 span {
  line-height: 38px;
}
.userImage.userImageSize_26 {
  width: 26px;
  height: 26px;
  line-height: 27px;
  font-size: 11.5px;
  font-weight: 500;
}
.userImage.userImageBg_1 {
  background: #cc90e2;
}
.userImage.userImageBg_2 {
  background: #80d066;
}
.userImage.userImageBg_3 {
  background: #ecd074;
}
.userImage.userImageBg_4 {
  background: #6fb1e4;
}
.userImage.userImageBg_5 {
  background: #e57979;
}
.userImage.userImageBg_6 {
  background: #f98bae;
}
.userImage.userImageBg_7 {
  background: #73cdd0;
}
.userImage.userImageBg_8 {
  background: #fba76f;
}
.userImage.userImageFullname {
  text-transform: none;
  white-space: normal;
  line-height: 1.3em;
  overflow: hidden;
  position: relative;
}
.userImage.userImageFullname > span {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  transform: translateY(-50%);
}
.bot-user {
  color: #888888;
  font-size: 75%;
  font-weight: normal;
  font-style: italic;
}
.mention_name {
  font-size: 12px;
}
.mention_username {
  font-size: 12px;
  color: #999;
}
.mention_image {
  float: left;
  margin-right: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 20px;
  height: 20px;
}
.active .mention_username {
  color: #fff;
}
.atwho-view {
  z-index: 111100 !important;
}
.user-presence-status-dot {
  color: #c1c1c1;
}
.user-presence-status-dot.online {
  color: #83e740;
}
.user-presence-status-dot.dnd {
  color: #e80000;
}
.user-presence-status-dot.away {
  color: #ffb529;
}
/* summernote fixes */
.note-popover.popover {
  z-index: 100000;
}
.note-group-select-from-files {
  display: none;
}
.note-editor .modal {
  background: transparent;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.note-editor .modal .modal-dialog {
  margin: 0;
  width: 100%;
}
.note-editor .modal .modal-dialog .modal-title {
  padding: 0 25px;
  line-height: 60px;
}
.note-editor .modal .modal-dialog .modal-body .form-group {
  margin-left: 0;
  margin-right: 0;
}
/* ---------------- */
.modal .item-picker .breadcrumb-container {
  display: block !important;
}
.modal .item-picker .breadcrumb-container .pre-breadcrumb .inner-back {
  display: block;
}
.modal .item-picker .breadcrumb-container .pre-breadcrumb.main-root .inner-back {
  display: none;
}
.dualfactorauthentication-form-holder {
  display: block;
  margin-left: auto;
  margin-right: auto;
  float: none;
}
.dualfactorauthentication-form-holder legend {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
}
.dualfactorauthentication-form-holder input.phone-number,
.dualfactorauthentication-form-holder input.verification-code,
.dualfactorauthentication-form-holder input.phone-prefix {
  font-size: 25px!important;
  height: auto;
}
.dualfactorauthentication-form-holder input.phone-prefix {
  float: left;
  display: block;
  width: 90px;
  margin-right: 10px;
}
.dualfactorauthentication-form-holder input.phone-number {
  margin-left: 100px;
  width: auto;
}
.dualfactorauthentication-form-holder .verification-code {
  text-align: center;
}
.dualfactorauthentication-form-holder .btn-success {
  float: right;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option {
  padding: 0;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head {
  position: relative;
  cursor: pointer;
  height: 50px;
  padding-left: 70px;
  line-height: 60px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head .radio-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  text-align: center;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head .radio-btn i.icon {
  font-size: 20px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head .radio-btn i.icon.checked {
  display: none;
  color: #428bca;
  font-weight: bold;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head .radio-btn i.icon.un-checked {
  display: inline;
  color: #bbb;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head span.icon {
  position: absolute;
  left: 60px;
  top: 15px;
  font-size: 22px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head span.icon.icon-prohibited {
  font-size: 20px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-head span.title {
  position: absolute;
  top: 16px;
  left: 90px;
  line-height: 22px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-content {
  display: none;
  padding: 15px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-content .form-group {
  margin-top: 20px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-content .status-wrap {
  height: 50px;
  margin-top: 15px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-content .status-wrap .phone {
  padding: 10px 15px;
  background-color: #DBF7DC;
  border-radius: 3px;
  font-weight: bold;
  font-size: 14px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-content .status-wrap .icon {
  font-size: 20px;
  font-weight: bold;
  color: #388E3C;
  margin-left: 10px;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option .dualfactorauthentication-option-content .status-wrap .status {
  color: #388E3C;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option.open .dualfactorauthentication-option-head {
  border-bottom: 1px solid #ddd;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option.open .dualfactorauthentication-option-head i.icon.checked {
  display: inline;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option.open .dualfactorauthentication-option-head i.icon.un-checked {
  display: none;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-option.open .dualfactorauthentication-option-content {
  display: block;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-voice-form-holder legend {
  margin-bottom: 0;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-voice-form-holder .audiorecorder .btn-do-record {
  display: block;
  width: 100px;
  height: 100px;
  margin: 20px auto;
  background: #EEE;
  border-radius: 50%;
  line-height: 100px;
  color: #777;
  font-size: 35px;
  text-align: center;
  box-shadow: 0 0 5px #EEE;
  transition: all 0.5s ease;
}
.dualfactorauthentication-form-holder .dualfactorauthentication-voice-form-holder .audiorecorder .btn-do-record:hover,
.dualfactorauthentication-form-holder .dualfactorauthentication-voice-form-holder .audiorecorder .btn-do-record.active {
  color: #FFF;
  font-size: 40px;
  background: #e18200;
  transform: scale(1.1);
}
.dualfactorauthentication-form-holder .dualfactorauthentication-voice-form-holder .audiorecorder .record-timer {
  display: block;
  text-align: center;
  font-weight: bold;
}
.triangle-top-right-document {
  content: '';
  width: 0;
  height: 0;
  border-width: 18px;
  border-color: #9243A6;
  border-style: solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
}
.triangle-top-right-document i {
  position: absolute;
  right: -13px;
  top: -13px;
  color: #fff;
  font-size: 10px;
}
.document-container .no-item {
  font-size: 18px;
  color: #999;
  display: inline-block;
}
.tooltip {
  z-index: 99999;
}
.drag-handle {
  cursor: url(../../../assets/img/openhand.cur), default;
}
.drag-handle:hover {
  opacity: 80;
  filter: alpha(opacity=8000);
}
.drag-hint {
  z-index: 99999;
  padding: 5px 30px;
  font-weight: bold;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  opacity: 80;
  filter: alpha(opacity=8000);
}
.drag-active {
  opacity: 60;
  filter: alpha(opacity=6000);
}
.drag-hover {
  opacity: 90;
  filter: alpha(opacity=9000);
}
.ui-menu-item .username img {
  float: left;
  width: 16px;
  margin-right: 5px;
}
/* Extra Label Styles */
.label-grey {
  color: #838383;
  background: #F2F2F2;
  border: solid 1px #c9c9c9;
  font-weight: normal;
}
label.grey-label {
  font-weight: normal;
  color: #838383;
}
/* TIMELINE */
.timeline {
  margin: 60px 0;
  width: 100%;
  position: relative;
  font-style: normal;
}
.timeline .timeline-line {
  width: 100%;
  height: 2px;
  background: #5a5a5a;
  position: relative;
  overflow: visible;
}
.timeline .timeline-line .timeline-time-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  top: -6px;
  margin-left: -3px;
  background: #5a5a5a;
  border: solid 3px #fff;
  border-radius: 50%;
}
.timeline .timeline-line .timeline-time-dot:hover {
  transform: scale(1.2);
}
.timeline .timeline-line .timeline-time-dot span {
  position: absolute;
  font-size: 10px;
  top: 11px;
  transform: translateX(-20%);
  line-height: 10px!important;
  color: #838383;
}
.timeline .timeline-items {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.timeline .timeline-items li {
  position: absolute;
  width: 26px;
  top: -45px;
  bottom: -1px;
  margin-left: -12px;
  transform-origin: center bottom;
}
.timeline .timeline-items li:hover {
  transform: scale(1.2);
  z-index: 2;
}
.timeline .timeline-items li:hover:before,
.timeline .timeline-items li:hover:after {
  background: #3f3f3f;
}
.timeline .timeline-items li:before {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: auto;
  background: #d4d4d4;
  bottom: 0;
  left: 50%;
  top: 13px;
  z-index: 0;
  margin-left: -1px;
}
.timeline .timeline-items li:after {
  content: '';
  display: block;
  position: absolute;
  background: #5a5a5a;
  width: 8px;
  height: 8px;
  bottom: -4px;
  z-index: 0;
  left: 50%;
  margin-left: -4px;
  border-radius: 50%;
}
.timeline .timeline-items li .userImage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  box-shadow: 0 0 8px rgba(144, 144, 144, 0.7);
}
.timeline .timeline-items li .tooltip-content {
  font-size: 10px;
  width: 120px;
}
.timeline .timeline-items li:nth-child(2n) {
  bottom: -45px;
  top: 1px;
  transform-origin: center top;
}
.timeline .timeline-items li:nth-child(2n):before {
  top: 0;
  bottom: 13px;
}
.timeline .timeline-items li:nth-child(2n):after {
  bottom: auto;
  top: -4px;
}
.timeline .timeline-items li:nth-child(2n) .userImage {
  top: auto;
  bottom: 0;
}
/* -------- */
@media (max-width: 768px) {
  body:not(.prospect-view) .page-share .share-holder .share-header .header-nav-actions.header-nav-actions-large {
    display: none;
  }
  body:not(.prospect-view) .page-share .share-holder .share-header .header-nav-actions.header-nav-actions-large .btn-hide-actions {
    display: inline-block !important;
  }
  body:not(.prospect-view) .page-share .share-holder .share-header .header-nav-actions.header-nav-actions-tablet {
    display: block!important;
  }
  body:not(.prospect-view) .page-share .share-holder .share-header.open-action-menu .header-nav-actions.header-nav-actions-large {
    display: block!important;
  }
  body:not(.prospect-view) .page-share .share-holder .share-header.open-action-menu .header-nav-actions.header-nav-actions-tablet {
    display: none!important;
  }
  body:not(.prospect-view) .page-share .share-holder .share-header.open-action-menu .pre-share-title,
  body:not(.prospect-view) .page-share .share-holder .share-header.open-action-menu .share-title {
    display: none!important;
  }
  body.prospect-view .page-share .share-holder .share-header {
    display: none;
  }
  body.prospect-view .page-share .share-holder .main-holder {
    top: 0;
  }
  .create-frame .body .form-horizontal .control-label {
    padding: 0 15px;
    margin-top: 15px;
    width: 100%;
    text-align: left;
  }
  .create-frame .body .form-horizontal .form-group {
    margin-bottom: 0;
  }
  .create-frame .body .form-horizontal .form-group:first-child .control-label:first-child {
    margin-top: 0;
  }
  .create-frame .body .form-horizontal .form-group .allow-inviting .control-label {
    margin: 0;
    padding: 0;
    display: inline;
    width: auto;
    vertical-align: middle;
  }
  .create-frame .body .form-horizontal .form-group .allow-inviting .control-checkbox-fix {
    display: inline;
    padding: 0;
    vertical-align: middle;
  }
  .app-wrap .app-conference {
    left: -100%;
    width: 100%!important;
  }
  .app-wrap.show-conf .app-center {
    left: 100%!important;
    width: 100%!important;
  }
  .app-wrap.show-conf .chat-conf-swtich-btn {
    display: block;
  }
  .app-wrap.show-conf.conf-chat-active .app-conference {
    left: -100% !important;
  }
}
@media (max-width: 800px) {
  .share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container,
  .user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container {
    /*
                                        .message-options {
                                            position: static;
                                            width: 100%;
                                            margin-top: 0;
                                            display: block;
                                        }
                                        */
  }
  .share-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble,
  .user-activities .list-content .list-main .list-container ul.list-activity > li.item.post .activity-message .message-container .message-bubble {
    max-width: 80%;
  }
}
::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #b5b5b5;
}
.dark-scrollbar::-webkit-scrollbar {
  background-color: #252525;
  display: none;
}
.dark-scrollbar::-webkit-scrollbar-track {
  background-color: #252525;
}
.dark-scrollbar::-webkit-scrollbar-thumb {
  background-color: #191919;
}
.dark-scrollbar:hover::-webkit-scrollbar {
  display: block;
}
[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}
.DnD-active [draggable]:not([droppable]),
.DnD-active [draggable].DnD-dragged {
  opacity: 0.6!important;
}
.dragImage {
  position: absolute;
  left: -100%;
  top: 0;
}
.dragImage .icon {
  font-size: 20px;
}
.dragImage .badge {
  background: #fc2616;
  color: #fff;
}
.tablesorter th {
  background-position: center left;
  background-repeat: no-repeat;
}
.tablesorter th .tablesorter-header-inner {
  padding-left: 14px;
}
.tablesorter th.sorter-false {
  background: none !important;
}
.tablesorter .tablesorter-headerUnSorted {
  background-image: url('../../../assets/img/sort/unsorted.png');
}
.tablesorter .tablesorter-headerAsc {
  background-image: url('../../../assets/img/sort/asc.png');
}
.tablesorter .tablesorter-headerDesc {
  background-image: url('../../../assets/img/sort/desc.png');
}
.dropdown .openMode {
  display: none;
  background: #fff;
  border-radius: 6px 6px 0 0;
  border: solid 1px #cbcbcb;
  padding: 10px;
}
.dropdown .openMode .avatar {
  width: 36px;
  margin: 0 auto;
}
.dropdown .openMode .info {
  font-weight: bold;
  color: #000;
  margin-top: 5px;
  text-align: center;
}
.dropdown .openMode .info span {
  font-weight: normal;
  color: #838383;
  font-size: 80%;
}
.dropdown .openMode .bio {
  font-weight: normal;
  color: #838383;
  text-align: center;
  margin-top: 2px;
  font-size: 90%;
  line-height: 1.2;
}
.dropdown .closeMode {
  display: block;
}
.dropdown.open .openMode {
  display: block;
}
.dropdown.open .closeMode {
  display: none;
}
.dropdown.open .shareuser-row {
  height: 100px;
}
.box-date {
  color: #999;
}
.no-transition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
