.gantt .grid-background {
    fill: none;
}

.gantt .grid-header {
    fill: #2b2b2b;
    stroke: #4d4d4d;
    stroke-width: 1.4;
}

.gantt .grid-row {
    fill: #2b2b2b;
}

.gantt .grid-row:nth-child(even) {
    fill: #333333;
}

.gantt .row-line {
    stroke: #2b2b2b;
}

.gantt .tick {
    stroke: #4d4d4d;
    stroke-width: 0.2;
}

.gantt .tick.thick {
    stroke-width: 0.4;
}

.gantt .today-highlight {
    fill: #4d4d4d;
    opacity: 0.5;
}

.gantt .arrow {
    fill: none;
    stroke: #ccc;
    stroke-width: 1.4;
}

.gantt .bar {
    fill: #3b4d59;
    stroke: #667580;
    stroke-width: 0;
    transition: stroke-width .3s ease;
    user-select: none;
}

.gantt .bar-progress {
    fill: #4d4dff;
}

.gantt .bar-invalid {
    fill: transparent;
    stroke: #667580;
    stroke-width: 1;
    stroke-dasharray: 5;
}

.gantt .bar-invalid ~ .bar-label {
    fill: #888;
}

.gantt .bar-label {
    fill: #fff;
    dominant-baseline: central;
    text-anchor: middle;
    font-size: 12px;
    font-weight: lighter;
}

.gantt .bar-label.big {
    fill: #888;
    text-anchor: start;
}

.gantt .handle {
    fill: #666;
    cursor: ew-resize;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.gantt .bar-wrapper {
    cursor: pointer;
    outline: none;
}

.gantt .bar-wrapper:hover .bar {
    fill: #4d5c66;
}

.gantt .bar-wrapper:hover .bar-progress {
    fill: #3d3dff;
}

.gantt .bar-wrapper:hover .handle {
    visibility: visible;
    opacity: 1;
}

.gantt .bar-wrapper.active .bar {
    fill: #4d5c66;
}

.gantt .bar-wrapper.active .bar-progress {
    fill: #3d3dff;
}

.gantt .lower-text, .gantt .upper-text {
    font-size: 12px;
    text-anchor: middle;
}

.gantt .upper-text {
    fill: #888;
}

.gantt .lower-text {
    fill: #aaa;
}

.gantt .hide {
    display: none;
}

.gantt-container {
    position: relative;
    overflow: auto;
    font-size: 12px;
}

.gantt-container .popup-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 0;
    color: #959da5;
    border-radius: 3px;
}

.gantt-container .popup-wrapper .title {
    border-bottom: 3px solid #4d4dff;
    padding: 10px;
}

.gantt-container .popup-wrapper .subtitle {
    padding: 10px;
    color: #6c737b;
}

.gantt-container .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);
}

