/* Students:
 * =========
 * Add styling to your d3 chart with this file. */

  .tooltip {
    position: absolute;
    width: 135px;
    height: 60px;
    padding: 3px;
    padding-top: 4px;
    font: 12px sans-serif;
    color: white;
    text-align: center;
    background: #000;
    border: 0;
    border-radius: 10px;
  }
  
  .axis-text {
    font-family: sans-serif;
    font-weight: bold;
    fill: black;
    text-anchor: middle;
  }
  
  .active {
    font-weight: bold;
    fill: black;
    fill: black;
    transition: fill 0.3s ease-out;
    text-anchor: middle;
  }
  
  .inactive {
    font-weight: lighter;
    fill: #CACFD2;
    transition: fill 0.3s ease-out;
    text-anchor: middle;
  }
  
  .inactive:hover {
    fill: #e75480;
    cursor: pointer;
  }
  
