.gantt .grid-background {
  fill: none;
}
* { touch-action: pan-y; }
.gantt .grid-header {
  fill: #ffffff;
  stroke: #e0e0e0;
  stroke-width: 1.4;
}

.gantt .grid-row {
  fill: #ffffff;
}

.gantt .grid-row:nth-child(even) {
  fill: #FAFAFA;
}

.gantt .row-line {
  stroke: #ebeff2;
}

.gantt .tick {
  stroke: #e0e0e0;
  stroke-width: 0.2;
}

.gantt .tick.thick {
  stroke-width: 0.4;
}

.gantt .today-highlight {
  fill: #2490ef;
  opacity: 0.5;
}

.gantt .arrow {
  fill: none;
  stroke: #888;
  stroke-width: 1.4;
}
/*
fill: rgba(184,194,204,.3);
  -webkit-filter: drop-shadow(0 1px 10px rgba(113,158,206,0.8));
  filter: drop-shadow( 0 1px 10px rgba(113,158,206,0.8));
  */

.gantt .bar {
  fill: #b8c2cc;
  stroke: #a6a6a6;
  stroke-width: 0;
  transition: stroke-width .3s ease;
  user-select: none;
}

.gantt .bar-progress {
  fill: #26c13e;
  /*16ad2d*/
}

.gantt .bar-invalid {
  fill: transparent;
  stroke: #8D99A6;
  stroke-width: 1;
  stroke-dasharray: 5;
}

.gantt .bar-invalid ~ .bar-label {
  fill: #555;
}

.gantt .bar-label {
  fill: #fff;
  dominant-baseline: central;
  text-anchor: middle;
  font-size: 12px;
  font-weight: lighter;
}

.gantt .bar-label.big {
  fill: #555;
  text-anchor: start;
}

.gantt .handle {
  fill: #ddd;
  cursor: ew-resize;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}

.gantt .bar-wrapper {
  cursor: pointer;
  outline: none;
}

.gantt .bar-wrapper:hover .bar {
  fill: #a9b5c1;
  stroke-width: 1.4;
}

.gantt .bar-wrapper:hover .bar-progress {
  /*fill: #009a18;*/
  fill:#16ad2d
}

.gantt .bar-wrapper:hover .handle {
  visibility: visible;
  opacity: 1;
}

.gantt .bar-wrapper.active .bar {
  fill: #a9b5c1;
  stroke-width: 1.4;
}

.gantt .bar-wrapper.active .bar-progress {
  fill: #16ad2d;
}

.gantt .lower-text, .gantt .upper-text {
  font-size: 12px;
  text-anchor: middle;
}

.gantt .upper-text {
  fill: #555;
}

.gantt .lower-text {
  fill: #333;
}

.gantt .hide {
  display: none;
}

.gantt-container {
  position: relative;
  overflow: hidden;
  font-size: 12px;
}

 .popup-wrapper {
   z-index: 3000;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 12px;
  color: #000;
  border-radius: 3px;
  box-shadow: lightgrey 0 0 2px 1px;
}

 .popup-wrapper .title {

  border-bottom: 3px solid #a3a3ff;
  padding: 10px;
}

 .popup-wrapper .subtitle {
  padding: 10px;
  color: #dfe2e5;
}

 .popup-wrapper .pointer {
  position: absolute;
  height: 5px;
  margin: 0 0 0 -5px;
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.8);
}

