/* animation duration depends on the width of the viewport */
@media screen and (max-width: 768px) {
  #topbar-banner-container #banner.active {
    animation-duration: 25s !important;
  }
}
html,
body {
  height: 100%;
}
/* width */
::-webkit-scrollbar {
  width: 0.7vw;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #DDDDDD;
  border-radius: 0.4vw;
  border: solid 0.2vw #fff;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}
body {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  color: #444444;
  /*  Disable text selection https://stackoverflow.com/questions/11237936/mobile-web-disable-long-touch-taphold-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;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* info banner */
#topbar-banner-container {
  overflow: hidden;
  position: relative;
  top: 0.8em;
  height: 2em;
}
#topbar-banner-container #banner {
  display: inline-block;
  white-space: nowrap;
  font-size: 1em;
  color: #333;
}
#topbar-banner-container #banner.active {
  position: absolute;
  left: 30%;
  /* Start the animation outside the container */
  animation: moveBanner 50s linear infinite;
}
@keyframes moveBanner {
  0% {
    left: 30%;
    /* Start the text outside the container on the right side */
  }
  100% {
    left: -100%;
    /* Move the text outside the container on the left side */
  }
}
#topbar-banner-container::-webkit-scrollbar {
  width: 0px;
  /* Remove scrollbar space */
  height: 0px;
  /* Remove scrollbar space */
  background: transparent;
}
th div.headerWithSearch {
  display: inline-grid;
}
th div.headerWithSearch .search-input {
  display: none;
}
th div.headerWithSearch .search-input.active {
  display: block;
}
/*modals zindexing*/
.modal.fade {
  z-index: 20002;
}
.modal.fade .modal-dialog {
  z-index: inherit;
}
/* login page */
.container-full {
  height: 98%;
}
#login-page,
.step1,
.step2,
.step3 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20002;
  background-color: #DDDDDD;
  overflow: auto;
}
.password-score {
  width: 100%;
  margin: 0px;
}
.logo-div {
  text-align: right;
}
.logo-img {
  margin-right: -8px;
  width: 60%;
}
.login-icon {
  padding-left: 0;
}
.mdi-eye-outline,
.show-impersonate,
.hide-impersonate {
  position: absolute;
  right: 5px;
  top: 7px;
  z-index: 10;
  cursor: pointer;
}
#login-page .forgot-like-link {
  display: table;
}
#login-page .forgot-like-link .mdi {
  font-size: 1.5em;
  margin-right: 0.5em;
}
#login-page .forgot-like-link a {
  display: table-cell;
  vertical-align: middle;
  color: #fc4a00;
}
#login-page .legalinfo {
  text-align: center;
  color: #666666;
}
#login-page .legalinfo a {
  font-size: 0.8em;
  color: #666666;
}
#login-page .news-container {
  background-color: #272b34;
}
#login-page .login-form-container {
  padding: 2em 3em;
}
@media (min-width: 768px) {
  .logo-div {
    margin: 0 0 10% 10%;
  }
  .container-full {
    display: table;
    width: 95%;
  }
  .col-full {
    display: table;
    height: 100%;
  }
  .row-middle {
    vertical-align: middle;
    display: table-cell;
  }
  .button-responsive-place {
    float: right;
  }
}
@media (max-width: 767px) {
  .well-moblie {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  .row-middle {
    height: 100%;
  }
  .button-responsive-place {
    width: 100%;
  }
  .button-responsive-place button {
    width: 100%;
  }
}
.noty_buttons {
  display: flex;
  flex-direction: row-reverse;
  padding: 0;
  background-color: inherit !important;
  border-top: none !important;
}
.noty_buttons .bttn {
  border-radius: 0.5vw;
  margin: 0.5vw;
  background-color: #fc4a00;
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* application page */
body {
  background: #e9e9e9;
  margin: 0;
}
#loading-page {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200000;
  background: url("images/loading.gif") no-repeat center center rgba(128, 128, 128, 0.8);
}
.module-loading {
  bottom: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10000;
  background: url("images/loading.gif") no-repeat center center rgba(128, 128, 128, 0.8);
  display: none;
}
.card-header {
  min-height: 36px;
  border-bottom: 0px solid rgba(0, 0, 0, 0.22);
  width: 100%;
  cursor: pointer;
  z-index: 2001;
  position: relative;
}
.card-body {
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 48px;
  width: 100%;
  position: absolute;
  top: 0;
}
.fullscreen-mode .card-body {
  padding-top: 0px;
}
@media (max-width: 767px) {
  .card-body {
    padding-top: 0px;
  }
}
.heap-highlight {
  background-color: #fad3c4 !important;
}
.heap-highlight-completed {
  background-color: #c5a599 !important;
}
.heap-completed {
  background-color: #d3d3d3 !important;
}
.header-title {
  padding-left: 0px;
  line-height: 34px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-title .header-icon {
  width: 30px;
  text-align: center;
  vertical-align: middle;
  font-size: 1.5em;
}
.header-title .header-name {
  font-size: 1.5em;
  vertical-align: middle;
  padding-left: 4px;
}
.header-buttons {
  float: right;
  font-size: 1.5em;
}
.header-buttons div {
  padding-right: 15px;
  padding-left: 8px;
  float: left;
}
.header-buttons a {
  float: left;
  color: #333333;
}
.header-buttons a:hover {
  text-decoration: none;
}
.btn-module-search {
  display: none;
}
.cell {
  background-color: #FFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: 0.3s;
  margin: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.content {
  bottom: 0;
  overflow-y: auto;
  position: absolute;
  top: 48px;
  width: 100%;
}
#map {
  width: 100%;
  position: absolute;
  top: 45px;
  bottom: 0;
}
.map-with-search {
  top: 95px !important;
}
@media (max-width: 767px) {
  #map {
    top: 0px;
  }
  .map-with-search {
    top: 50px !important;
  }
}
.gm-style-mtc {
  width: 100px !important;
}
#fullscreenView {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FFF;
  display: none;
}
#topbar {
  position: fixed;
  height: 50px;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 20001;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
