.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  background: #008ed7;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}
/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.11.2 - 2015-03-17T04:08:46.478Z
 * License: MIT
 */
/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}
.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}
/* Select2 theme */
/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
  border-color: #D44950;
}
.select2-result-single {
  padding-left: 0;
}
.select2-locked > .select2-search-choice-close {
  display: none;
}
.select-locked > .ui-select-match-close {
  display: none;
}
body > .select2-container.open {
  z-index: 9999;
  /* The z-index Select2 applies to the select2-drop */
}
/* Selectize theme */
/* Helper class to show styles when focus */
.selectize-input.selectize-focus {
  border-color: #007FBB !important;
}
/* Fix input width for Selectize theme */
.selectize-control > .selectize-input > input {
  width: 100%;
}
/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}
/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
  border-color: #D44950;
}
/* Bootstrap theme */
/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}
.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}
/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px;
  /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ui-select-bootstrap > .ui-select-match > .btn {
  /* Instead of center because of .btn */
  text-align: left !important;
}
.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}
/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}
body > .ui-select-bootstrap.open {
  z-index: 1000;
  /* Standard Bootstrap dropdown z-index */
}
.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important;
  /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}
.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}
.ui-select-multiple .ui-select-match-item {
  position: relative;
}
.ui-select-multiple .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #008ed7;
}
.ui-select-multiple .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #008ed7;
}
.ui-select-bootstrap .ui-select-choices-row > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.ui-select-bootstrap .ui-select-choices-row > a:hover,
.ui-select-bootstrap .ui-select-choices-row > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.ui-select-bootstrap .ui-select-choices-row.active > a {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #008ed7;
}
.ui-select-bootstrap .ui-select-choices-row.disabled > a,
.ui-select-bootstrap .ui-select-choices-row.active.disabled > a {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
  display: none !important;
}
/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
  border-color: #D44950;
}
/*PADDING HELPERS*/
.p-top-bottom-xsmall {
  padding-top: 3px;
  padding-bottom: 3px;
}
.p-top-bottom-small {
  padding-top: 5px;
  padding-bottom: 5px;
}
.p-top-bottom-medium {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-top-bottom-large {
  padding-top: 15px;
  padding-bottom: 15px;
}
.p-right-small {
  padding-right: 5px;
}
.p-right-medium {
  padding-right: 10px;
}
.p-right-large {
  padding-right: 15px;
}
.p-left-small {
  padding-left: 5px;
}
.p-left-medium {
  padding-left: 10px;
}
.p-left-large {
  padding-left: 15px;
}
.p-top-small {
  padding-top: 5px;
}
.p-top-medium {
  padding-top: 10px;
}
.p-top-large {
  padding-top: 15px;
}
.p-bottom-small {
  padding-bottom: 5px;
}
.p-bottom-medium {
  padding-bottom: 10px;
}
.p-bottom-large {
  padding-bottom: 15px;
}
/*MARGIN HELPERS*/
.m-top-bottom-small {
  margin-top: 5px;
  margin-bottom: 5px;
}
.m-top-bottom-medium {
  margin-top: 10px;
  margin-bottom: 10px;
}
.m-top-bottom-large {
  margin-top: 15px;
  margin-bottom: 15px;
}
.m-top-bottom-xlarge {
  margin-top: 20px;
  margin-bottom: 20px;
}
.m-top-bottom-xxlarge {
  margin-top: 25px;
  margin-bottom: 25px;
}
.m-right-small {
  margin-right: 5px;
}
.m-right-medium {
  margin-right: 10px;
}
.m-right-large {
  margin-right: 15px;
}
.m-top-small {
  margin-top: 5px;
}
.m-top-medium {
  margin-top: 10px;
}
.m-top-large {
  margin-top: 15px;
}
/*TEXT HELPERS*/
.text-small {
  font-size: 10px;
}
.text-medium {
  font-size: 12px;
}
.text-large {
  font-size: 16px;
}
.text-xlarge {
  font-size: 20px;
}
.text-xxlarge {
  font-size: 24px;
}
.text-underline {
  text-decoration: underline !important;
}
.text-italic {
  font-style: italic;
}
/*BORDER HELPERS*/
.light-border-right {
  border-right: 1px solid #e4e4e4;
}
.light-border-bottom {
  border-bottom: 1px solid #e4e4e4;
}
.form-group.required .control-label:before,
label.required:before {
  content: "\f069";
  font-family: FontAwesome;
  color: #d9534f;
  padding-right: 5px;
}
/*ERROR, WARNINGS*/
.ng-dirty {
  border-color: #fc4c4c !important;
}
.custom-search-form .ng-dirty {
  border-color: #bdc3c7 !important;
}
.error {
  color: #d9534f;
}
.error:before {
  color: #d9534f;
  font-family: FontAwesome;
  content: "\f12a";
  padding-right: 5px;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #d9534f;
}
.has-error .form-control {
  border-color: #d9534f;
}
.has-error .form-control-feedback {
  color: #d9534f;
}
.ui-select-container .form-control-feedback {
  top: 0px !important;
  right: 13px !important;
}
.ui-select-container input {
  width: 100% !important;
}
.form-group.required.locked .control-label:before {
  color: #333 !important;
}
.no-dirty-border.ng-dirty {
  border-color: #bdc3c7 !important;
}
/*SUCCESS*/
.has-success .form-control {
  border-color: #5cb85c;
}
.has-success .form-control-feedback {
  color: #5cb85c;
}
.success {
  color: #5cb85c;
}
.filled .form-control {
  border-color: #1ABC9C !important;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #333;
}
/*LINK SPAN*/
.link-span:hover {
  color: #1ABC9C;
  cursor: pointer;
}
.link-span {
  color: #16a085;
  cursor: pointer;
}
a.pointer {
  cursor: pointer;
}
/*OVERRIDE FLAT UI*/
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  line-height: 20px;
}
.ui-select-container .btn-default {
  background-color: transparent !important;
}
p {
  margin: 0 0 10px;
  line-height: 20px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 25px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
.navbar-nav > li > a {
  padding: 15px 21px;
  font-weight: normal;
}
.navbar-nav > li > a:hover {
  background-color: #f1f1f1;
}
.input-group-btn .btn {
  color: #fff;
  background-color: #008ed7;
  border: none;
}
.input-group-btn:last-child > .btn {
  margin-left: 0px;
}
.form-control[disabled] {
  color: #999 !important;
}
.navbar .container,
.navbar .container-fluid {
  padding-right: 0px;
  padding-left: 0px;
}
.dropdown-menu,
.select2-drop {
  background-color: #fff;
}
.ui-select-container .btn-default {
  background-color: #FFF !important;
}
.ui-select-container .btn-default:hover {
  color: #333;
}
/*SELECT*/
.ui-select-choices.ui-select-choices-content {
  background-color: #fff;
  border: 1px solid #D2CACA;
}
/*UL*/
ul.no-style {
  list-style-type: none;
  padding-left: 0px;
}
/*Prio icons*/
.prio-high {
  color: #d9534f;
}
.prio-med {
  color: #ef7622;
}
.prio-low {
  color: #008ed7;
}
.prio-none {
  color: #5cb85c;
}
/*Rotate*/
.rot-45 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*Accordion*/
.panel-default > .panel-heading {
  background-color: #f9f9f9;
  border: none !important;
  cursor: pointer;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0px;
}
.panel-default {
  border: none;
}
#accordion table {
  width: 100%;
}
/*File input styling*/
.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.inputfile + label {
  max-width: 80%;
  /* 20px */
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  /* 10px 20px */
}
.no-js .inputfile + label {
  display: none;
}
.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
.inputfile + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}
.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  /* 4px */
  margin-right: 0.25em;
  /* 4px */
}
/* style 3 */
.inputfile-3 + label {
  color: #008ed7;
}
.inputfile-3:focus + label,
.inputfile-3.has-focus + label,
.inputfile-3 + label:hover {
  color: #006ca4;
}
/*BUTTONS*/
.btn-sl {
  color: #ffffff;
  background-color: #008ed7;
  border-color: #008ed7;
}
.btn-sl:focus,
.btn-sl.focus {
  color: #ffffff;
  background-color: #006ca4;
  border-color: #003a58;
}
.btn-sl:hover {
  color: #ffffff;
  background-color: #006ca4;
  border-color: #00669a;
}
.btn-sl:active,
.btn-sl.active,
.open > .dropdown-toggle.btn-sl {
  color: #ffffff;
  background-color: #006ca4;
  border-color: #00669a;
}
.btn-sl:active:hover,
.btn-sl.active:hover,
.open > .dropdown-toggle.btn-sl:hover,
.btn-sl:active:focus,
.btn-sl.active:focus,
.open > .dropdown-toggle.btn-sl:focus,
.btn-sl:active.focus,
.btn-sl.active.focus,
.open > .dropdown-toggle.btn-sl.focus {
  color: #ffffff;
  background-color: #005580;
  border-color: #003a58;
}
.btn-sl:active,
.btn-sl.active,
.open > .dropdown-toggle.btn-sl {
  background-image: none;
}
.btn-sl.disabled,
.btn-sl[disabled],
fieldset[disabled] .btn-sl,
.btn-sl.disabled:hover,
.btn-sl[disabled]:hover,
fieldset[disabled] .btn-sl:hover,
.btn-sl.disabled:focus,
.btn-sl[disabled]:focus,
fieldset[disabled] .btn-sl:focus,
.btn-sl.disabled.focus,
.btn-sl[disabled].focus,
fieldset[disabled] .btn-sl.focus,
.btn-sl.disabled:active,
.btn-sl[disabled]:active,
fieldset[disabled] .btn-sl:active,
.btn-sl.disabled.active,
.btn-sl[disabled].active,
fieldset[disabled] .btn-sl.active {
  background-color: #008ed7;
  border-color: #008ed7;
}
.btn-sl .badge {
  color: #008ed7;
  background-color: #ffffff;
}
.btn-dark {
  color: #ffffff;
  background-color: #555555;
  border-color: #555555;
}
.btn-dark:focus,
.btn-dark.focus {
  color: #ffffff;
  background-color: #3b3b3b;
  border-color: #151515;
}
.btn-dark:hover {
  color: #ffffff;
  background-color: #3b3b3b;
  border-color: #363636;
}
.btn-dark:active,
.btn-dark.active,
.open > .dropdown-toggle.btn-dark {
  color: #ffffff;
  background-color: #3b3b3b;
  border-color: #363636;
}
.btn-dark:active:hover,
.btn-dark.active:hover,
.open > .dropdown-toggle.btn-dark:hover,
.btn-dark:active:focus,
.btn-dark.active:focus,
.open > .dropdown-toggle.btn-dark:focus,
.btn-dark:active.focus,
.btn-dark.active.focus,
.open > .dropdown-toggle.btn-dark.focus {
  color: #ffffff;
  background-color: #2a2a2a;
  border-color: #151515;
}
.btn-dark:active,
.btn-dark.active,
.open > .dropdown-toggle.btn-dark {
  background-image: none;
}
.btn-dark.disabled,
.btn-dark[disabled],
fieldset[disabled] .btn-dark,
.btn-dark.disabled:hover,
.btn-dark[disabled]:hover,
fieldset[disabled] .btn-dark:hover,
.btn-dark.disabled:focus,
.btn-dark[disabled]:focus,
fieldset[disabled] .btn-dark:focus,
.btn-dark.disabled.focus,
.btn-dark[disabled].focus,
fieldset[disabled] .btn-dark.focus,
.btn-dark.disabled:active,
.btn-dark[disabled]:active,
fieldset[disabled] .btn-dark:active,
.btn-dark.disabled.active,
.btn-dark[disabled].active,
fieldset[disabled] .btn-dark.active {
  background-color: #555555;
  border-color: #555555;
}
.btn-dark .badge {
  color: #555555;
  background-color: #ffffff;
}
.btn-green {
  color: #ffffff;
  background-color: #1abc9c;
  border-color: #1abc9c;
}
.btn-green:focus,
.btn-green.focus {
  color: #ffffff;
  background-color: #148f77;
  border-color: #0b4c3f;
}
.btn-green:hover {
  color: #ffffff;
  background-color: #148f77;
  border-color: #13866f;
}
.btn-green:active,
.btn-green.active,
.open > .dropdown-toggle.btn-green {
  color: #ffffff;
  background-color: #148f77;
  border-color: #13866f;
}
.btn-green:active:hover,
.btn-green.active:hover,
.open > .dropdown-toggle.btn-green:hover,
.btn-green:active:focus,
.btn-green.active:focus,
.open > .dropdown-toggle.btn-green:focus,
.btn-green:active.focus,
.btn-green.active.focus,
.open > .dropdown-toggle.btn-green.focus {
  color: #ffffff;
  background-color: #0f705d;
  border-color: #0b4c3f;
}
.btn-green:active,
.btn-green.active,
.open > .dropdown-toggle.btn-green {
  background-image: none;
}
.btn-green.disabled,
.btn-green[disabled],
fieldset[disabled] .btn-green,
.btn-green.disabled:hover,
.btn-green[disabled]:hover,
fieldset[disabled] .btn-green:hover,
.btn-green.disabled:focus,
.btn-green[disabled]:focus,
fieldset[disabled] .btn-green:focus,
.btn-green.disabled.focus,
.btn-green[disabled].focus,
fieldset[disabled] .btn-green.focus,
.btn-green.disabled:active,
.btn-green[disabled]:active,
fieldset[disabled] .btn-green:active,
.btn-green.disabled.active,
.btn-green[disabled].active,
fieldset[disabled] .btn-green.active {
  background-color: #1abc9c;
  border-color: #1abc9c;
}
.btn-green .badge {
  color: #1abc9c;
  background-color: #ffffff;
}
.btn-sharp {
  border-radius: 0;
}
.well {
  border: none !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f9f9f9;
}
.well.border-left-dark {
  border-left: 3px solid #555 !important;
}
.navbar-collapse {
  background-color: #FFF;
  border-bottom: 1px solid #e6e6e6;
}
.navbar-toggle .icon-bar {
  background-color: #222;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  min-height: 90px;
}
.navbar {
  min-height: 90px;
}
navbar .container,
.navbar .container-fluid {
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 768px) {
  .navbar-header {
    border-bottom: 1px solid #e6e6e6;
    background-color: #FFF;
    padding: 11px;
  }
  .nav navbar-nav {
    margin-right: 0px;
  }
  .navbar > .container ,
  .navbar > .container-fluid  {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .navbar-nav {
    margin: 0px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: auto;
    max-width: 1400px;
    min-width: 1170px;
  }
  .navbar-header {
    padding: 11px;
    background-color: #FFF;
  }
  .navbar-nav > li {
    min-height: 90px;
    width: 150px;
    background-color: #f9f9f9;
    text-align: center;
  }
  .navbar-nav > li a {
    line-height: 60px;
    color: #333;
  }
  .navbar-nav > li a.active {
    background-color: #ececec;
  }
  .navbar-collapse {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
  }
}
@media (min-width: 769px) {
  .navbar-header {
    padding: 11px;
    background-color: #FFF;
  }
  .navbar-nav > li {
    min-height: 90px;
    width: 150px;
    background-color: #f9f9f9;
    text-align: center;
  }
  .navbar-nav > li a {
    line-height: 60px;
    color: #333;
  }
  .navbar-nav > li a.active {
    background-color: #ececec;
  }
  .navbar-collapse {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
  }
}
.navbar .container > .navbar-header,
.navbar .container-fluid > .navbar-header,
.navbar .container > .navbar-collapse,
.navbar .container-fluid > .navbar-collapse {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media (max-width: 991px) {
  .navbar-header {
    float: none;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-collapse.collapse {
    display: none!important;
  }
  .navbar-nav {
    float: none!important;
    margin: 7.5px -15px;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-text {
    float: none;
    margin: 15px 0;
  }
  /* since 3.1.0 */
  .navbar-collapse.collapse.in {
    display: block!important;
  }
  .collapsing {
    overflow: hidden!important;
  }
  .navbar-collapse.collapse.in {
    display: block!important;
  }
}
/*!
   * Bootstrap Datetime Picker v4.17.49
   * Copyright 2015-2020 Jonathan Peterson
   * Licensed under MIT (https://github.com/Eonasdan/bootstrap-datetimepicker/blob/master/LICENSE)
   */
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #cccccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #cccccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 480px) {
  body {
    font-size: 12px !important;
  }
}
@media (max-width: 768px) {
  img.device-layout {
    max-height: 45px;
  }
  #orderView-web {
    display: none !important;
  }
  #footer-web,
  #start-web,
  .isWeb {
    display: none !important;
  }
  #listWeb {
    display: none !important;
  }
  #createIncident-web {
    display: none !important;
  }
  #workOrderDetailsDevice {
    display: block !important;
  }
  .f-item {
    text-align: center;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  body {
    padding-top: 125px;
  }
  #orderView-device {
    display: none !important;
  }
  #workOrderDetailsDevice {
    display: none !important;
  }
  #footer-device,
  #start-device,
  .isDevice {
    display: none !important;
  }
  #listDevice {
    display: none !important;
  }
  #createIncident-device {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) and (min-width: 768px) {
  body {
    padding-top: 125px;
  }
  .statusMap.smaller {
    font-size: 14px !important;
  }
  #workOrderDetailsWeb {
    display: none !important;
  }
  #workOrderDetailsDevice {
    display: block !important;
  }
}
@media (width: 768px) {
  #footer-web,
  #start-web,
  .isWeb {
    display: none !important;
  }
  #footer-device,
  #start-device,
  .isDevice {
    display: inline !important;
  }
  #listWeb {
    display: none !important;
  }
  #listDevice {
    display: inline !important;
  }
  #createIncident-web {
    display: none !important;
  }
  #createIncident-device {
    display: inline !important;
  }
  #orderView-web {
    display: none !important;
  }
  #orderView-device {
    display: inline !important;
  }
}
#workOrderList .alert,
#incidentList .alert {
  margin-bottom: 0px !important;
}
#workOrderList table,
#incidentList table {
  width: 100%;
}
#workOrderList table tr.hover,
#incidentList table tr.hover {
  cursor: pointer;
}
#workOrderList table tr.hover td,
#incidentList table tr.hover td {
  padding-bottom: 8px;
  padding-top: 8px;
}
#workOrderList table th a,
#incidentList table th a {
  color: #333;
}
#workOrderList tr.hover:nth-child(even),
#incidentList tr.hover:nth-child(even),
#workOrderList #listDevice div.hover:nth-of-type(even),
#incidentList #listDevice div.hover:nth-of-type(even) {
  background: #f9f9f9;
}
#list-device tr {
  height: 64px;
}
input,
select,
textarea {
  max-width: none !important;
}
ul.statusMap {
  margin-left: 0px !important;
  padding-left: 0px !important;
}
ul.statusMap li {
  display: inline-block;
  position: relative;
  margin: 0 2.5em;
}
ul.statusMap div.circle {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  text-align: center;
  line-height: 3em;
  border-radius: 1.5em;
  background: #008ed7;
  color: white;
  left: 50%;
  margin-left: -1.25em;
  border: 1px solid #008ed7;
}
ul.statusMap li div.circle:before {
  content: '';
  position: absolute;
  top: 1.3em;
  left: -9.6em;
  width: 12em;
  height: .1em;
  background: #008ed7;
  z-index: -1;
}
ul.statusMap li:first-child div.circle::before {
  display: none;
}
ul.statusMap li:first-child {
  margin-left: 0!important;
}
ul.statusMap li.active .circle {
  background: #008ed7;
}
ul.statusMap .active ~ li div.circle {
  border: 1px solid #008ed7;
  background: #fff;
}
ul.statusMap .active ~ div.circle::before {
  background: #008ed7;
}
#statusMapVer ul.statusMap li {
  display: inline !important;
}
#statusMapVer ul.statusMap li .circle:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -2.4em;
  border-left: 1px solid #008ed7;
  height: 100%;
  width: 1px;
}
#statusMapVer input,
#statusMapVer select,
#statusMapVer textarea {
  max-width: none !important;
}
.nav-tabs {
  border: none !important;
}
.nav-tabs a {
  margin-right: 0px;
  border-radius: 0px;
  border: none !important;
  background-color: transparent;
}
.nav-tabs li {
  border: solid 1px #ececec;
  margin-right: 5px;
}
.nav-tabs li.active {
  background-color: #ececec;
}
.nav-tabs li.active > a,
.nav-tabs .nav-tabs > li.active > a:hover,
.nav-tabs .nav-tabs > li.active > a:focus,
.nav-tabs .nav-tabs > li.active > a,
.nav-tabs .nav-tabs > li.active > a:hover,
.nav-tabs .nav-tabs > li.active > a:focus {
  background-color: transparent !important;
}
#listDevice .nav-tabs li {
  float: none;
}
.panel-group {
  overflow-wrap: break-word;
  -ms-word-break: break-word;
  word-break: break-word;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.panel-title a {
  display: block;
}
@media (max-width: 991px) {
  .header-logo {
    max-width: 75%;
  }
}
input::-ms-clear {
  display: none;
}
.calendar-picker input[readonly],
.calendar-picker input[readonly="readonly"] {
  opacity: 1;
  background-color: #fff;
  border-color: #bdc3c7;
  color: #34495e;
}
.calendar-picker .calendar-selector {
  cursor: pointer;
}
.dropdown-menu,
.select2-drop {
  z-index: 1500;
}
.date-cell {
  min-width: 95px;
}
.truncate-text {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
th {
  position: relative;
  vertical-align: bottom;
  padding-right: 13px;
}
.fa-caret-up,
.fa-caret-down {
  position: absolute;
  bottom: 10px;
  right: 0;
}
.ui-select-allow-clear {
  overflow: hidden;
  max-width: 80%;
}
