 


.vis2  .background {
    fill: #eee;
  }
  
.vis2 .highlight-bar {
  
      fill: black;
      stroke: white;
      opacity: 0.1;
  }
  
.vis2 line {
    stroke: #fff;
  } 

  .vis2 g.column text,
  .vis2 g.row text{
      font-weight: 400 ;
  }
  .vis2  text.active {
    fill : red;
  }

.vis2 .sliderContainer {
    width: 100%;
}

.vis2 .time-slide {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.vis2 .time-slide:hover {
    opacity: 1;
}

.vis2 .time-slide::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}

.vis2 .time-slide::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}
.vis2 .filter-btn{ 
    float:left;
    color: #333;
    width: auto;
    text-align: center;
    padding: 0 10px;
    background: #f0f0f0;
    line-height: 1.5em;
    height: auto;
}
.vis2 .filter-btn.active {
    background: #ea0000;
    color: #fff;
}

.vis2 .bubble {
    background: red;
    color: white;
    padding: 4px 12px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
}
.vis2  .bubble::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: red;
    top: -1px;
    left: 50%;
}
.vis2 svg {
    border: 0px solid gray;
    font: 10px sans-serif;
    font-weight: normal;
    }
    
.vis2 g.am-axis text {
font-size: 8px;
}

.vis2 .domain {
    fill: none; 
}

.vis2 .tick > line{
stroke: rgb(252, 252, 252);
stroke-width: 1px;
stroke-opacity: 0.25;
}


  