#topbar button {
  padding: 0;
  margin: 0;
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  #topbar {
    top: 0px;
    background: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  }
}
#btn-toggle-sidebar {
  width: 40px;
  height: 40px;
  margin: 5px 5px 5px 0;
  padding-left: 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  float: left;
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
#btn-toggle-sidebar i {
  position: absolute;
  font-size: 24px;
  line-height: 40px;
  z-index: 2002;
}
#btn-toggle-sidebar #topbar-company-icon {
  margin-left: 32px;
}
@media (max-width: 767px) {
  #btn-toggle-sidebar {
    width: 0px;
  }
}
#topbar-company-name {
  float: left;
  margin: 2px 2px 2px 28px;
  color: #fc4a00;
  font-size: 2em;
  width: 280px;
  font-family: 'Trebuchet MS', 'Open Sans', sans-serif;
}
#topbar-module-title {
  float: left;
  font-size: 1.2em;
  display: none;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #topbar-module-title {
    margin-left: 32px;
  }
}
#topbar-actionButton-container {
  display: none;
  float: right;
}
#topbar-actionButton-container .topbar-actionButton {
  float: left;
}
#topbar-actionButton-container .topbar-actionButton button {
  border: none;
}
#topbar-directAccess-dropdown,
#topbar-dashboard-btn {
  display: none;
  float: right;
}
#topbar-directAccess-dropdown button,
#topbar-dashboard-btn button {
  border: none;
}
.fullscreen-mode #topbar-module-title {
  display: block;
}
.fullscreen-mode #topbar-company-name {
  display: none;
}
.fullscreen-mode #topbar-company-icon {
  display: none;
}
.fullscreen-mode #topbar-actionButton-container {
  display: block;
}
.fullscreen-mode #topbar-directAccess-dropdown {
  display: block;
}
.fullscreen-mode #topbar-dashboard-btn {
  display: block;
}
.fullscreen-mode #fullscreenView {
  display: block;
}
.fullscreen-mode #dashboard {
  display: none;
}
.fullscreen-mode .module .cell {
  margin: 0;
}
.fullscreen-mode .module .cell .card-header {
  visibility: hidden;
}
.fullscreen-mode .module .cell .content {
  top: 0;
}
.fullscreen-mode #sidebar {
  height: calc(100vh - 50px);
}
.fullscreen-mode #map {
  top: 0;
}
#sidebar {
  position: fixed;
  top: 50px;
  height: calc(100% - 50px);
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  z-index: 20000;
  overflow-y: auto;
  overflow-x: hidden;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .bar-header {
  padding: 4px 10px 2px 16px;
  font-weight: bold;
  font-size: 1em;
  background-color: #EEEEEE;
  color: #555;
}
#sidebar #account-bar .btn-sidebar {
  line-height: 60px !important;
}
#sidebar #account-bar .btn-sidebar .btn-sidebar-icon {
  background: #bbb;
  color: #fff;
  border-radius: 20px;
  width: 34px;
  height: 34px;
  line-height: 34px;
}
.toggle-sidebar-default > i,
.toggle-sidebar-opened > i {
  left: 12px;
}
.toggle-sidebar-closed > i {
  left: 12px;
}
.toogle-sidebar-iconView > i {
  left: 12px;
}
@media (max-width: 767px) {
  #topbar-company-name {
    display: none;
  }
  #topbar-company-icon {
    display: none;
  }
  .fullscreen-mode #topbar-dashboard-btn {
    display: none;
  }
  .no-scroll-body {
    overflow: hidden;
    position: fixed;
  }
  #sidebar {
    top: 53px;
    bottom: 0px;
    background: transparent;
  }
  #sidebar .bar-header {
    padding: 4px 10px 2px 8px;
  }
  .sidebar-default,
  .sidebar-closed {
    left: -175px;
    width: 175px;
    -webkit-transition: background 100ms ease, left 300ms ease 100ms, width 0s ease 100ms;
    transition: background 100ms ease, left 300ms ease 100ms, width 0s ease 100ms;
  }
  .sidebar-default .sidebarContent,
  .sidebar-closed .sidebarContent {
    position: absolute;
    overflow-y: auto;
    top: 0;
    bottom: 0;
    width: 175px;
    background-color: #ffffff;
  }
  .sidebar-opened {
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    -webkit-transition: background 100ms ease 300ms, left 300ms;
    transition: background 100ms ease 300ms, left 300ms;
    box-shadow: none !important;
  }
  .module-container-default,
  .module-container-sidebar-closed {
    left: 0;
  }
  .module-container-sidebar-opened {
    left: 0;
  }
}
.not-match label {
  color: #ff0000 !important;
}
.not-match div input {
  box-shadow: #e51c23 0px -2px 0px 0px inset !important;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #sidebar {
    width: 50px;
  }
  #sidebar::-webkit-scrollbar {
    width: 6px;
  }
  #sidebar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
  }
  .sidebar-default,
  .sidebar-closed {
    left: 0;
  }
  .sidebar-default .sidebarContent,
  .sidebar-closed .sidebarContent {
    width: 50px;
  }
  .sidebar-default .sidebarContent .btn-sidebar-name,
  .sidebar-closed .sidebarContent .btn-sidebar-name {
    display: none;
  }
  .sidebar-default .bar-header,
  .sidebar-closed .bar-header {
    padding: 4px 10px 2px 8px !important;
  }
  .sidebar-opened .btn-sidebar {
    padding: 0px 16px !important;
  }
  .sidebar-closed {
    left: -50px;
  }
  .btn-sidebar {
    padding: 0px !important;
    text-align: center;
  }
  .sidebar-opened {
    left: 0;
  }
  .sidebar-opened .sidebarContent {
    width: 175px;
  }
  .sidebar-opened .sidebarContent .btn-sidebar-name {
    display: inline;
  }
  .sidebar-opened .btn-sidebar {
    text-align: left;
  }
  .module-container-default,
  .module-container-sidebar-opened {
    left: 50px;
  }
  .module-container-sidebar-closed {
    left: 0;
  }
}
@media (min-width: 1200px) {
  .sidebar-default,
  .sidebar-opened {
    width: 175px;
  }
  .sidebar-iconView {
    width: 50px;
  }
  .sidebar-iconView::-webkit-scrollbar {
    width: 6px;
  }
  .sidebar-iconView::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
  }
  .sidebar-default,
  .sidebar-opened {
    left: 0;
  }
  .sidebar-default .sidebarContent,
  .sidebar-opened .sidebarContent {
    width: 175px;
  }
  .sidebar-closed {
    left: -175px;
  }
  .sidebar-iconView {
    left: 0;
  }
  .sidebar-iconView .sidebarContent {
    width: 50px;
  }
  .sidebar-iconView .sidebarContent .btn-sidebar-name {
    display: none;
  }
  .sidebar-iconView .bar-header {
    padding: 4px 10px 2px 8px !important;
  }
  .sidebar-iconView .btn-sidebar {
    padding: 0 8px;
    text-align: center;
  }
  .module-container-default,
  .module-container-sidebar-opened {
    left: 175px;
    overflow: auto;
  }
  .module-container-sidebar-closed {
    left: 0;
  }
  .module-container-sidebar-iconView {
    left: 50px;
  }
}
#clicked-card {
  background: yellow;
}
.btn-sidebar {
  width: 100%;
  padding: 0 16px;
  cursor: pointer;
  color: #333333;
  line-height: 45px !important;
  /*border-bottom: 1px solid #EEEEEE;*/
}
.btn-sidebar-active {
  background-color: #fc4a00;
  color: #ffffff;
}
.btn-sidebar-icon {
  text-align: center;
  vertical-align: middle;
  width: 30px;
  font-size: 1.5em;
}
.btn-sidebar-name {
  font-size: 1.2em;
  margin-left: 12px;
  vertical-align: middle;
}
ul.context-menu-list.context-menu-root span {
  line-height: 2em;
}
ul.context-menu-list.context-menu-root {
  z-index: 30000 !important;
}
#module-container {
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
}
#dashboard {
  margin: 8px;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
}
.resGroupEditor {
  z-index: 20101;
}
.resGroupEditor > .modal-dialog {
  z-index: 1040;
}
.resGroupEditor .modal-content .row {
  margin: 10px;
}
.resGroupEditor .modal-content .item-list {
  background-color: #e9e9e9;
  height: 200px;
  padding: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.resGroupEditor .modal-content .item-list div {
  overflow: hidden;
  text-overflow: ellipsis;
}
.resGroupEditor .modal-content .item-list div:hover {
  background-color: white;
}
.resGroupEditor .modal-content #err-msg {
  color: red;
}
.modal-dialog-custom-width {
  width: 1250px;
}
#contextMenu {
  cursor: pointer;
}
.tl-check {
  color: #41B23B;
}
.tl-active {
  background-color: #337ab7;
  color: #ffffff;
}
.ResourceListItem {
  border-bottom: 1px solid #eeeeee;
  overflow: hidden;
}
.ResourceListItem .resource-header {
  height: 36px;
}
.ResourceListItem .resource-header:hover {
  cursor: pointer;
}
.ResourceListItem .resource-header .resource-title {
  float: left;
  padding: 8px;
  width: 88%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ResourceListItem .resource-header .resource-title .resource-check-icon {
  color: #41B23B;
}
.ResourceListItem .resource-header .resource-title img {
  vertical-align: text-bottom;
  height: 20px;
}
.ResourceListItem .resource-details {
  color: #777777;
  padding: 0 8px 0 35px;
  font-size: 8pt;
}
.ResourceListItem .resource-wo-chart {
  cursor: pointer;
  margin: 0 5%;
  background: #eeeeee;
  white-space: nowrap;
  display: flex;
  width: 90%;
}
.ResourceListItem .resource-wo-chart .item {
  cursor: pointer;
  height: 30px;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  text-align: center;
  margin: 0;
}
.ResourceListItem .resource-wo-chart .item.new {
  background: #0d47a1;
}
.ResourceListItem .resource-wo-chart .item.assigned {
  background: #2196f3;
}
.ResourceListItem .resource-wo-chart .item.started {
  background: #ff9d00;
}
.ResourceListItem .resource-wo-chart .item.paused {
  background: #f01e19;
}
.ResourceListItem .resource-wo-chart .item.completed {
  background: #219600;
}
.ResourceListItem .resource-wo-chart .item.delayed {
  background: #de00ff;
}
.ResourceGroupItem {
  border: 1px solid #cccccc;
  margin-top: 1px;
}
.ResourceGroupItem .resourceGroup-title {
  cursor: pointer;
}
.ResourceGroupItem .resourceGroup-title .resource-check-icon {
  color: #41B23B;
}
.ResourceGroupItem .resourceGroup-title .resourceGroup-name {
  background-color: #cccccc;
  color: #222222;
  font-weight: bold;
  padding: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lazyResourceList-checkAll {
  border: 1px solid #cccccc;
  cursor: pointer;
  padding: 8px;
}
.lazyResourceList-checkAll .check-icon {
  color: #41B23B;
}
#module-resources-wochart-checkbox {
  margin: 0 2%;
}
#module-resources-search-bar,
.filter-form-container {
  margin-bottom: 10px;
  margin-left: 2%;
  margin-top: 10px;
  position: relative;
  width: 96%;
}
#module-resources-search-bar input,
.filter-form-container input {
  background: url("images/search_24.png") no-repeat scroll left center #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  height: 30px;
  padding-left: 25px;
  width: 100%;
}
#module-resources-search-bar .search-bar-clear-icon,
.filter-form-container .search-bar-clear-icon {
  color: #717171;
  cursor: pointer;
  display: none;
  line-height: 30px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 36px;
}
.search-filter {
  background-color: #FFFFFF;
  display: none;
  height: 50px;
  overflow: hidden;
  position: relative;
  z-index: 2000;
}
#module-resources-list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 1px !important;
}
.show-more-node {
  padding: 5px;
  text-align: center;
}
.ui-dialog-titlebar-close {
  display: none;
}
.btn-time-filter {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  border: 1px solid #ddd;
  margin-bottom: -1px;
  padding: 10px;
}
.btn-time-filter .time-filter-label {
  width: 37%;
}
.btn-time-filter .time-filter-content {
  width: 63%;
}
.btn-time-filter .time-filter-content .jq-slider-container {
  margin: 5px 5px 10px;
}
.btn-time-filter .time-filter-content .slider-value {
  float: right;
  margin-right: 5px;
}
.btn-time-filter .time-filter-content .jq-datepicker {
  clear: both;
  float: right;
  font-size: 75%;
  padding-right: 3px;
}
.btn-time-filter .time-filter-content .datepicker-value {
  float: right;
  clear: both;
}
.ui-resizable-handle {
  background-image: none;
  font-size: 1.3em !important;
  width: 25px !important;
  height: 25px !important;
  bottom: 2px !important;
  right: 2px !important;
  z-index: 2000 !important;
}
.selected {
  background: #FE4A02 !important;
  color: #FFFFFF !important;
}
.selected-text {
  color: #FE4A02 !important;
}
.disabled-text {
  color: #dddddd !important;
}
.onBtnClick {
  background: #f7875b !important;
  color: #FFFFFF !important;
}
.jq-slider {
  align-self: center;
  width: calc(63% - 5px);
}
.jq-slider .ui-state-hover,
.jq-slider .ui-state-focus {
  background: #E2E2E2;
  border: 1px solid #CACACA;
  outline: none;
}
/* from to --------------------------------*/
.fromToHeader {
  padding-bottom: 10px;
  width: 100%;
}
.fromToLabel {
  float: left;
}
.fromToToggle {
  cursor: pointer;
  float: right;
}
.jq-timepicker {
  float: right;
  height: 25px;
  margin-right: 3px;
  width: 89px;
}
/* ---------------------------- responsive container for tl-module-view ---------------------------- */
.responsive-container {
  width: 100%;
  overflow: auto;
  max-height: 100%;
}
.responsive-container .responsive-item {
  float: left;
  border: 1px solid #dddddd;
}
.responsive-container .responsive-item .btn-view-filter {
  width: 100%;
  border-bottom: 1px solid #dddddd;
  padding: 10px;
  overflow: hidden;
}
.responsive-container .responsive-item .btn-view-filter .list-view-filter {
  margin-left: 20px;
  padding: 10px;
  overflow: hidden;
}
.responsive-container .responsive-item .btn-view-filter .list-view-filter .label-view-filter {
  float: left;
}
.responsive-container .responsive-item .btn-view-filter .list-view-filter .switch-view-filter {
  float: left;
  margin: 0px 10px 0 0;
}
@media (max-width: 767px) {
  .responsive-container .responsive-item {
    float: none;
  }
}
/* ---------------------------- responsive container for tl-module-view ---------------------------- */
/* ---------------------------- onoff Switch ---------------------------- */
.onoffswitch {
  position: relative;
  width: 36px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.onoffswitch-checkbox {
  display: none;
}
.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  height: 14px;
  padding: 0;
  line-height: 14px;
  border: 0px solid #FFFFFF;
  border-radius: 20px;
  background-color: #B0AFAF;
}
.onoffswitch-label:before {
  content: "";
  display: block;
  width: 20px;
  margin: -3px;
  background: #F1F1F1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  border-radius: 20px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
  background-color: #FFA27A;
}
.onoffswitch-checkbox:checked + .onoffswitch-label,
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  border-color: #FFA27A;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  right: 0px;
  background-color: #FE4A02;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
}
/* ---------------------------- onoff Switch ---------------------------- */
/* ---------------------------- btn-toggle ---------------------------- */
.btn-toggle {
  width: 100%;
  border-bottom: 1px solid #dddddd;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
}
.btn-toggle .label-view-filter {
  float: left;
}
/* ---------------------------- btn-toggle ---------------------------- */
.marker-cluster span {
  font-size: 16px;
}
.resource-marker-label {
  position: absolute;
  text-align: center;
  color: black;
  line-height: 14px;
  background: #ffff80;
  box-shadow: #c0c0c0 3px 3px 3px;
  border-radius: 3px;
  font: 10px Verdana, Arial, Helvetica, sans-serif;
  font-weight: normal;
  padding: 0px 3px 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  opacity: 1 !important;
}
.resource-marker-label.old-position {
  background: #c0c0c0;
}
.resource-marker-label .stationaryString {
  font-weight: normal;
  font-size: 9px;
}
.resource-marker-label .timestamp {
  font-weight: normal;
  font-size: 9px;
}
@media (max-width: 767px) {
  .resource-marker-label {
    font: 12px Verdana, Arial, Helvetica, sans-serif;
  }
  .resource-marker-label .stationaryString {
    font-size: 11px;
  }
}
.trip-stop-label {
  background: #a2e18e;
}
.geodata-marker-label {
  text-align: center;
  color: black;
  line-height: 14px;
  background: #abdbf1;
  box-shadow: 3px 3px 3px #c0c0c0;
  border-radius: 3px;
  background-clip: padding-box;
  font: 10px Verdana, Arial, Helvetica, sans-serif;
  font-weight: normal;
  padding: 0px 3px 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  opacity: 1 !important;
}
.wo-marker-label {
  text-align: center;
  color: black;
  line-height: 14px;
  background: #abdbf1;
  box-shadow: 3px 3px 3px #c0c0c0;
  border-radius: 3px;
  background-clip: padding-box;
  font: 10px Verdana, Arial, Helvetica, sans-serif;
  font-weight: normal;
  padding: 0px 3px 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  opacity: 1 !important;
}
.wo-marker-label-new {
  background: royalblue;
  color: white;
}
.wo-marker-label-assigned {
  background: aqua;
}
.wo-marker-label-working {
  background: orange;
}
.wo-marker-label-waiting {
  background: red;
  color: white;
}
.wo-marker-label-completed {
  background: forestgreen;
  color: white;
}
.wo-marker-label-delayed {
  background: #de00ff;
  color: white;
}
@media (max-width: 767px) {
  .geodata-marker-label {
    font: 12px Verdana, Arial, Helvetica, sans-serif;
  }
}
.cluster {
  padding: 10px 10px 10px 10px;
}
.cluster div {
  display: inline-flex;
  padding-bottom: 10%;
  width: 100%;
}
.cluster div span {
  font-weight: bold;
  width: 75%;
}
.cluster div a {
  font-weight: normal;
}
.cluster-scroll {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.cluster-scroll a {
  color: #fc4a00;
}
.cluster-scroll a span {
  color: black;
  font-weight: normal;
}
.cluster-label {
  max-height: 300px;
}
.cluster-label tr td {
  font-weight: normal;
}
.cluster-label tr td .rdt {
  display: inline-flex;
}
.popup td {
  padding: 0 3px;
}
.popup td .div-pie {
  display: inline-block;
}
.leaflet-control-incompleted-positions {
  background: #ffffff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  opacity: 0.8;
}
/*-------------------------------- backgrid ------------------------------------------*/
/*
  backgrid
  http://github.com/wyuenho/backgrid

  Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
  Licensed under the MIT license.
*/
.backgrid-container {
  position: relative;
  display: block;
  width: 100%;
  height: 465px;
  padding: 0;
  overflow: auto;
  border: 0;
}
.backgrid {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.backgrid th,
.backgrid td {
  display: none;
  height: 20px;
  max-width: 250px;
  padding: 4px 5px;
  overflow: hidden;
  line-height: 20px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: 1px solid #DDD;
}
.backgrid th.renderable,
.backgrid td.renderable {
  display: table-cell;
}
.backgrid th {
  font-weight: bold;
  text-align: center;
}
.backgrid th.sortable a {
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.backgrid thead th {
  vertical-align: bottom;
  background-color: #f9f9f9;
}
.backgrid thead th a {
  display: block;
}
.backgrid.backgrid-striped tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.backgrid tbody tr.empty {
  font-style: italic;
  color: gray;
}
.backgrid tbody tr.empty td {
  display: table-cell;
  text-align: center;
}
.backgrid td.editor {
  padding: 0;
}
.backgrid td.editor,
.backgrid tbody tr:nth-child(odd) td.editor {
  background-color: rgba(82, 168, 236, 0.1);
  outline: 1px solid rgba(82, 168, 236, 0.8);
  outline-offset: -1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition-duration: 200ms;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-property: width, outline, background-color;
  -moz-transition-property: width, outline, background-color;
  -o-transition-property: width, outline, background-color;
  transition-property: width, outline, background-color;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.backgrid td.editor input[type=text] {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 5px;
  margin: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.backgrid td.editor input[type=text]::-ms-clear {
  display: none;
}
.backgrid td.error,
.backgrid tbody tr:nth-child(odd) td.error {
  background-color: rgba(255, 210, 77, 0.1);
  outline: 1px solid #ffd24d;
}
.backgrid td.editor :focus,
.backgrid th.editor :focus {
  outline: 0;
}
.backgrid .sort-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  border: 0;
  content: "";
}
.backgrid .ascending .sort-caret {
  vertical-align: baseline;
  border-top: none;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #000000;
  border-left: 4px solid transparent;
}
.backgrid .descending .sort-caret {
  vertical-align: super;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-bottom: none;
  border-left: 4px solid transparent;
}
.backgrid .string-cell,
.backgrid .uri-cell,
.backgrid .email-cell,
.backgrid .string-cell.editor input[type=text],
.backgrid .uri-cell.editor input[type=text],
.backgrid .email-cell.editor input[type=text] {
  text-align: left;
}
.backgrid .date-cell,
.backgrid .time-cell,
.backgrid .datetime-cell,
.backgrid .number-cell,
.backgrid .integer-cell,
.backgrid .percent-cell,
.backgrid .date-cell.editor input[type=text],
.backgrid .time-cell.editor input[type=text],
.backgrid .datetime-cell.editor input[type=text],
.backgrid .number-cell.editor input[type=text],
.backgrid .integer-cell.editor input[type=text],
.backgrid .percent-cell.editor input[type=text] {
  text-align: right;
}
.backgrid .boolean-cell,
.backgrid .boolean-cell.editor input[type=checkbox] {
  text-align: center;
}
.backgrid .select-cell {
  text-align: center;
}
.backgrid .select-cell.editor {
  padding: 0;
}
.backgrid .select-cell.editor select {
  display: block;
  width: 100%;
  height: 28px;
  padding: 4px 5px;
  margin: 0;
  line-height: 28px;
  background-color: white;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.backgrid .select-cell.editor select[multiple] {
  height: auto;
}
.backgrid .select-cell.editor :focus {
  border: 0;
  outline: 0;
}
.backgrid .select-cell.editor select::-moz-focus-inner,
.backgrid .select-cell.editor optgroup::-moz-focus-inner,
.backgrid .select-cell.editor option::-moz-focus-inner,
.backgrid .select-cell.editor select::-o-focus-inner,
.backgrid .select-cell.editor optgroup::-o-focus-inner,
.backgrid .select-cell.editor option::-o-focus-inner {
  border: 0;
}
/* ----------------------------------------------------- status grid --------------------*/
.online {
  color: #00FF00;
}
.not-online {
  color: #AAAAAA;
}
.yellow-online {
  color: yellow;
}
.red-online {
  color: red;
}
/* ----------------------------------------------------- status grid --------------------*/
.GenericCell {
  text-align: center !important;
}
.GenericLeftCell {
  text-align: left !important;
}
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  padding: 10px;
}
.grid-button {
  cursor: pointer;
  color: #717171;
}
.grid-button.ready {
  cursor: pointer;
  color: #717171;
}
.grid-button.downloading {
  cursor: default;
  color: #00FF00;
}
.grid-button.failed {
  cursor: pointer;
  color: #FF0000;
}
.vertical-stack {
  float: left;
  padding: 2px;
  width: 100%;
}
.grid-header-button {
  float: right;
  margin-top: -25px;
}
.loading-icon {
  background: url("images/loading-se.gif") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  margin-left: 12px;
  padding-left: 17px;
}
/* --------------------------------------------------- editor -------------------------*/
.monitor-editor-parameter {
  width: 280px;
  margin: 10px;
  padding: 10px;
}
.monitor-editor-parameter input,
.monitor-editor-parameter select,
.monitor-editor-parameter checkbox {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  margin: 0;
}
.monitor-editor-label {
  float: left;
  width: 100px;
}
.monitor-editor-input {
  float: left;
}
.monitor-editor-input input {
  width: 160px;
}
.monitor-editor-select {
  float: left;
}
.monitor-editor-select select {
  width: 160px;
}
.monitor-editor-date {
  float: left;
}
.monitor-editor-date input {
  margin-right: 10px;
  width: 90px;
}
.monitor-editor-time {
  float: left;
  width: 60px;
}
.monitor-editor-time input {
  width: 60px;
}
.monitor-editor-checkbar {
  float: left;
  width: 160px;
}
.floatingDatePicker {
  position: absolute;
  font-size: 75%;
}
.topbar-replaced-title {
  margin-top: 7px;
  font-size: 0.85em !important;
  color: #333;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: 0.3s;
}
.card:hover {
  /* On mouse-over, add a deeper shadow */
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
#checkall::after {
  width: 12px;
  height: 12px;
  margin-right: 0px;
  border: 1px solid #333;
  border-radius: 3px;
}
/* ----------------------------------------------------- module customers -----------------------*/
#customers .modal .modal-content {
  height: 550px;
  overflow: scroll;
}
#customers .modal .modal-body {
  display: flex;
}
/* ----------------------------------------------------- import template ---------------------------*/
.import-csv-upload {
  display: none;
  margin-bottom: 0;
}
.import-csv-upload .d-none {
  display: none !important;
}
.import-csv-upload .choosed-file-name {
  margin: 0 1em;
}
.import-csv-upload .progress-bar {
  width: 98%;
  height: 34px;
  margin: 0 1%;
  background-color: #fc4a00;
  font-size: 11pt;
  padding-top: 5px;
}
/* ----------------------------------------------------- module work orders -----------------------*/
#work-orders .modal a.btn {
  padding: 0px 8px 0px 8px;
  font-size: 1.5em;
  margin: 0px 0px 0px -28px;
}
#module-work-orders a.dIcon {
  font-size: 2em;
}
#woEditorModal > .no-padding-container {
  padding: 0 !important;
}
.row.dangerousContainer .margin-left-off {
  margin-left: 0 !important;
}
.control-label-left {
  text-align: left;
  margin-bottom: 0;
  padding-top: 7px;
}
/* ----------------------------------------------------- module haufwerke -----------------------*/
#haufwerke .row {
  margin-top: 16px;
}
#haufwerke .card {
  height: 178px;
  min-width: 130px;
  margin: 8px;
  border: none;
}
#haufwerke .card .chart {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  height: 30px;
  display: flex;
  flex-direction: row;
  background: #eeeeee;
  border-radius: 4px 4px 0px 4px;
}
#haufwerke .card .chart .item {
  height: 100%;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
}
#haufwerke .card .chart .item.new {
  background: #0d47a1;
}
#haufwerke .card .chart .item.assigned {
  background: #2196f3;
}
#haufwerke .card .chart .item.started {
  background: #ff9d00;
}
#haufwerke .card .chart .item.paused {
  background: #f01e19;
}
#haufwerke .card .chart .item.completed {
  background: #219600;
}
#haufwerke .card .chart .item.delayed {
  background: #de00ff;
}
#haufwerke .card .chart.invalid::before {
  position: absolute;
  font-family: FontAwesome;
  content: "\f071";
  opacity: 0.4;
  width: 100%;
  height: 100%;
  background-color: yellow;
  color: black;
}
#haufwerke .card .chart.invalid:hover::before {
  content: "\f021";
  opacity: 0.8;
}
#haufwerke .card .title {
  padding: 0px 8px 0px 8px;
}
#haufwerke .modal a.btn {
  padding: 0px 8px 0px 8px;
  font-size: 1.5em;
  margin: 0px 0px 0px -28px;
}
#haufwerkeEditor .modal-body {
  max-height: 75vh;
  overflow-y: auto;
}
.input-with-picker {
  float: left !important;
  padding-left: 10px !important;
}
.WoHeaderRow {
  position: relative;
}
.WoHeaderRow .WoRemoveButton {
  font-size: 20px;
  position: absolute;
  right: 5px;
  top: 0;
  padding: 3px 3px;
  border-radius: 50%;
  background-color: #fc4a00;
  color: white;
}
#haufwerke-table .chart {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  height: 25px;
  display: flex;
  flex-direction: row;
  background: #eeeeee;
  border-radius: 4px 4px 4px 4px;
  margin-bottom: 8px;
}
#haufwerke-table .chart .item {
  height: 100%;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}
