﻿.m-b-none {
  margin-bottom: 0 !important;
}

.m-t-none {
  margin-top: 0 !important;
}

.m-r-none {
  margin-right: 0 !important;
}

.m-l-none {
  margin-left: 0 !important;
}

.p-b-none {
  padding-bottom: 0 !important;
}

.p-t-none {
  padding-top: 0 !important;
}

.p-l-none {
  padding-left: 0 !important;
}

.p-r-none {
  padding-right: 0 !important;
}

.input-xs {
  height: 22px;
  padding: 5px 5px;
  font-size: 8px;
  line-height: 1.5;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.t-r {
  color: #ff0000;
}

.t-w {
  color: #ffffff;
}

.navbar-nav > li > a.topnav {
  padding-bottom: 5px;
  padding-top: 5px;
  color: #ffffff;
}

.nav-tabs-sm > li > a {
  line-height: 0.5;
}

.text-active,
.active > .text,
.active > .auto .text {
  display: none !important;
}

.active > .text-active,
.active > .auto .text-active {
  display: inline-block !important;
}

@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot?713wfn");
  src: url("fonts/icomoon.eot?#iefix713wfn") format("embedded-opentype"),
    url("fonts/icomoon.ttf?713wfn") format("truetype"),
    url("fonts/icomoon.woff?713wfn") format("woff"),
    url("fonts/icomoon.svg?713wfn#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-binoculars:before {
  content: "\e600";
}

.icon-truck:before {
  content: "\e601";
}

.icon-sphere:before {
  content: "\e602";
}

.paddingZero {
  padding: 0;
}

hr.style-two {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.tablespacing {
  border-collapse: separate;
  border-spacing: 5px;
}

/*Login*/
abbr[title],
acronym[title] {
  border-bottom-width: 0;
}

.inline-headers h2,
.inline-headers h4,
.inline-headers h6 {
  display: inline-block;
  vertical-align: baseline;
}

.spinner {
  display: inline-block;
  opacity: 0;
  width: 0;
  -webkit-transition: opacity 0.25s, width 0.25s;
  -moz-transition: opacity 0.25s, width 0.25s;
  -o-transition: opacity 0.25s, width 0.25s;
  transition: opacity 0.25s, width 0.25s;
}

.has-spinner.active {
  cursor: progress;
}

.has-spinner.active .spinner {
  opacity: 1;
  width: auto; /* This doesn't work, just fix for unkown width elements */
}

.has-spinner.btn-mini.active .spinner {
  width: 10px;
}

.has-spinner.btn-small.active .spinner {
  width: 13px;
}

.has-spinner.btn.active .spinner {
  width: 16px;
}

.has-spinner.btn-large.active .spinner {
  width: 19px;
}

.small-logo {
  height: 32px;
  width: 32px;
}

.loadinglogo {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: -16px;
  -webkit-perspective: 400px;
  -webkit-animation: base-cycle 2s linear infinite;
  -webkit-transform-origin: 16px 16px;
  -webkit-perspective-origin: 16px 16px;
  -moz-perspective: 400px;
  -moz-animation: base-cycle 2s linear infinite;
  -moz-transform-origin: 16px 16px;
  -moz-perspective-origin: 16px 16px;
  perspective: 400px;
  animation: base-cycle 2s linear infinite;
  transform-origin: 16px 16px;
  perspective-origin: 16px 16px;
  zoom: 3;
}

.loadinglogo .b {
  width: 32px;
  height: 32px;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.loadinglogo .b div {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.loadinglogo .grey {
  display: inherit;
}

.loadinglogo .blue {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

.loadinglogo .orange {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.loadinglogo .lightblue {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  transform: rotate(270deg);
}

.loadinglogo .grey div {
  background-color: #3d3d3d;
}

.loadinglogo .blue div {
  background-color: #375a7f;
}

.loadinglogo .lightblue div {
  background-color: #3498db;
}

.loadinglogo .orange div {
  background-color: #f39c12;
}

.loadinglogo .green div {
  background-color: #00a379;
}

.loadinglogo .b div {
  -webkit-animation: cycle 2s ease-out infinite;
  -moz-animation: cycle 2s ease-out infinite;
  animation: cycle 2s ease-out infinite;
}

@-webkit-keyframes base-cycle {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes base-cycle {
  0% {
    -moz-transform: rotate(0);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

@keyframes base-cycle {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes cycle {
  0% {
    -webkit-transform: translateX(28px) rotateY(0deg);
  }

  60% {
    -webkit-transform: translateX(0) rotateY(0deg);
    background-color: white;
  }

  70% {
    -webkit-transform: translateX(16px) rotateY(90deg);
  }

  100% {
    -webkit-transform: translateX(28px) rotateY(0deg);
  }
}

@-moz-keyframes cycle {
  0% {
    -moz-transform: translateX(28px) rotateY(0deg);
  }

  60% {
    -moz-transform: translateX(0) rotateY(0deg);
    background-color: white;
  }

  70% {
    -moz-transform: translateX(16px) rotateY(90deg);
  }

  100% {
    -moz-transform: translateX(28px) rotateY(0deg);
  }
}

@keyframes cycle {
  0% {
    transform: translateX(28px) rotateY(0deg);
  }

  60% {
    transform: translateX(0) rotateY(0deg);
    background-color: white;
  }

  70% {
    transform: translateX(16px) rotateY(90deg);
  }

  100% {
    transform: translateX(28px) rotateY(0deg);
  }
}

/* menu floating on map*/
.mapnavigation {
  position: absolute;
  height: 28px;
  top: 5px;
  left: 66px;
  overflow: hidden !important;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.mapnavigation .wrapper {
  display: inline-block;
  position: relative;
  width: 90%;
  height: 24px;
  top: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  transition: 0.6s ease-in-out;
}

.mapnavigation .container {
  position: absolute;
  height: 20px;
  line-height: normal;
  padding: 0px;
}

.mapnavigation .contentContainer {
  width: auto;
}

.mapnavigation .contentContainer a {
  color: rgb(0, 0, 0);
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 12px;
  font-style: normal;
  text-decoration: inherit;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
  padding-bottom: 0;
}

.mapnavigation .navbar-nav > li > a.floatingnav:hover,
.mapnavigation .navbar-nav > li > a.floatingnav:focus {
  background: none;
  outline: none;
}

.nav-horizontal {
  float: left;
  margin: 0;
}

.nav-horizontal > li {
  float: left;
}

.nav-horizontal > li > a {
  padding-top: 15px;
  padding-bottom: 15px;
}

.mapnavigation .left {
  float: left;
  color: rgb(0, 0, 0);
  cursor: pointer;
  line-height: 20px;
  height: 20px;
}

.mapnavigation .right {
  color: rgb(0, 0, 0);
  float: right;
  cursor: pointer;
  line-height: 20px;
  height: 20px;
}

.mapnavigation .icon {
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-size: 16px;
  top: 0px;
}

.tallPanel {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 1px;
  left: 1px;
  z-index: 1002;
}

.tallPanelBody {
  overflow: auto;
}

.floatPanel {
  overflow: hidden;
  position: absolute;
  margin: 0;
  top: 1px;
  right: 1px;
  padding: 0;
  z-index: 1001;
}

.masonryPanelBody {
  overflow: hidden;
}

.masonryPanel {
  overflow: hidden;
  margin: 0;
  padding: 12px;
  border: 0px solid;
}

.masonryPanel .panel {
  border: 0px solid;
}

.floatPanelBody {
  overflow: auto;
  /*height: 25%;*/
}

.icon-th {
  color: #fff;
  float: right;
  font-size: 2rem;
  margin: 0.3em 0.4em;
}

.list-group-notification-item {
  border: 1px solid #464545;
  display: block;
  margin-bottom: -1px;
  padding: 10px 15px;
  position: relative;
}

.grid-btn {
  padding: 5px;
  display: table-cell;
}

a.grid-btn:hover,
a.grid-btn:focus {
  text-decoration: none;
}

.gridStyle {
  border: 1px solid rgb(212, 212, 212);
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-color: #333;
}

.list-panel {
  height: 50%;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(122, 130, 136, 0.8) !important;
  margin-bottom: 0;
}

.list-panel .list-group-item {
  display: inherit;
}

.sensorGridStyle {
  border: 1px solid rgb(212, 212, 212);
  width: 100%;
  height: 100%;
  min-height: 150px;
  background-color: #333;
}

.mapGridStyle {
  border: 1px solid rgb(212, 212, 212);
  width: 100%;
  height: 240px;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.geofenceGridStyle {
  border: 1px solid rgb(212, 212, 212);
  width: 100%;
  height: 300px;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ngTransparent {
  opacity: 0.5;
}

.ngHeaderCell {
  background-color: rgb(55, 90, 127) !important;
  bottom: 0;
  color: #ffffe0 !important;
  position: absolute;
  top: 0;
}

.uiHeaderCell {
  background-color: rgb(55, 90, 127) !important;
  color: #ffffe0 !important;
}

.ngGrid {
  background-color: #333;
}

.ngHeaderButton {
  position: absolute;
  right: 2px;
  top: 8px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  z-index: 1;
  background-color: rgb(55, 90, 127);
  color: #fff5ee;
  cursor: pointer;
}

.ngGroupPanel {
  background-color: rgb(55, 90, 127);
  color: #fff5ee;
  overflow: hidden;
  border-bottom: 1px solid #d4d4d4;
}

.ngGroupName {
  background-color: #fdfdfd;
  border: 1px solid #d4d4d4;
  padding: 3px 10px;
  float: left;
  margin-left: 0;
  margin-top: 2px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
  color: #333;
}

.ngRow.odd {
  background-color: #333;
}

.ngRow.even {
  background-color: #444;
}

.ngRow.selected {
  background-color: #0e9a2e;
}

.ngRow {
  position: absolute;
  border-bottom: 1px solid #d4d4d4;
  background-color: #333;
  color: #fff5ee;
}

/*.leaflet-popup-content {
    color: #333;
}

.leaflet-control-layers {
    display: none;
}*/

svg text {
  fill: rgb(58, 55, 55);
}

.col-centered {
  float: none;
  margin: 0 auto;
}

/* Have to set height explicity on ui-view 
to prevent collapsing during animation*/
.trans-anim[ui-view] {
  min-height: 65px;
}

.ui-view-container {
  position: relative;
}

[ui-view].ng-enter,
[ui-view].ng-leave {
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

[ui-view].ng-enter {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

[ui-view].ng-enter-active {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

[ui-view].ng-leave {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[ui-view].ng-leave-active {
  opacity: 0;
  -webkit-transform: translate3d(100px, 0, 0);
  -moz-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

.tagdiv {
  color: #333;
}

.tagdiv input {
  color: #333;
}

.list-group-item-transparent {
  opacity: 0.7;
}

.ngCellText {
  white-space: normal;
}

.mapHeight {
  height: 100%;
}

.mapAssetBtnPanel {
  overflow: hidden;
  position: absolute;
  margin: 0;
  top: 1%;
  right: 1%;
  padding: 0;
  /*height:300px; */
}

.mapAssetPanel {
  overflow: hidden;
  position: absolute;
  margin: 0;
  top: 1%;
  right: 1%;
  padding: 0;
  /*  max-height:300px; */
}

.mapassetsummarypanelbody {
  overflow: auto;
  height: 300px;
}

.panelMarginBottom {
  margin-bottom: 0;
}
/*.mapGridPanel {
    overflow: hidden;
    position: absolute;
    margin-top: 0;
    margin-bottom:0;
    margin-left:auto;
    margin-right:auto;
    bottom: 0%;
    padding: 0;
 }
*/
.mapGridBtnPanel {
  overflow: hidden;
  position: absolute;
  margin: 0;
  top: 1%;
  left: 1%;
  padding: 0;
  /*height:300px; */
}

.mapsearchbtn {
  min-width: 110px !important;
}

.mapGridPanel {
  overflow: hidden;
  position: absolute;
  margin: 0;
  top: 0%;
  left: 15px;
  padding: 0;
}

.mapGridPanel .formborder {
  border: 5px solid transparent;
}

.geofencePanel {
  overflow: hidden;
  position: absolute;
  margin: 0;
  top: 1%;
  right: 1%;
  padding: 0;
}

.geofencePanelBody {
  height: auto;
}

.geofencePanel .form-horizontal .control-label {
  padding-top: 7px;
}

.geofencePanel .form-horizontal .control-label-inline {
  padding-top: 0px;
  min-height: 0px;
}

.alertWizardPanel {
  height: 100% !important;
  overflow: auto;
}

.alertWizardPanel .conditionPanel {
  min-height: 33%;
  height: 33%;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(122, 130, 136, 0.8) !important;
  margin-bottom: 10px;
}

.alertPanel .modal {
  position: absolute;
  top: 10px;
  left: 0px;
  display: block;
}

.alertPanel .modal .modal-dialog {
  width: 300px;
}

.blackcolor {
  color: #000;
}

skyonics-transparent {
  background: none;
}

.panel-transparent {
  background: none;
}

.source-button {
  position: absolute;
  top: 0;
  padding-top: 5px;
  right: 0;
  z-index: 100;
  font-weight: 700;
}

.source-button-left {
  position: absolute;
  top: 0;
  padding-top: 5px;
  left: 0;
  z-index: 100;
  font-weight: 700;
}

/*
.slideup-animation
{
    transition: .5s linear all;
    height: 200px;
    overflow: hidden;
}
.slideup-animation.ng-hide {
    height:0;
}
*/
/*markers*/
.bg-bg1 {
  background-color: #000000;
  filter: alpha(opacity=70);
}

.bg-bg2 {
  background-color: #993300;
  filter: alpha(opacity=70);
}

.bg-bg3 {
  background-color: #333300;
  filter: alpha(opacity=70);
}

.bg-bg4 {
  background-color: #000080;
  filter: alpha(opacity=70);
}

.bg-bg5 {
  background-color: #333399;
  filter: alpha(opacity=70);
}

.bg-bg6 {
  background-color: #333333;
  filter: alpha(opacity=70);
}

.bg-bg7 {
  background-color: #800000;
  filter: alpha(opacity=70);
}

.bg-bg8 {
  background-color: #808000;
  filter: alpha(opacity=70);
}

.bg-bg9 {
  background-color: #008000;
  filter: alpha(opacity=70);
}

.bg-bg10 {
  background-color: #993300;
  filter: alpha(opacity=70);
}

.bg-bg11 {
  background-color: #008080;
  filter: alpha(opacity=70);
}

.bg-bg12 {
  background-color: #0000ff;
  filter: alpha(opacity=70);
}

.bg-bg13 {
  background-color: #666699;
  filter: alpha(opacity=70);
}

.bg-bg14 {
  background-color: #808080;
  filter: alpha(opacity=70);
}

.bg-bg15 {
  background-color: #ff0000;
  filter: alpha(opacity=70);
}

.bg-bg16 {
  background-color: #ff9900;
  filter: alpha(opacity=70);
}

.bg-bg17 {
  background-color: #99cc00;
  filter: alpha(opacity=70);
}

.bg-bg18 {
  background-color: #339966;
  filter: alpha(opacity=70);
}

.bg-bg19 {
  background-color: #33cccc;
  filter: alpha(opacity=70);
}

.bg-bg20 {
  background-color: #3366ff;
  filter: alpha(opacity=70);
}

.bg-bg21 {
  background-color: #800080;
  filter: alpha(opacity=70);
}

.bg-bg22 {
  background-color: #999999;
  filter: alpha(opacity=70);
}

.bg-bg23 {
  background-color: #ff00ff;
  filter: alpha(opacity=70);
}

.bg-bg24 {
  background-color: #ffcc00;
  filter: alpha(opacity=70);
}

.bg-bg25 {
  background-color: #ffff00;
  filter: alpha(opacity=70);
}

.bg-bg26 {
  background-color: #00ff00;
  filter: alpha(opacity=70);
}

.bg-bg27 {
  background-color: #00ffff;
  filter: alpha(opacity=70);
}

.bg-bg28 {
  background-color: #00ccff;
  filter: alpha(opacity=70);
}

.bg-bg29 {
  background-color: #993366;
  filter: alpha(opacity=70);
}

.bg-bg30 {
  background-color: #c0c0c0;
  filter: alpha(opacity=70);
}

.bg-bg31 {
  background-color: #ff99cc;
  filter: alpha(opacity=70);
}

.bg-bg32 {
  background-color: #ffcc99;
  filter: alpha(opacity=70);
}

.bg-bg33 {
  background-color: #ffff99;
  filter: alpha(opacity=70);
}

.bg-bg34 {
  background-color: #ccffff;
  filter: alpha(opacity=70);
}

.bg-bg35 {
  background-color: #99ccff;
  filter: alpha(opacity=70);
}

.bg-bg36 {
  background-color: #ffffff;
  filter: alpha(opacity=70);
}

.bg-bg37 {
  background-color: #0047ff;
  filter: alpha(opacity=70);
}

.marker-bg-default {
  background-color: rgba(230, 78, 31, 0.7);
}

.marker-cluster {
  filter: alpha(opacity=70);
  background-clip: padding-box;
  border-radius: 500px;
}

.marker-cluster-hilite {
  filter: alpha(opacity=70);
  background-clip: padding-box;
  border-radius: 500px;
}

.marker-cluster-last-position-not-found {
  background:
    /* On "top" */ repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      #ccc 10px,
      #ccc 20px
    ),
    /* on "bottom" */ linear-gradient(to bottom, #eee, #999);
  background-clip: padding-box;
  border-radius: 250px;
  border: 5px solid #0b1a1d;
}

.marker-cluster-callout {
  background-clip: padding-box;
  border-radius: 500px;
  border: 5px solid #0b1a1d;
}

.marker-cluster-hilite-callout {
  background-clip: padding-box;
  border-radius: 500px;
  border: 6px solid #0b1a1d;
}

.marker-cluster-callout-multi {
  background-clip: padding-box;
  border-radius: 500px;
  border: 3px solid #0b1a1d;
}

.marker-cluster-hilite-callout-multi {
  background-clip: padding-box;
  border-radius: 500px;
  border: 4px solid #0b1a1d;
}

.marker-cluster span,
.marker-cluster-callout span,
.marker-cluster-callout-multi span {
  width: 100%;
  display: block;
  position: relative;
  top: -10px;
  margin-left: 0;
  color: #fff;
  font-size: 10px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: center;
}

/*operators row images*/
.grid-actions-operators {
  padding-top: 4px;
}

.grid-actions-operators button {
  padding: 0 2px 0 5px !important;
  background: transparent;
}

/*footer grid operators*/
div.ngFooterPanel {
  color: black !important;
}

.form-search input[type="text"] {
  height: 34px !important;
}

.title-search {
  font-size: 14px;
  padding-left: 0px;
}

.row-search {
  margin-top: 15px;
}

.btn-search {
  float: right;
}

.cellNoWrap {
  white-space: nowrap !important;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  -moz-min-width: 100%;
  -ms-min-width: 100%;
  -o-min-width: 100%;
  -webkit-min-width: 100%;
  min-width: 100%;
  min-height: 100%;
  font-size: 60px;
  text-align: right;
  -webkit-filter: alpha(opacity=0);
  -moz-filter: alpha(opacity=0);
  -o-filter: alpha(opacity=0);
  filter: alpha(opacity=0);
  -ms-opacity: 0;
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}

.input-file input[readonly] {
  background-color: white !important;
  cursor: text !important;
}

/*Messages chat*/
.container-messages {
  /*padding: 40px 20px;*/
  margin: 0 auto;
  width: 100%;
  display: block;
}

.container-messages label {
  font-weight: 100 !important;
}

.bubble-message {
  background-image: linear-gradient(
    bottom,
    rgb(210, 244, 254) 25%,
    rgb(149, 194, 253) 100%
  );
  background-image: -o-linear-gradient(
    bottom,
    rgb(210, 244, 254) 25%,
    rgb(149, 194, 253) 100%
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgb(210, 244, 254) 25%,
    rgb(149, 194, 253) 100%
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgb(210, 244, 254) 25%,
    rgb(149, 194, 253) 100%
  );
  background-image: -ms-linear-gradient(
    bottom,
    rgb(210, 244, 254) 25%,
    rgb(149, 194, 253) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.25, rgb(210, 244, 254)),
    color-stop(1, rgb(149, 194, 253))
  );
  border: solid 1px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  box-shadow: inset 0 5px 5px rgba(255, 255, 255, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  clear: both;
  float: left;
  margin-bottom: 1px;
  padding: 8px 30px;
  position: relative;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
}

.bubble-message:before,
.bubble-message:after {
  border-radius: 20px/10px;
  content: "";
  display: block;
  position: absolute;
}

.bubble-message:before {
  border: 9px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: -7px;
  /*z-index: -2;*/
}

.bubble-message:after {
  border: 8px solid transparent;
  border-bottom-color: #d2f4fe;
  bottom: 1px;
  left: -5px;
}

.bubble-message-response {
  background-image: linear-gradient(
    bottom,
    rgb(172, 228, 75) 25%,
    rgb(122, 205, 71) 100%
  );
  background-image: -o-linear-gradient(
    bottom,
    rgb(172, 228, 75) 25%,
    rgb(122, 205, 71) 100%
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgb(172, 228, 75) 25%,
    rgb(122, 205, 71) 100%
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgb(172, 228, 75) 25%,
    rgb(122, 205, 71) 100%
  );
  background-image: -ms-linear-gradient(
    bottom,
    rgb(172, 228, 75) 25%,
    rgb(122, 205, 71) 100%
  );
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.25, rgb(172, 228, 75)),
    color-stop(1, rgb(122, 205, 71))
  );
  float: right;
}

.bubble-message-response::before {
  border-bottom-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px / 10px;
  left: auto;
  right: -7px;
}

.bubble-message-response::after {
  border-bottom-color: #ace44b;
  border-radius: 20px / 10px;
  left: auto;
  right: -5px;
}

.display-send-message {
  display: inline-table;
}

.display-receive-message {
  display: flex;
  float: right;
}

.report-chat {
  resize: none;
  height: 74px !important;
}

.container-chat {
  height: 140px;
  /*background: #9da2a4;*/
  background: rgba(157, 162, 164, 0.5);
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 5px;
  border: 1px solid gray;
  color: black;
}

.height70px {
  height: 70px;
}

.chat-add-response-button {
  top: 74px;
  right: -12px;
  position: absolute;
}

.chat-remove-response-button {
  top: 97px;
  right: -12px;
  position: absolute;
}

.container-chat-custom {
  height: 100px;
  background: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 5px;
  border: 1px solid gray;
}

.btn-actions-details {
  float: right;
}

.btn-actions-details button {
  padding: 1px 5px 1px 5px;
}

.paddingBottom10px {
  padding-bottom: 10px !important;
}

.paddingBottom5px {
  padding-bottom: 5px !important;
}

.paddingLeft15px {
  padding-left: 15px !important;
}

.paddingLeft8px {
  padding-left: 8px !important;
}

.document-nav {
  max-height: 115px;
  overflow-y: scroll;
  padding: 2% !important;
}

.height-auto {
  height: auto;
}

.glyphicon-setting-hos {
  font-size: 8px !important;
  margin-right: -10px;
}

/*Style to Tags Rules*/
.bootstrap .tags {
  background-color: #303030;
  border: 1px solid #303030;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.bootstrap .tags.focused {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.bootstrap .tags .tag-item {
  background: #428bca;
  border: 1px solid #357ebd;
  border-radius: 4px;
  color: #fff;
}

.bootstrap .tags .tag-item.selected {
  background: #d9534f;
  border: 1px solid #d43f3a;
  border-radius: 4px;
  color: #fff;
}

.bootstrap .tags .tag-item button {
  background: transparent;
  color: #000;
  opacity: 0.4;
}

.bootstrap .autocomplete {
  border-radius: 4px;
}

.bootstrap .autocomplete .suggestion-item.selected {
  color: #262626;
  background-color: #e9e9e9;
}

.bootstrap .autocomplete .suggestion-item em {
  font-weight: normal;
  background-color: #ffff00;
}

.bootstrap .autocomplete .suggestion-item.selected em {
  color: #262626;
  background-color: #ffff00;
}

.bootstrap .tags-input .tags .input {
  border: 0;
  outline: 0;
  margin: 2px;
  padding: 0;
  padding-left: 5px;
  float: left;
  height: 26px;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: rgba(66, 139, 202, 0.45) !important;
  border-radius: 5px !important;
}

.bootstrap .tags .input {
  color: black;
}

.add-tag {
  color: #36f936;
  font-size: 12px;
  font-weight: bold;
}

.remove-tag {
  color: #d92323;
  font-size: 8px;
  font-weight: bold;
}

.rules-calendar .dropdown-menu {
  color: black;
  background: #b3b9b7;
  background: rgba(0, 6, 4, 0.3);
}

.axis-x {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
  font-size: smaller;
}

.axis-x line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
  font-size: smaller;
  stroke-dasharray: 2, 2;
}

.axis-y {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
  font-size: smaller;
}

.axis-y line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
  font-size: smaller;
  stroke-dasharray: 2, 2;
}

.bottom-margin-row {
  margin-bottom: 20px;
}

.legend rect {
  fill: white;
  stroke: black;
  opacity: 0.8;
}

.legend {
  font-size: 8px;
}

.top-buffer {
  margin-top: 1px;
}

.chart-time {
  background-color: rgba(255, 255, 255, 0.7);
}

.ring-first {
  fill: #d52728;
}

.ring-second {
  fill: #fe7e0e;
}

.ring-third {
  fill: #1f77b3;
}

.ring-fourth {
  fill: #2c9f2c;
}

.ring-fifth {
  fill: #7334b3;
}

.ring-first path:nth-child(2) {
  fill: #616161;
}

.ring-second path:nth-child(2) {
  fill: #838383;
}

.ring-third path:nth-child(2) {
  fill: #6d6d6d;
}

.ring-fourth path:nth-child(2) {
  fill: #525252;
}

.ring-fifth path:nth-child(2) {
  fill: #737373;
}

/* Grid HOS ,custom col tags to height dinamic */
#rules-grid .ngCell {
  overflow: visible;
  position: static;
  height: auto !important;
  display: table-cell;
  top: 0;
  bottom: 0;
  background-color: inherit;
  float: left;
  padding-left: 5px;
}

#rules-grid .col1 {
  border-left: #d4d4d4 1px solid;
}

#rules-grid .ngRow {
  display: table-row;
  height: auto !important;
  overflow: visible;
  position: static;
  border-bottom: 1px solid #d4d4d4;
}

#rules-grid .ngCellText {
  height: auto !important;
  white-space: normal;
  overflow: visible;
  padding: 3px;
  padding-bottom: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

#rules-grid .ngVerticalBar {
  height: 0px !important;
}

#rules-grid .ngCanvas {
  height: auto !important;
  position: absolute;
}

.ngGridMaxPagesNumber {
  vertical-align: bottom !important;
}

.bottom-none {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.descr {
  height: 22px;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.asset-comment-txt {
  resize: none;
  margin-top: 5px;
  margin-bottom: 5px;
}

.asset-comment {
  font-size: 10px !important;
}

.asset-comment-container {
  margin: 0 0 1px 0;
  padding: 0;
  border: 1px solid white;
  border-image: none;
}

.star-rating {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.star-rating .star {
  padding: 1px;
  color: #ddd;
  font-size: 10px;
  text-shadow: 0.05em 0.05em #aaa;
  list-style-type: none;
  display: inline-block;
  cursor: pointer;
}

.star-rating .star.filled {
  color: #fd0;
}

.star-rating.readonly .star.filled {
  color: #666;
}

.comment-save-input {
  resize: none;
}

.asset-search-bar {
  z-index: 0;
  left: 50px;
  top: 45px;
}

.btn-asset-expand {
  text-align: center;
  display: table-cell;
  vertical-align: top;
  padding: 0;
  margin: 0;
}

.logoBrandImage {
  max-height: 50px;
  max-width: 100px;
  padding: 5px;
}

.collapsedWindows {
  position: absolute;
  bottom: 2%;
  left: 10px;
}

#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:before,
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:before,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:before,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}

#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  clear: both;
}

.input-group {
  width: 100%;
}

.ui-grid {
  border: 1px solid #94c0d2;
  box-sizing: content-box;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.ui-grid-vertical-bar {
  position: absolute;
  right: 0;
  width: 0;
}

.ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar,
.ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  width: 1px;
}

.ui-grid-scrollbar-placeholder {
  background-color: transparent;
}

.ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #94c0d2;
}

.ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #94c0d2;
}

.ui-grid-header-cell:last-child .ui-grid-vertical-bar {
  right: -1px;
  width: 1px;
  background-color: #94c0d2;
}

.ui-grid-clearfix:before,
.ui-grid-clearfix:after {
  content: "";
  display: table;
}

.ui-grid-clearfix:after {
  clear: both;
}

.ui-grid-invisible {
  visibility: hidden;
}

.ui-grid-contents-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.ui-grid-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ui-grid-top-panel-background {
  background: #daecf4;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #daecf4),
    color-stop(1, #ffffff)
  );
  background: -ms-linear-gradient(bottom, #daecf4, #ffffff);
  background: -moz-linear-gradient(center bottom, #daecf4 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #daecf4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#daecf4', GradientType=0);
}

.ui-grid-header {
  border-bottom: 1px solid #94c0d2;
  box-sizing: border-box;
}

.ui-grid-top-panel {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  background: #daecf4;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #daecf4),
    color-stop(1, #ffffff)
  );
  background: -ms-linear-gradient(bottom, #daecf4, #ffffff);
  background: -moz-linear-gradient(center bottom, #daecf4 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #daecf4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#daecf4', GradientType=0);
  -webkit-border-top-right-radius: -1px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: -1px;
  -moz-border-radius-topright: -1px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: -1px;
  border-top-right-radius: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: -1px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.ui-grid-header-viewport {
  overflow: hidden;
}

.ui-grid-header-canvas:before,
.ui-grid-header-canvas:after {
  content: "";
  display: table;
  line-height: 0;
}

.ui-grid-header-canvas:after {
  clear: both;
}

.ui-grid-header-cell-wrapper {
  position: relative;
  display: table;
  box-sizing: border-box;
  height: 100%;
}

.ui-grid-header-cell-row {
  display: table-row;
  position: relative;
}

.ui-grid-header-cell {
  position: relative;
  box-sizing: border-box;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #94c0d2;
  display: table-cell;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 0;
}

.ui-grid-header-cell:last-child {
  border-right: 0;
}

.ui-grid-header-cell .sortable {
  cursor: pointer;
}

.ui-grid-header-cell .ui-grid-sort-priority-number {
  margin-left: -8px;
}

.ui-grid-header .ui-grid-vertical-bar {
  top: 0;
  bottom: 0;
}

.ui-grid-column-menu-button {
  position: absolute;
  right: 1px;
  top: 0;
}

.ui-grid-column-menu-button .ui-grid-icon-angle-down {
  vertical-align: sub;
}

.ui-grid-column-menu-button-last-col {
  margin-right: 25px;
}

.ui-grid-column-menu {
  position: absolute;
}
/* Slide up/down animations */
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear;
  display: block !important;
}

.ui-grid-column-menu
  .ui-grid-menu
  .ui-grid-menu-mid.ng-hide-add.ng-hide-add-active,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-column-menu
  .ui-grid-menu
  .ui-grid-menu-mid.ng-hide-remove.ng-hide-remove-active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* Slide up/down animations */
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear;
  display: block !important;
}

.ui-grid-menu-button
  .ui-grid-menu
  .ui-grid-menu-mid.ng-hide-add.ng-hide-add-active,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-menu-button
  .ui-grid-menu
  .ui-grid-menu-mid.ng-hide-remove.ng-hide-remove-active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.ui-grid-filter-container {
  padding: 4px 10px;
  position: relative;
}

.ui-grid-filter-container .ui-grid-filter-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.ui-grid-filter-container .ui-grid-filter-button [class^="ui-grid-icon"] {
  position: absolute;
  top: 50%;
  line-height: 32px;
  margin-top: -16px;
  right: 10px;
  opacity: 0.66;
}

.ui-grid-filter-container .ui-grid-filter-button [class^="ui-grid-icon"]:hover {
  opacity: 1;
}

.ui-grid-filter-container .ui-grid-filter-button-select {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.ui-grid-filter-container
  .ui-grid-filter-button-select
  [class^="ui-grid-icon"] {
  position: absolute;
  top: 50%;
  line-height: 32px;
  margin-top: -16px;
  right: 0px;
  opacity: 0.66;
}

.ui-grid-filter-container
  .ui-grid-filter-button-select
  [class^="ui-grid-icon"]:hover {
  opacity: 1;
}

input[type="text"].ui-grid-filter-input {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  border: 1px solid #94c0d2;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

input[type="text"].ui-grid-filter-input:hover {
  border: 1px solid #94c0d2;
}

select.ui-grid-filter-select {
  padding: 0;
  margin: 0;
  border: 0;
  width: 90%;
  border: 1px solid #94c0d2;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

select.ui-grid-filter-select:hover {
  border: 1px solid #94c0d2;
}

.ui-grid-filter-cancel-button-hidden select.ui-grid-filter-select {
  width: 100%;
}

.ui-grid-render-container {
  position: inherit;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.ui-grid-render-container:focus {
  outline: none;
}

.ui-grid-viewport {
  min-height: 20px;
  position: relative;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.ui-grid-viewport:focus {
  outline: none !important;
}

.ui-grid-canvas {
  position: relative;
  padding-top: 1px;
}

.ui-grid-row:nth-child(odd) .ui-grid-cell {
  background-color: #ffffff;
}

.ui-grid-row:nth-child(even) .ui-grid-cell {
  background-color: #eaf4f9;
}

.ui-grid-row:last-child .ui-grid-cell {
  border-bottom-color: #94c0d2;
  border-bottom-style: solid;
}

.ui-grid-no-row-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 10%;
  background: #daecf4;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #daecf4),
    color-stop(1, #ffffff)
  );
  background: -ms-linear-gradient(bottom, #daecf4, #ffffff);
  background: -moz-linear-gradient(center bottom, #daecf4 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #daecf4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#daecf4', GradientType=0);
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #94c0d2;
  font-size: 1.8em;
  text-align: center;
}

.ui-grid-no-row-overlay > * {
  position: absolute;
  display: table;
  margin: auto 0;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.66;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-cell {
  overflow: hidden;
  float: left;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #94c0d2;
  box-sizing: border-box;
  font-size: calc(0.7em + 0.41332vmin);
}

.ui-grid-cell:last-child {
  border-right: 0;
}

.ui-grid-cell-contents {
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 100%;
}

.ui-grid-cell-contents-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
  display: none;
}

.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
  background-color: #f0f0ee;
  border-bottom: solid 1px #94c0d2;
}

.ui-grid-footer-panel-background {
  background: #daecf4;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #daecf4),
    color-stop(1, #ffffff)
  );
  background: -ms-linear-gradient(bottom, #daecf4, #ffffff);
  background: -moz-linear-gradient(center bottom, #daecf4 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #daecf4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#daecf4', GradientType=0);
}

.ui-grid-footer-panel {
  position: relative;
  border-bottom: 1px solid #94c0d2;
  border-top: 1px solid #94c0d2;
  overflow: hidden;
  font-weight: bold;
  background: #daecf4;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #daecf4),
    color-stop(1, #ffffff)
  );
  background: -ms-linear-gradient(bottom, #daecf4, #ffffff);
  background: -moz-linear-gradient(center bottom, #daecf4 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #daecf4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#daecf4', GradientType=0);
  -webkit-border-top-right-radius: -1px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: -1px;
  -moz-border-radius-topright: -1px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: -1px;
  border-top-right-radius: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: -1px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.ui-grid-grid-footer {
  float: left;
  width: 100%;
}

.ui-grid-footer-viewport {
  overflow: hidden;
}

.ui-grid-footer-canvas {
  position: relative;
}

.ui-grid-footer-canvas:before,
.ui-grid-footer-canvas:after {
  content: "";
  display: table;
  line-height: 0;
}

.ui-grid-footer-canvas:after {
  clear: both;
}

.ui-grid-footer-cell-wrapper {
  position: relative;
  display: table;
  box-sizing: border-box;
  height: 100%;
}

.ui-grid-footer-cell-row {
  display: table-row;
}

.ui-grid-footer-cell {
  overflow: hidden;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #94c0d2;
  box-sizing: border-box;
  display: table-cell;
}

.ui-grid-footer-cell:last-child {
  border-right: 0;
}

input[type="text"].ui-grid-filter-input {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  border: 1px solid #94c0d2;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

input[type="text"].ui-grid-filter-input:hover {
  border: 1px solid #94c0d2;
}

.ui-grid-menu-button {
  z-index: 2;
  position: absolute;
  right: 0;
  top: 0;
  background: #daecf4;
  border: 1px solid #94c0d2;
  cursor: pointer;
  height: 31px;
  font-weight: normal;
}

.ui-grid-menu-button .ui-grid-icon-container {
  margin-top: 3px;
}

.ui-grid-menu-button .ui-grid-menu {
  right: 0;
}

.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid {
  overflow: scroll;
  border: 1px solid #94c0d2;
}

.ui-grid-menu {
  z-index: 2;
  position: absolute;
  padding: 0 10px 20px 10px;
  cursor: pointer;
  box-sizing: border-box;
}

.ui-grid-menu .ui-grid-menu-inner {
  background: #daecf4;
  border: 1px solid #94c0d2;
  position: relative;
  white-space: nowrap;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 12px 12px -14px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 12px 12px -14px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 12px 12px -14px rgba(0, 0, 0, 0.2);
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button {
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 1px 1px;
  font-size: 8px;
  line-height: 1;
  border-radius: 2px;
  color: transparent;
  background-color: transparent;
  border-color: transparent;
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus {
  color: #333333;
  text-decoration: none;
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled],
fieldset[disabled]
  .ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled,
fieldset[disabled]
  a.ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button {
  pointer-events: none;
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:hover {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active,
.open
  > .dropdown-toggle.ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active:hover,
.open
  > .dropdown-toggle.ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active:focus,
.open
  > .dropdown-toggle.ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active.focus,
.open
  > .dropdown-toggle.ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button.focus {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active,
.open
  > .dropdown-toggle.ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button {
  background-image: none;
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled]:hover,
fieldset[disabled]
  .ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled]:focus,
fieldset[disabled]
  .ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled].focus,
fieldset[disabled]
  .ui-grid-menu
  .ui-grid-menu-inner
  .ui-grid-menu-close-button.focus {
  background-color: transparent;
  border-color: transparent;
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button .badge {
  color: transparent;
  background-color: transparent;
}

.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button > i {
  opacity: 0.75;
  color: black;
}

.ui-grid-menu .ui-grid-menu-inner ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.ui-grid-menu .ui-grid-menu-inner ul li {
  padding: 0px;
}

.ui-grid-menu .ui-grid-menu-inner ul li button {
  min-width: 100%;
  padding: 8px;
  text-align: left;
  background: transparent;
  border: none;
}

.ui-grid-menu .ui-grid-menu-inner ul li button:hover,
.ui-grid-menu .ui-grid-menu-inner ul li button:focus {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item-active {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  background-color: #cecece;
}

.ui-grid-menu .ui-grid-menu-inner ul li:not(:last-child) > button {
  border-bottom: 1px solid #94c0d2;
}

.ui-grid-sortarrow {
  right: 5px;
  position: absolute;
  width: 20px;
  top: 0;
  bottom: 0;
  background-position: center;
}

.ui-grid-sortarrow.down {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@font-face {
  font-family: "ui-grid";
  src: url("ui-grid.eot");
  src: url("ui-grid.eot#iefix") format("embedded-opentype"),
    url("ui-grid.woff") format("woff"), url("ui-grid.ttf") format("truetype"),
    url("ui-grid.svg?#ui-grid") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
	font-family: 'MontserratRegular';
	src: url('montserrat_regular2.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'AftikaRegular';
	src: url('aftikar_regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}


/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'ui-grid';
    src: url('@{font-path}ui-grid.svg?12312827#ui-grid') format('svg');
  }
}
*/
[class^="ui-grid-icon"]:before,
[class*=" ui-grid-icon"]:before {
  font-family: "ui-grid";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.ui-grid-icon-blank::before {
  width: 1em;
  content: " ";
}
/*
* RTL Styles
*/
.ui-grid[dir="rtl"] .ui-grid-header-cell,
.ui-grid[dir="rtl"] .ui-grid-footer-cell,
.ui-grid[dir="rtl"] .ui-grid-cell {
  float: right !important;
}

.ui-grid[dir="rtl"] .ui-grid-column-menu-button {
  position: absolute;
  left: 1px;
  top: 0;
  right: inherit;
}

.ui-grid[dir="rtl"] .ui-grid-cell:first-child,
.ui-grid[dir="rtl"] .ui-grid-header-cell:first-child,
.ui-grid[dir="rtl"] .ui-grid-footer-cell:first-child {
  border-right: 0;
}

.ui-grid[dir="rtl"] .ui-grid-cell:last-child,
.ui-grid[dir="rtl"] .ui-grid-header-cell:last-child {
  border-right: 1px solid #94c0d2;
  border-left: 0;
}

.ui-grid[dir="rtl"] .ui-grid-header-cell:first-child .ui-grid-vertical-bar,
.ui-grid[dir="rtl"] .ui-grid-footer-cell:first-child .ui-grid-vertical-bar,
.ui-grid[dir="rtl"] .ui-grid-cell:first-child .ui-grid-vertical-bar {
  width: 0;
}

.ui-grid[dir="rtl"] .ui-grid-menu-button {
  z-index: 2;
  position: absolute;
  left: 0;
  right: auto;
  background: #daecf4;
  border: 1px solid #94c0d2;
  cursor: pointer;
  min-height: 27px;
  font-weight: normal;
}

.ui-grid[dir="rtl"] .ui-grid-menu-button .ui-grid-menu {
  left: 0;
  right: auto;
}

.ui-grid[dir="rtl"] .ui-grid-filter-container .ui-grid-filter-button {
  right: initial;
  left: 0;
}

.ui-grid[dir="rtl"]
  .ui-grid-filter-container
  .ui-grid-filter-button
  [class^="ui-grid-icon"] {
  right: initial;
  left: 10px;
}
/*
   Animation example, for spinners
*/
.ui-grid-animate-spin {
  -moz-animation: ui-grid-spin 2s infinite linear;
  -o-animation: ui-grid-spin 2s infinite linear;
  -webkit-animation: ui-grid-spin 2s infinite linear;
  animation: ui-grid-spin 2s infinite linear;
  display: inline-block;
}

@-moz-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-webkit-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-o-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-ms-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.ui-grid {
  color: #003f59;
}

/**microphone styles */
.microphone-default {
  display: inline-block;
  color: black !important;
}

.microphone-default button {
  color: black !important;
}

.microphone-active {
  display: inline-block;
  color: red !important;
}

.microphone-active button {
  color: red !important;
}

.microphone-hide {
  visibility: hidden;
  display: none;
}

.button-menu-item {
  margin-bottom: 4px;
  height: 25%;
  text-align: left;
  text-transform: none;
  word-wrap: break-word !important;
}

div.masonryPanelBody .btn-group-vertical {
  width: 100%;
  height: 100%;
  border: 0px solid;
}

.empty {
  width: inherit;
}

.navbar-inverse .navbar-hamburger .icon-bar {
  background-color: #888;
}

.navbar-hamburger {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}

.navbar-hamburger-menu {
  z-index: 1001;
}

.navbar-inverse .navbar-nav > li > a.navbar-hamburger.dropdown-toggle:hover {
  background-color: white;
}

.navbar-inverse .navbar-nav > li > a.navbar-hamburger.dropdown-toggle:focus {
  outline: 0;
  background-color: white;
}

.navbar-default .navbar-nav > li > a.navbar-hamburger.dropdown-toggle:hover {
  background-color: white;
}

.navbar-default .navbar-nav > li > a.navbar-hamburger.dropdown-toggle:focus {
  outline: 0;
  background-color: white;
}

.navbar-hamburger .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #999999;
  -ms-border-radius: 1px;
  border-radius: 1px;
}

.navbar-hamburger .icon-bar + .icon-bar {
  margin-top: 4px;
}

.navbar-collapse.collapse.show-nav-xs {
  display: inherit;
}

@media (min-width: 767px) {
  .navbar-collapse.collapse.show-nav-xs {
    display: none !important;
  }
}

#main-screen-container {
  background-color: #dbdbdb;
}

div.masonryPanelBody.vertical-scroll {
  overflow-y: auto !important;
}

.sk-three-bounce {
  width: 80px;
  text-align: center;
}

.sk-three-bounce .sk-child {
  width: 20px;
  height: 20px;
  background-color: #6164c1;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-three-bounce {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.asset-details-title {
  margin: 0px;
  font-weight: bold;
}

/* heights */
.responsive-font {
  font-size: inherit;
}

div > ul.gridFooter {
  margin: 0;
}

.gridFooter {
  font-size: 1.8em;
}

.half-panel-height {
  height: 25vh;
}

.half-panel-height .panel {
  height: 100%;
}

.half-panel-height .panel-body {
  height: calc(100% - 38px);
  margin-left: 10px;
  margin-right: 10px;
}

.default-panel-height {
  height: 55vh;
}

.default-panel-height .panel {
  height: 100%;
}

.default-panel-height .panel-body {
  height: calc(100% - 38px);
  margin-left: 10px;
  margin-right: 10px;
}

.default-panel-height-1 {
  height: 60vh;
}

.default-panel-height-1 .panel {
  height: 100%;
}

.default-panel-height-1 .panel-body {
  height: calc(100% - 38px);
  margin-left: 10px;
  margin-right: 10px;
}

.default-panel-height-2 {
  height: 110vh;
}

.default-panel-height-2 .panel {
  height: 100%;
}

.default-panel-height-2 .panel-body {
  height: calc(100% - 38px);
  margin-left: 10px;
  margin-right: 10px;
}

.default-panel-height-3 {
  height: 75vh;
}

.default-panel-height-3 .panel {
  height: 100%;
}

.default-panel-height-3 .panel-body {
  height: calc(100% - 38px);
  margin-left: 10px;
  margin-right: 10px;
}

.default-panel-height-4 {
  height: 65vh;
}

.default-panel-height-4 .panel {
  height: 100%;
}

.default-panel-height-4 .panel-body {
  height: calc(100% - 40px);
  margin-left: 10px;
  margin-right: 10px;
}

.default-map-height {
  height: 50vh;
}

.default-map-height .panel {
  height: 100%;
}

.default-map-height .panel-body {
  height: calc(100% - 38px);
}

.default-map-height-2 {
  height: 100vh;
}

.default-map-height-2 .panel {
  height: 100%;
}

.default-map-height-2 .panel-body {
  height: calc(100% - 38px);
}

.eld-status-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.actions-container {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  padding: 5px 15px;
}

/* phones and some tablets */
@media screen and (max-height: 767px) {
  .half-panel-height {
    height: 40vh;
  }

  .default-panel-height {
    height: 80vh;
  }

  .default-panel-height-2 {
    height: 160vh;
  }

  .default-map-height {
    height: 80vh;
  }

  .default-map-height-2 {
    height: 160vh;
  }
}

/* iphone 5 */
@media screen and (device-aspect-ratio: 40/71) and (max-height: 568px) {
  .half-panel-height {
    height: 274px;
  }

  .default-panel-height {
    height: 548px;
  }

  .default-panel-height-2 {
    height: 1096px;
  }

  .default-map-height {
    height: 548px;
  }

  .default-map-height-2 {
    height: 1096px;
  }
}

@media screen and (device-aspect-ratio: 40/71) and (max-height: 320px) {
  .half-panel-height {
    height: 110px;
  }

  .default-panel-height {
    height: 320px;
  }

  .default-panel-height-2 {
    height: 640px;
  }

  .default-map-height {
    height: 320px;
  }

  .default-map-height-2 {
    height: 640px;
  }
}

/* phones */
@media (max-width: 767px) {
  .gridFooter {
    font-size: 3em;
  }

  .responsive-font {
    font-size: 50%;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .gridFooter {
    font-size: 2.66em;
  }

  .responsive-font {
    font-size: 60%;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .gridFooter {
    font-size: 2.33em;
  }

  .responsive-font {
    font-size: 70%;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .gridFooter {
    font-size: 2em;
  }

  .responsive-font {
    font-size: 80%;
  }
}

div.panel-body.masonryPanelBody div.row.grid-row {
  height: 100% !important;
  max-height: 100% !important;
}

div.panel-body.masonryPanelBody div.row.grid-row-footer {
  height: calc(100% - 81px) !important;
  max-height: 100% !important;
}

div.panel-body.masonryPanelBody div.grid-colum {
  height: 100% !important;
  max-height: 100% !important;
}

div.panel-body.masonryPanelBody div.col-xs-12.grid-column {
  height: 100% !important;
  max-height: 100% !important;
}

div.grid-view {
  height: 100% !important;
  max-height: 100% !important;
}

.well-xs {
  padding: 9px;
  border-radius: 3px;
  margin: 5px;
  margin-bottom: 1px;
}

.button-summary {
  margin-bottom: 4px;
  height: 25%;
  text-align: left;
  text-transform: none;
  word-wrap: break-word !important;
  font-size: 3em;
}

.device-status-icon-check {
  font-size: 0.7em !important;
  margin-left: -4px;
  vertical-align: top;
}

.device-status-online-check {
  width: 100%;
  height: 100%;
  vertical-align: central;
  text-align: center;
  font-size: large;
}

.loading-panel {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  top: 0;
  left: 0;
}

.loading-panel img {
  position: absolute;
  left: calc((100% - 150px) / 2);
  width: 150px;
  height: 150px;
  top: auto;
  bottom: calc((100% - 150px) / 2);
}

.color-box {
  width: 20px;
  height: 20px;
  display: block;
}

.popover {
  border: 0px;
  padding: 0px;
}

.popover .popover-content {
  padding: 0px;
  border: 0px;
}

div.ui-grid-cell input.ng-valid {
  padding: 0px;
  border: 0px;
}

div .input-simple-div {
  padding: 3px;
  background-color: white;
  border: 1px solid #00aff0;
  display: inline-block;
  border-radius: 2px;
  color: #00aff0;
}

.input-simple-div input[type="text"] {
  width: 150px;
  height: 20px;
  border: 0;
}

.input-simple-div input[type="button"] {
  height: 20px;
  width: 20px;
  background: white;
  color: #00aff0;
  border: 0;
  -webkit-appearance: none;
  border-radius: 50%;
}

.input-simple-div input[type="button"]:hover {
  background-color: #00aff0;
  color: white;
}

#input-simple-div *:focus {
  outline: none;
}

.reportFrame {
  width: 100%;
  min-height: 300px;
  border: none;
}

.alerts-tags-search-button {
  position: absolute;
  top: 104px;
  right: 40px;
}

.alerts-since-search-button {
  position: absolute;
  top: 0px;
  right: 15px;
  z-index: 2;
}

.sidenav-trigger {
  border: 0px;
  background-color: transparent;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  background-color: #fff; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 40px; /* Place content 60px from the top */
  transition: width 0.25s ease-in-out; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav-expand {
  width: 350px;
}

/* The navigation menu links */
.sidenav a {
  /*padding: 8px 8px 8px 32px;*/
  text-decoration: none;
  /*font-size: 25px;*/
  color: #818181;
  /*display: block;*/
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover,
.offcanvas a:focus {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left 0.2s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

/*
    tree-view
*/
.tree-item {
  padding: 0px;
  font-size: 18px;
  font-weight: normal;
}

.tree-item:hover {
  background-color: rgba(230, 230, 230, 0.4);
}

.treeItemLink {
  height: 40px;
  width: calc(100% - 50px);
  display: inline-block;
  padding: 10px 15px 10px 0px !important;
}

.treeItemLink span {
  width: 100%;
  cursor: pointer;
}

.moreVert {
  width: 28px;
  display: inline-block;
  padding: 0px;
}

.first-icon {
  background-color: forestgreen;
}

/* .angular-ui-tree-node:hover {
    background-color: #ccc;
} */

.angular-ui-tree {
  margin-left: 5% !important;
}

.error-message {
  color: red;
}

div#statusGrid > div > div.row {
  border-top: solid 1px grey;
}

/* Custom buttons styles*/
.bookmark-selected-btn {
  background-color: #ffd700;
}

.bookmark-all-btn {
  color: #f0ecec;
  background-color: #008000;
}

.bookmarks-dropdown {
  position: absolute;
  left: -40px;
  top: 25px;
}

.fill-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.packets-container
  .ui-grid-row.ui-grid-row-selected
  > [ui-grid-row]
  > .ui-grid-cell {
  background-color: #fdfaa5;
}

.uiFullscreen {
  padding: 1px 4px;
  border-radius: 3px;
}

.uiFullscreen:hover {
  background-color: #c0c0c0;
}

div:-moz-full-screen {
  height: 100%;
  width: 100%;
}

div:-webkit-full-screen {
  height: 100%;
  width: 100%;
}

div:fullscreen {
  height: 100%;
  width: 100%;
}

.history-container
  .ui-grid-row.ui-grid-row-selected
  > [ui-grid-row]
  > .ui-grid-cell {
  background-color: #fdfaa5;
}

.trace-point-selected {
  filter: hue-rotate(80deg);
  z-index: 2000 !important;
}

.panel-right {
  float: left;
}

@media (min-width: 1200px) {
  .panel-right {
    float: right;
  }
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: rgba(202, 202, 202, 0.44);
}

.full-blue-row {
  color: #ffffff;
  background-color: #0000ff !important;
}

.full-red-row {
  color: #ffffff;
  background-color: #ff0000 !important;
}

.full-yellow-row {
  color: black;
  background-color: #ffff00 !important;
}

.cell-content-left {
  text-align: left;
}

.cell-content-left div.ui-grid-cell-contents {
  text-align: left;
}

.cell-content-right {
  text-align: right;
}

.cell-content-right div.ui-grid-cell-contents {
  text-align: right;
}

.device-analysis-container {
  height: 100%;
  max-height: calc(100% - 30px);
}

.device-analysis-container
  .ui-grid-row.ui-grid-row-selected
  > [ui-grid-row]
  > .ui-grid-cell {
  background-color: rgb(151, 231, 255) !important;
  color: #000000;
}

.ui-select-search {
  font-size: 14px;
}

.short-grid-row {
  height: 90% !important;
  max-height: 100% !important;
}

.fleet-map-popup-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.loading-panel-analysis {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  height: calc(100% - 85px);
  width: 75%;
  height: calc(100% - 190px);
}

.loading-panel-analysis img {
  position: absolute;
  left: calc((100% - 150px) / 2);
  width: 150px;
  height: 150px;
  top: auto;
  bottom: calc((100% - 150px) / 2);
}

.loading-panel-analysis-1 {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  width: 100%;
  height: calc(100% - 85px);
  text-align: center;
  vertical-align: middle;
  /* top: 70px; */
  left: 0px;
}

.loading-panel-analysis-1 img {
  position: absolute;
  left: calc((100% - 150px) / 2);
  width: 150px;
  height: 150px;
  top: auto;
  bottom: calc((100% - 150px) / 2);
}

.table1 tr {
  padding: 20px 15px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #f95e00;
  text-transform: uppercase;
}

.table1 td {
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  font-weight: 300;
  font-size: 12px;
  color: #f95e00;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

#status-grid::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
}

#status-grid::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c8c8c8;
}

#status-grid::-webkit-scrollbar-thumb:hover {
  background: #a9a9a9;
}

.nav.nav-tabs {
  margin-left: 15px;
}

.box {
  /* width: 200px; */
  /* margin: 50px auto; */
  background: #b1e1f7;
  /* padding: 20px; */
  text-align: left;
  /* font-weight: 900; */
  color: #000;
  font-family: arial;
  position: relative;
  border-radius: 5px;
}

.bb1:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 5px solid transparent;
  border-right: 5px solid #b1e1f7;
  border-top: 5px solid #b1e1f7;
  border-bottom: 5px solid transparent;
  left: -6px;
  top: 0px;
}

.box-reply {
  /* width: 200px; */
  /* margin: 50px auto; */
  height: 88px;
  background: #b7b7b7;
  /* padding: 20px; */
  text-align: left;
  /* font-weight: 900; */
  color: white;
  font-family: arial;
  position: relative;
  border-radius: 5px;
}

.bbreply:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 5px solid transparent;
  border-right: 5px solid #b7b7b7;
  border-top: 5px solid #b7b7b7;
  border-bottom: 5px solid transparent;
  left: -6px;
  top: 0px;
}

.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0px;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;
}

.column-criteria-menu {
  max-height: 350px;
  max-width: 200px;
  background-color: #daecf4;
  padding: 8px;
  border: 1px solid #94c0d2;
  z-index: 1000;
  position: relative;
  top: -37px;
  left: 149px;
  border: 1px solid #94c0d2;
}

.fill-space-highlight {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.criteria-menu-wrapper {
  margin-top: 10px; /* remove when back button gets fixed */
  padding: 8px;
  min-width: 150px;
  max-height: 300px !important;
}

.criteria-menu-fields-container {
  position: relative;
  bottom: 15px;
}

.criteria-menu-back-button {
  background: none;
  font-size: 20px;
  position: relative;
  top: -15px;
  right: 10px;
  border: 0;
  padding-bottom: 0px;
}

.criteria-menu-fields {
  margin-bottom: 8px;
  font-size: small;
}

.field-1 {
  margin-right: 10px;
}

.status-row {
  padding: 8px 0;
  border-bottom: 1px solid #dddddd;
}

.status-left-col {
  padding-left: 0;
}

.grid-folding-panel {
  z-index: 1;
  /* overflow-x: hidden; */
  transition: 0.3s;
}

.button-wrapper {
  height: 700px;
  width: 20px;
  position: sticky;
  left: 100%;
  bottom: 100%;
}

.button-expand {
  height: 100%;
  width: 100%;
  background-color: #178acc;
  border: 0.5px dashed #c0bfbf;
  font-size: 2vh;
  color: #ffffff;
  display: inline-block;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.button-expand:hover {
  background-color: #c5e7fa;
  border: 0.5px dashed #c5e7fa;
  color: black;
}

.tab-content {
  height: calc(100% - 81px);
}

.tab-pane {
  height: 100%;
}

.analysis-view-panel {
  height: calc(100% - 5px) !important;
}

.analysis-grid {
  max-height: calc(100% - 120px);
  height: calc(100% - 120px);
}

.packets-grid-container {
  height: calc(100% - 75px) !important;
}

.packets-grid-column {
  height: calc(100% - 38px);
}

.device-health-wrapper {
  height: 800px;
}

.analysis-grid-map {
  height: 300px;
}

.device-health-main {
  height: 900px;
}

.device-health-main-wrapper {
  display: flex;
  flex-direction: row;
  padding: 0 15px;
  height: calc(100% - 98px) !important;
}

.analysis-view-packets {
  height: calc(100% - 32px) !important;
}

.ui-grid-viewport {
  overflow-anchor: none !important;
}

.device-health-grid {
  height: 700px;
  width: calc(100% - 20px);
}

.device-health-serial-link {
  margin: 5px;
  display: flex;
  justify-content: space-between;
}

.device-health-serial-link > a {
  color: #3543875c;
}

.device-health-serial-link:hover > a {
  color: #354387;
  z-index: 800 !important;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .analysis-view-packets {
    height: calc(100% - 150px);
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
  #appWrapper {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 100vh;
    overflow-y: hidden;
  }

  #sidebar {
    right: -30em;
    z-index: 2000;
  }

  .navbar.navbar-default {
    margin-left: 10px;
  }

  .sidenav {
    /* left: 100px; */
    z-index: 2000;
  }

  .analysis-grid {
    height: calc(100% - 200px);
  }

  .analysis-grid-map {
    height: 260px;
  }

  .loading-panel-analysis {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    height: calc(100% - 85px);
    width: 70%;
    height: calc(100% - 230px);
  }

  .loading-panel-analysis img {
    position: absolute;
    left: calc((100% - 150px) / 2);
    width: 150px;
    height: 150px;
    top: auto;
    bottom: calc((100% - 150px) / 2);
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) and (orientation: landscape) {
  #appWrapper {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    overflow-x: hidden;
    width: 100%;
  }

  .analysis-grid {
    height: calc(100% - 200px);
  }

  .analysis-grid-map {
    height: 260px;
  }

  .loading-panel-analysis {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    height: calc(100% - 85px);
    width: 70%;
    height: calc(100% - 230px);
  }

  .loading-panel-analysis img {
    position: absolute;
    left: calc((100% - 150px) / 2);
    width: 150px;
    height: 150px;
    top: auto;
    bottom: calc((100% - 150px) / 2);
  }
}

/* Ipad Pro */
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  #appWrapper {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 180vw;
    overflow-x: hidden;
    z-index: 300;
  }

  .ui-view-container {
    width: fit-content;
    margin-left: 25%;
  }

  .navbar.navbar-default {
    margin-left: 25%;
  }

  .sidenav {
    left: 380px;
  }

  #sidebar {
    z-index: 2000;
  }

  .analysis-grid {
    height: calc(100% - 150px);
  }

  .analysis-grid-map {
    height: 260px;
  }

  .loading-panel-analysis {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    height: calc(100% - 85px);
    width: 70%;
    height: calc(100% - 230px);
  }

  .loading-panel-analysis img {
    position: absolute;
    left: calc((100% - 150px) / 2);
    width: 150px;
    height: 150px;
    top: auto;
    bottom: calc((100% - 150px) / 2);
  }
}

.ui-grid-selectable .ui-grid-disable-selection {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  cursor: auto;
}

.watermark {
  border: 1px lightblue solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.25;
  width: 100%;
  text-align: center;
  z-index: 1000;
  font-size: 3em;
}

.health-wrapper {
  height: calc(100vh - 132px) !important;
}

.form-group .date-picker {
  min-width: 180px !important;
  width: 190px !important;
}

.panelInventoryReport {
    min-height: 400px;
    margin: 20px;
    height: auto;
}
.noDataPanel {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    height: 400px;
}
.noDataMessage {
    position: relative;
    top: 50%;
    left: 50%;
}
.loadingMessage {
    display: inline;
    top: auto
}

.withLoadingGif {
    width: 35px;
}
.withMargin15px {
    margin: 15px
}
.printSectionInventoryReport {
    border: 1px solid #2fa4e7;
    height: 300px;
    width: 105%;
    overflow-y: scroll;
    overflow-x: hiidden;
}
.width20 {
    width: 20%;
}
.frameInventoryReport {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
}
hr.solid {
  border-top: 3px solid #bbb;
}