#haufwerke-table .chart .item.new {
  background: #0d47a1;
}
#haufwerke-table .chart .item.assigned {
  background: #2196f3;
}
#haufwerke-table .chart .item.started {
  background: #ff9d00;
}
#haufwerke-table .chart .item.paused {
  background: #f01e19;
}
#haufwerke-table .chart .item.completed {
  background: #219600;
}
#haufwerke-table .chart .item.delayed {
  background: #de00ff;
}
#haufwerke-table .chart.invalid::before {
  position: absolute;
  font-family: FontAwesome;
  content: "\f071";
  opacity: 0.4;
  width: 100%;
  height: 100%;
  background-color: yellow;
  color: black;
}
#haufwerke-table .chart.invalid:hover::before {
  content: "\f021";
  opacity: 0.8;
}
.haufwerke-szl .card {
  height: 110px !important;
}
.haufwerke-szl .card .chart {
  height: 50px !important;
}
.haufwerke-szl .card .chart .item {
  padding-top: 12px !important;
}
.haufwerke-szl .card .title {
  padding: 8px 8px 0px 8px !important;
}
.haufwerke-szl .card .title h5 {
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #haufwerke .card {
    min-width: 166px;
  }
}
@media (max-width: 767px) {
  #haufwerke .card {
    margin: 16px;
    min-width: 170px;
  }
}
/* ----------------report------------------ */
#reportModal .progressContainer {
  padding: 10px;
}
#reportModal .progressContainer .progress {
  height: 20px;
}
#reportModal .progressContainer .progress-bar {
  background-color: #fc4a00;
  text-align: center !important;
}
#reportModal .progressContainer .progress-bar:last-child:before {
  background-color: #DCDCDC;
}
/* ----------------------------------------------------- editor -----------------------*/
.editor-parameter {
  width: 380px;
  margin: 10px;
  padding: 10px;
}
.editor-parameter input,
.editor-parameter select,
.editor-parameter checkbox {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  margin: 0;
}
.editor-label {
  float: left;
  width: 170px;
}
.editor-input {
  float: left;
}
.editor-input input {
  width: 160px;
}
.ui-autocomplete {
  max-height: 100px;
  max-width: 404px;
  overflow-y: auto;
  overflow-x: hidden;
}
#_GMapContainer {
  position: static !important;
}
.topbar-replaced-title {
  margin-top: 7px;
  font-size: 0.85em !important;
  color: #333;
}
.sparklineBarTooltip {
  width: 50px;
  height: 65px;
  /*50*/
}
.sparklinePieTooltip {
  width: 90px;
  height: 40px;
}
.fleetActivityMoving {
  background: #6BA4E5;
  color: #FFFFFF;
}
.fleetActivityIdle {
  background: #FFD583;
}
.fleetActivityParking {
  background: #EDEAEA;
}
.min-width-5 {
  min-width: 5% !important;
}
.check-trace.checked {
  color: #f01e19;
}
.no-padding {
  padding-bottom: 0px !important;
}
.select-text {
  user-select: text;
}
.geo {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}
/* ----------------------------------------------------- Navigation bar design ----------------------------------------------------- */
/* https://stackoverflow.com/questions/18599778/decreasing-height-of-bootstrap-3-0-navbar */
.navbar-xs .navbar-default .navbar {
  min-height: 28px;
  height: 28px;
}
.navbar-xs .navbar-default .navbar .navbar-brand {
  padding: 0px 12px;
  font-size: 16px;
  line-height: 28px;
}
.navbar-xs .navbar-default .navbar .navbar-nav > li > a {
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: 28px;
}
.navbar-sm .navbar-default .navbar {
  min-height: 48px;
  height: 48px;
  margin-bottom: 0px;
}
.navbar-sm .navbar-default .navbar .navbar-brand {
  padding: 0px 0px 0px 12px;
  font-size: 1.5em;
  line-height: 48px;
  height: 48px;
}
.navbar-sm .navbar-default .navbar .navbar-brand:before {
  margin-right: 8px;
}
.navbar-sm .navbar-default .navbar .nav > li > a {
  padding: 8px 15px 5px;
}
.grid-stack-item .navbar {
  box-shadow: none;
}
.grid-stack-item .navbar-default {
  border-radius: 5px 5px 0px 0px;
}
.grid-stack-item .navbar-brand {
  color: inherit;
}
.grid-stack-item .navbar-header > ul > li > a {
  color: inherit;
  font-size: 1.5em;
}
.grid-stack-item .navbar-header > ul > li > .hide-on-dashboard {
  display: none;
}
.grid-stack-item .action-menu > ul > li > .hide-on-dashboard {
  display: none;
}
#topbar .navbar {
  box-shadow: none;
}
#topbar .navbar-default {
  border-radius: 5px 5px 0px 0px;
}
#topbar .navbar-brand {
  color: inherit;
  padding: 1px 12px;
}
#topbar .navbar-header > ul > li > a {
  color: inherit;
  font-size: 1.5em;
}
.fullscreen-mode #topbar .navbar {
  visibility: visible;
  margin-left: 32px;
}
.fullscreen-mode #topbar .navbar-header > ul > li > .hide-on-fullscreen {
  display: none;
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}
/* ------------------------------------ MY NAVBAR ------------------------------------ */
.res-filter-icon.active {
  color: #41B23B !important;
}
.unassign-filter-icon.active {
  color: #0d47a1 !important;
}
.completed-filter-icon.active {
  color: #219600 !important;
}
.module-resources-wochart-checkbox.active {
  color: #f01e19 !important;
}
.n-filter-icon.active {
  color: #f01e19 !important;
}
.navbar > .nav-container-fluid {
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
}
.navbar > .nav-container-fluid .navbar-header.pull-left {
  display: flex;
  overflow: hidden;
}
.navbar > .nav-container-fluid .navbar-header.pull-left a.action_back {
  margin-left: -0.2em;
  z-index: 1000;
  opacity: 0.9;
}
.navbar > .nav-container-fluid .navbar-header.pull-left .navbar-label {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5em;
  line-height: 48px;
  white-space: nowrap;
  padding-right: 10px;
}
.navbar > .nav-container-fluid .navbar-header.pull-right {
  display: flex;
  flex-direction: row-reverse;
  flex: 0 0 auto;
}
/* ------------------------------------ END MY NAVBAR ------------------------------------ */
/* ------------------------------ map error style ---------------------------------------- */
/* Error message container */
.error-message {
  display: flex;
  align-items: center;
  background-color: #272b34;
  color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* Error icon */
.error-icon img {
  width: 6em;
  height: 6em;
  margin-right: 15px;
  vertical-align: middle;
}
/* Error content */
.error-content p {
  margin: 0;
  font-size: 16px;
}
/* Retry button styling */
.retry-button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #fc4a00;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.retry-button:hover {
  background-color: #e65c00;
}
/* ------------------------------ END OF map error style --------------------------------- */
/* ------------------------------------ hacks -------------------------------------------- */
/* MAP */
/*  */
.gmnoprint {
  opacity: 1 !important;
  zoom: 0.85 !important;
}
.gm-style-mtc div {
  font-size: 12px !important;
}
.gm-fullscreen-control,
.gm-control-active {
  height: 35px !important;
}
@media (max-width: 767px) {
  .gm-style-mtc div {
    height: 30px !important;
  }
}
.gm-style-iw {
  padding: 2px 5px !important;
}
.gm-style-iw .popup {
  display: flex;
  padding: 10px !important;
}
.gm-style-iw #minibubble {
  font-size: 10px !important;
}
.gm-style-iw.no-close-btn {
  z-index: 1 !important;
}
.gm-style-iw.no-close-btn .gm-ui-hover-effect {
  display: none !important;
}
.gm-style-iw-t::after {
  pointer-events: none !important;
}
.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}
/* #21079 */
.gm-style-iw-chr {
  height: 0px !important;
}
.gm-style-iw-chr button:focus {
  outline: 0 !important;
}
.gm-style-iw-chr span {
  margin-top: -7px !important;
  margin-left: 25px !important;
}
/* ----------------------------------------------------- gridstack resize corner -----------------------*/
.grid-stack > .grid-stack-item > .ui-resizable-se {
  margin: 0px -2px -2px 0px;
}
/* ------------------------------ http://cdn.datatables.net/scroller/1.4.3/css/scroller.bootstrap.min.css -----------------------*/
div.DTS div.dataTables_scrollBody {
  background: none;
}
.ui-autocomplete {
  z-index: 20101;
}
/* ------------------------------ Bootstrap Paper Theme -----------------------*/
.btn-primary {
  background-color: #fc4a00;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-color: #fc4a00;
}
.btn-primary:focus {
  background-color: #fc4a00;
}
.btn-primary:hover,
.btn-primary:active:hover {
  background-color: #fc4a00;
}
.btn-link-primary {
  color: #fc4a00;
}
.pagination > li > a,
.pagination > li > span {
  color: #333333;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #fc4a00;
  border-color: #fc4a00;
}
.dtp {
  z-index: 20101;
}
.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
  background: #fc4a00;
}
.dtp div.dtp-date,
.dtp div.dtp-time {
  background: #fc4a00;
}
.dtp .p10 > a {
  color: #ffffff;
}
#modalMessages .modal-dialog {
  width: 75vw;
}
#modalMessages .modal-body {
  height: 80vh;
  overflow-y: auto;
  background: white;
  padding: 0;
}
#modalMessages .modal-body .messages-container {
  height: 100%;
}
#modalMessages .modal-body .messages-container #tl-messages {
  height: 100%;
}
#modalMessages .navbar {
  box-shadow: none;
}
#modalMessages .navbar-default {
  border-radius: 5px 5px 0px 0px;
}
#modalMessages .navbar-brand {
  color: inherit;
}
#modalMessages .navbar-header > ul > li > a {
  color: inherit;
  font-size: 1.5em;
}
#modalMessages .navbar-header > ul > li > .hide-on-dashboard {
  display: none;
}
#modalMessages .action-menu > ul > li > .hide-on-dashboard {
  display: none;
}
.modal-header .icon-size {
  font-size: 50px;
  padding: 10px;
}
.modal-header .text-color {
  color: #bbb;
}
.modal-dialog-scrollable {
  height: 80vh;
}
.modal-dialog-scrollable .modal-header {
  height: 60px;
}
.modal-dialog-scrollable .modal-body {
  height: calc(100% - 120px);
  overflow-y: scroll;
}
.modal-dialog-scrollable .modal-footer {
  height: 60px;
  padding: 1%;
}
.modal-backdrop {
  width: 100% !important;
  height: 100% !important;
  position: fixed !important;
  z-index: unset;
}
.warning {
  color: #E8E84E;
  font-size: 20pt;
  left: 5px;
  position: relative;
  top: 7px;
}
.dragElement {
  color: red;
  -webkit-user-drag: element;
  -webkit-user-select: none;
}
.hwInfo {
  line-height: normal;
  padding: 0 8px 0 8px;
  min-height: 70px;
}
.action-bar {
  float: right;
}
.textHw {
  font-size: 10px;
  font-weight: bold;
}
.action-button {
  padding: 0 8px 0 8px;
  font-size: 14px;
  cursor: pointer;
  color: #fc4a00;
}
/* ------------------------------ DataTables Theme -----------------------*/
table.dataTable {
  margin-top: 0px !important;
}
.filterSelectorIcon {
  float: left;
  padding: 3px;
  margin-top: -5px;
  font-size: 1.3em;
  color: red;
}
.filterSelectorLabel {
  font-size: 14px;
}
/*----------------------------- map on geodata editor ----------------------------------*/
#geoMap-container {
  position: relative;
  width: 90%;
  margin: 2% 5% 0;
  padding: 20%;
}
#geoMap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.map-popup-title {
  font-weight: bold;
  padding-bottom: 3px;
}
.dots {
  width: 0px;
  float: left;
  font-size: 1.5em;
  padding-top: 6px;
}
/* #14156: */
.ui-autocomplete {
  max-height: 200px;
}
/* #12490:15: */
#sidebar::-webkit-scrollbar {
  width: 0;
}
.trip-padding {
  vertical-align: middle !important;
  text-align: center;
}
#table_trips td {
  padding: 0px !important;
}
.trip {
  width: 100%;
  /*border-top: 1px #ddd solid;*/
}
.trip-item {
  width: 100%;
  border-top: 1px #ddd solid;
}
.trip-item-MOTION-MOVING {
  background-color: #a6c3e6 !important;
}
.trip-item-MOTION-STATIONARY {
  background-color: #ffd583 !important;
}
.trip-item-PARKING-STATIONARY {
  background-color: #cccccc !important;
  vertical-align: middle !important;
  text-align: center;
}
.trip-highlighted {
  background-color: #870000 !important;
  color: #FFFFFF;
}
.trip-selected {
  background-color: #870000 !important;
  color: #FFFFFF;
}
.widthControl {
  width: 2% !important;
}
/* #14672: transport work orders */
.hwInfo.transport {
  min-height: 55px;
}
.card.transport {
  height: 162px !important;
}
.cell-button {
  cursor: pointer;
}
.mdi-cell-button {
  font-size: 16pt;
  margin-top: -7px;
}
/* #14894: */
.geodata-red {
  background: #FF0000;
  color: white;
}
.geodata-blue {
  background: #0000FF;
  color: white;
}
.geodata-orange {
  background: #FFA500;
  color: white;
}
.geodata-green {
  background: #008000;
  color: white;
}
.geodata-yellow {
  background: #FFFF00;
  color: 004080;
}
.geodata-violet {
  background: #EE82EE;
  color: white;
}
.geodata-grey {
  background: #808080;
  color: white;
}
.geodata-black {
  background: #000000;
  color: white;
}
.geodata-idleTripItem {
  background: #FFD583;
  color: 004080;
}
.w25 {
  width: 25% !important;
}
.padding-off {
  padding: 0px;
}
.resize-on-vertical {
  resize: vertical;
}
.margin-end-off {
  margin-block-end: auto;
}
option:disabled {
  color: lightgrey;
}
input[type="checkbox"]:checked:after {
  background-color: #fc4a00;
  border-color: #fc4a00;
}
.col-slb {
  max-width: 115px !important;
}
/* --- spinner for modules ---*/
.spinner {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: absolute;
  animation: spinner-rotate 1s ease-in-out infinite;
  top: 50%;
  margin: -16px 5px;
  cursor: default;
}
.spinner.start {
  display: block;
  animation: spinner-rotate 1s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.spinner.stop {
  display: block;
  animation: none;
  border: 2px solid #ff0000ad;
}
.spinner::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #303235;
  position: absolute;
  top: -3px;
  left: 50%;
  margin-left: -5px;
}
.spinner.stop::after {
  background: none;
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.navbar-hidden {
  display: none !important;
}
/* ------------------------------------ */
.green-background {
  background-color: #008000;
  color: #ffffff;
}
.yellow-background {
  background-color: #fbf741;
  color: #000000;
}
.red-background {
  background-color: #fc4a00;
  color: #ffffff;
}
/* ---- map search ---- */
.on-navbar {
  position: absolute;
  top: 10px;
  z-index: 100;
  margin-left: -250px;
  width: 245px;
}
.map-search-input {
  background: url(images/search_24.png) no-repeat scroll left center #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  height: 27px;
  padding-left: 25px;
  width: 100%;
  padding-right: 20px;
}
.map-search-clear {
  position: absolute;
  cursor: pointer;
  margin-left: 222px;
  margin-top: -31px;
  height: 27px;
}
.map-search-clear a {
  font-size: 1.5em;
  color: #717171;
}
.map-search-clear :hover {
  background: #eeeeee;
}
.back-button {
  margin-left: -15px;
  margin-top: -1px;
  z-index: 1000;
  padding-left: 11px !important;
}
.resultBox {
  margin: 9px;
  padding: 7px;
  font-weight: bold;
  height: calc(100% - 60px);
}
.resultBoxSpacer {
  width: 100%;
  height: 0px;
}
.resultText {
  width: 100%;
  background-color: white;
  height: 25px;
  padding: 8px;
  margin-left: -7px;
}
.resultToggleButton {
  background: white;
  margin-left: 112px;
  margin-top: -16.6px;
  cursor: pointer;
  width: 15.66px;
  padding: 2.5px;
  zoom: 1.5;
  height: 16.66px;
}
.resultCreateWosButton {
  background: white;
  margin-left: 130px;
  margin-top: -16.6px;
  cursor: pointer;
  width: 15.66px;
  padding: 2.5px;
  zoom: 1.5;
  height: 16.66px;
}
.resultSaveButton {
  background: white;
  margin-left: 148px;
  margin-top: -16.6px;
  cursor: pointer;
  width: 15.66px;
  padding: 2.5px;
  zoom: 1.5;
  height: 16.66px;
}
.resultCloseButton {
  background: white;
  margin-left: 164.5px;
  margin-top: -16.6px;
  cursor: pointer;
  width: 15.66px;
  padding: 2.5px;
  zoom: 1.5;
  height: 16.66px;
}
.resultToggleButton:hover,
.resultSaveButton:hover,
.resultCloseButton:hover {
  background: #eeeeee;
}
.resultList {
  width: 277px;
  background: white;
  margin-left: -7px;
  padding: 7px;
  font-weight: normal;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}
.resultList::-webkit-scrollbar {
  display: none;
}
/* #16460 == */
.list-title {
  color: orange;
  font-size: 10pt;
  font-weight: bold;
  opacity: 0.5;
  margin-bottom: 10px;
  margin-left: 5px;
}
.point {
  padding: 6px;
  padding-left: 20px;
}
.point-title {
  color: orange;
  font-size: 10pt;
  font-weight: bold;
}
.point-address {
  padding: 3px 0 3px;
}
.point-duration {
  font-weight: bold;
}
.list-search-link {
  cursor: pointer;
}
.list-search-input {
  width: 220px;
  margin-top: -7px;
  background: url(images/search_24.png) no-repeat scroll left center #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  height: 30px;
  font-size: 12pt;
  padding-left: 25px !important;
}
.list-search-input-hide {
  margin-left: 148px;
  margin-top: -19px;
}
.tour-symbol-dot {
  margin-top: 3px;
  margin-left: -18px;
  color: orange;
  float: left;
}
.tour-symbol-last-dot {
  font-size: 14pt;
  margin-left: -22px;
  margin-top: -3px;
}
.tour-symbol-segment {
  width: 3px;
  background: orange;
  float: left;
  margin-top: 14px;
  margin-left: -14.5px;
}
.tour-symbol-last-segment {
  border: dashed 1.5px orange;
  background: none;
  margin-top: 11px;
}
/* #19596 */
.waypoints {
  padding-bottom: 20px;
}
.waypoints img {
  width: 20px;
  margin-right: 6px;
  margin-top: 0px;
  opacity: 0.4;
}
.waypoints div {
  display: flex;
  font-size: 12pt;
}
.waypoints .waypoint .waypoint-name {
  display: flex;
  font-weight: bold;
  font-size: 11pt;
}
.waypoints .waypoint .waypoint-name .counter {
  color: grey;
  padding-right: 10px;
}
.waypoints .waypoint .waypoint-data {
  margin-left: 30px;
  border-bottom: solid 1px #eeeeee;
}
.waypoints .waypoint .waypoint-data img {
  margin-top: -3px;
}
.waypoints .waypoint .waypoint-data input {
  text-align: right;
  margin-top: -8px;
  padding-right: 5px;
  padding-top: 5px;
  width: unset !important;
}
.waypoints .waypoint-add-new {
  border-bottom: solid 1px #fc4a00;
  padding-left: 20px;
  padding-top: 10px;
  width: 100%;
}
.waypoints .waypoint-add-new img {
  margin-top: 2px;
}
.waypoints .waypoint-sum {
  font-weight: bold;
  width: 96.6%;
  margin-left: 30px;
}
.waypoints .waypoint-sum img {
  opacity: 0.8;
  filter: invert(36%) sepia(97%) saturate(3291%) hue-rotate(3deg) brightness(100%) contrast(108%);
}
.waypoints .waypoint-sum div {
  margin-top: 3px;
}
.btn-1 {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px #eee;
  box-shadow: 2px 2px #eee;
  border: 1px solid#eee;
  width: 45px;
}
.btn-1 img {
  filter: invert(36%) sepia(97%) saturate(3291%) hue-rotate(3deg) brightness(100%) contrast(108%);
  width: 20px;
  margin-left: -3px;
}
/* #16460.6 */
#miniMap-container {
  position: relative;
  width: 90%;
  margin: 2% 5% 0;
  padding: 20%;
}
#miniMap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#fleet-chart-details td,
#fleet-chart-details th {
  border: 1px solid #44444420;
  text-align: center;
}
#fleet-chart-details .shift-to-right {
  padding-left: 92%;
}
#fleet-chart-details .over-100 {
  background: #b8888820;
}
.menu-item {
  height: 30px;
}
.menu-icon {
  width: 25px;
  font-size: 1.8em;
  float: left;
  height: 15px;
  margin-top: -9px;
  margin-left: 5px;
}
.wo-new {
  color: #0d47a1 !important;
}
.wo-assigned {
  color: #2196f3 !important;
}
.wo-started {
  color: #ff9d00 !important;
}
.wo-paused {
  color: #f01e19 !important;
}
.wo-completed {
  color: #219600 !important;
}
.wo-delayed {
  color: #de00ff !important;
}
/* custom icon */
a.action-set-time-filter.icon-paid-green {
  height: 1.8em;
  width: 2.7em;
}
.icon-paid-green::before {
  content: "";
  display: inline-block;
  background: url(images/ic_paid_green_24px.svg);
  width: -webkit-fill-available;
  height: 1.1em;
  margin-top: 0.3em;
}
/* #16200 =====================================*/
.autorefresh-on-navbar {
  position: absolute;
  margin-left: -475px;
  margin-top: 2px;
  width: 211px;
  z-index: 100;
}
.nav-slider-label {
  align-self: center;
  line-height: 1.3;
  padding: 6px;
  width: 100px;
}
.nav-slider {
  align-self: center;
  width: 100px;
}
.nav-slider .ui-state-hover,
.nav-slider .ui-state-focus {
  background: #E2E2E2;
  border: 1px solid #CACACA;
  outline: none;
}
.nav-bar.btn-time-filter {
  padding: 10px;
  height: 44px;
  padding: 0px;
}
/* #16464 ===================================== */
.map-menu-holder {
  margin: 10px;
}
.map-menu {
  font-size: 11px;
  border-radius: 2px;
  height: 30px;
  font-family: Roboto, Arial, sans-serif;
  box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px;
  background-color: #fff;
  padding: 4px;
}
.map-menu-orange {
  background-color: #FE4A02;
  color: #FFF;
}
.map-menu-label {
  padding: 4px;
  font-weight: bold !important;
}
.map-menu-arrow {
  position: absolute;
  right: 4px;
  margin: 4px;
}
.map-menu-item {
  font-size: 11px;
  border-radius: 2px;
  height: 30px;
  box-shadow: rgba(0, 0, 0, 0.298) 0px 1px 4px -1px;
  background-color: #ffffff;
  padding: 4px;
  display: none;
  white-space: nowrap;
}
.map-menu-item-label {
  padding: 4px;
  overflow: hidden;
  width: 78px;
}
/* #16729 ================================== */
.navbar-link {
  cursor: pointer;
  font-size: 1em !important;
  font-weight: bold;
  padding: 13px !important;
}
.pupup-module-content {
  position: absolute;
  top: 50px;
  width: 100%;
  height: calc(100% - 50px);
  margin: -0.5px;
}
.editor-link {
  text-decoration: underline;
}
.disabled-editor-link {
  color: black;
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
.progress-bar:last-child:before {
  height: unset !important;
}
.action_toggle_edit_links.active {
  color: #fc4a00 !important;
}
/*
body {
    background: #EDECEC;
}
*/
.tab-container {
  height: 100%;
  width: 100%;
}
.nav-tabs {
  display: inline-flex;
  width: 100%;
  overflow-x: auto;
  border-bottom: 2px solid #DDD;
  -ms-overflow-style: none;
  /*// IE 10+*/
  overflow: -moz-scrollbars-none;
  /*// Firefox*/
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border-width: 0;
}
.nav-tabs > li > a {
  border: none;
  color: #666;
}
.nav-tabs > li.active > a,
.nav-tabs > li > a:hover {
  border: none;
  color: #444444 !important;
  background: transparent;
}
.nav-tabs > li > a::after {
  content: "";
  background: #fc4a00;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 1px;
  transition: all 250ms ease 0s;
  transform: scale(0);
}
.nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
  transform: scale(1);
}
.tab-nav > li > a::after {
  background: #21527d none repeat scroll 0% 0%;
  color: #fff;
}
.tab-pane {
  padding: 15px 0;
}
.tab-content {
  height: calc(100% - 75px) !important;
  padding: 20px;
  overflow-y: auto;
}
.nav-tabs::-webkit-scrollbar {
  display: none;
  /*Safari and Chrome*/
}
/*
.card {
    background: #FFF none repeat scroll 0% 0%;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}
*/
.favorPackageSection {
  border-radius: 4px;
  border: solid 1px #dddddd;
  margin: 2px;
}
.headerLabel {
  margin-left: 8px;
  margin-top: 8px;
  margin-bottom: -8px;
  font-weight: bold;
}
.editDriver-separator {
  font-weight: bold;
  font-size: large;
  text-align: center;
  padding: 15px;
}
.grey-background {
  background: #d4d4d4;
}
.marker {
  opacity: 1;
}
.red-cell {
  background: #FE4A02;
  color: #FFFFFF;
  padding: 8px;
  margin: -8px;
  text-align: center;
}
.yellow-cell {
  background: #FFFF00;
  color: #717171;
  padding: 8px;
  margin: -8px;
  text-align: center;
}
.custom-icon {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.text-center {
  text-align: center;
}
.res-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}
.tripEditCell {
  cursor: pointer;
  text-decoration: underline;
}
.tripEmptyCell {
  font-style: italic;
  background: #ffff88;
}
.tripEditInput {
  outline-color: #d5c9c9 !important;
  border: #d5c9c9 solid 1px !important;
  border-radius: 5px !important;
  width: 100%;
  height: 20px;
  font-size: 10pt !important;
  padding: 5px !important;
}
.w24px {
  width: 24px;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.merge-button {
  cursor: pointer;
  font-size: 24px;
  line-height: 1.3;
}
.red-cell {
  background: #fc4a00;
  color: #ffffff;
}
.liveGroup {
  background: #b0c5c7 !important;
}
.liveGroup-spinner {
  width: 27px;
  height: 27px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: spinner-rotate 1s ease-in-out infinite;
  top: 50%;
  cursor: default;
  float: left;
  margin-right: 5px;
}
.liveGroup-spinner::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #303235;
  position: absolute;
  top: -3px;
  left: 50%;
  margin-left: -5px;
}
[draggable="true"] {
  transform: translate(0, 0);
  z-index: 0;
}
.namingMechanism-holder {
  display: none;
}
.heap-owner-resource-holder,
.heap-price-comment-holder {
  display: none;
}
.lazyResourceList-list {
  overflow-y: auto;
  height: calc(100% - 96px);
}
.lazyResourceList-holder {
  height: calc(100% - 48px);
}
.fullscreen-mode #module-resources-list {
  top: 0px;
}
.dynamicColumnSelector {
  margin-bottom: -5px;
}
.btn-add-column,
.btn-add-sort-column {
  cursor: pointer;
  font-size: 30px;
  color: grey;
  position: relative;
  top: -10px;
  left: -10px;
}
.btn-remove-column {
  cursor: pointer;
  font-size: 30px;
  color: grey;
  padding-left: 28px;
}
.btn-reorder-column {
  cursor: pointer;
  font-size: 30px;
  color: grey;
  float: right;
}
.no-margin {
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-bottom: 0px !important;
}
.action-replay {
  float: left;
}
.replay-slider {
  float: left;
  margin-right: 10px;
  margin-top: 24px;
  width: 100px;
  height: 2px;
  background: #80808036;
}
.replay-cursor {
  margin-top: -17px;
  font-size: 20px;
}
.max-width-90 {
  max-width: 90px;
}
.truncated-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shipment-arrow {
  position: relative;
  top: 7px;
}
.shipment-cell {
  float: left;
  padding-left: 10px;
}
.addDynamicColumn,
.addDynamicSortColumn {
  display: flex;
}
.sorting {
  margin-top: -8px;
  margin-bottom: 12px;
}
.sortColumn {
  margin-left: -8px;
  width: 110%;
}
.sortOrder {
  width: 120px;
}
.scope-selector .ui-selectmenu-menu {
  font-size: 12px;
}
.scope-selector .ui-menu-item {
  padding: 0px !important;
  font-family: 'Open Sans', sans-serif;
}
.scope-selector .ui-state-focus {
  background: #3169d3;
}
#chartDiv {
  height: 100px;
  width: 100%;
  margin-top: -1px;
}
#overviewDiv {
  height: 50px;
  width: 100%;
  margin-bottom: 10px;
  padding-top: 10px;
}
.overview-tile {
  float: left;
  margin-top: -15px;
  width: 110px;
}
.overview-tile .icon {
  color: orange;
  font-size: 2.7em;
}
.overview-tile .value-holder {
  margin-top: -57px;
  margin-left: 35px;
  padding-left: 3px;
  position: absolute;
}
.overview-tile .value {
  font-size: 18px;
}
.overview-tile .unit {
  padding-left: 3px;
}
.overview-tile .description {
  margin-top: -35px;
  margin-left: 34px;
  padding-left: 3px;
  position: absolute;
}
.date-tile {
  float: left;
  margin-left: -25px;
  margin-top: -15px;
  height: 50px;
  width: fit-content;
  padding-right: 10px;
}
.date-tile .date {
  font-size: 18px;
  margin-top: 8px;
  margin-left: 35px;
  padding-left: 3px;
}
.date-tile .time {
  margin-top: -10px;
  margin-left: 35px;
  padding-left: 3px;
}
.storage-spinner {
  height: 23px;
  margin-left: 5px;
}
#generatedEDI {
  font-size: 16px;
  white-space: pre;
  word-wrap: break-word;
}
#customText {
  line-height: 120%;
}
.collapse-button {
  background: #f7f7f7;
  cursor: pointer;
  height: 25px;
  margin: 0px;
}
.collapse-arrow {
  padding-top: 0px;
}
.collapse-holder {
  border: 1px solid #d3d3d380;
  border-radius: 5px;
  margin: 5px;
}
.collapse-items {
  margin-top: 5px;
  /* ?!^%&* */
}
.btn-add-item {
  color: grey;
  cursor: pointer;
  font-size: 30px;
  padding-left: 20px;
}
.btn-remove-item {
  color: grey;
  cursor: pointer;
  font-size: 30px;
  margin-left: -13px;
  position: absolute;
  top: -10px;
}
.waypoint-drag-handle {
  cursor: pointer;
  font-size: 20px;
  margin-top: -10px;
  top: 10px;
}
svg > g > g.google-visualization-tooltip {
  pointer-events: none;
}

