html,
body {
  padding: 0;
  margin: 0;
}

.bar {
  fill: rgb(180, 54, 60);
}

.bar:hover {
  fill: rgb(82, 147, 177);
  opacity: 0.7;
}

.grid {
  color: lightgray;
  stroke-opacity: 0.7;
  shape-rendering: crispEdges;
}
/* contents of d3 style- copied here because of deployment issues */
.aText {
  font-family: sans-serif;
  font-size: 16px;
  text-anchor: middle;
}

.active {
  font-weight: bold;
  font-family: sans-serif;
  fill: #000;
  transition: fill 0.3s ease-out;
  text-anchor: middle;
}

.inactive {
  font-weight: lighter;
  font-family: sans-serif;
  fill: #c9c9c9;
  transition: fill 0.3s ease-out;
  text-anchor: middle;
}

.inactive:hover {
  fill: #000;
  cursor: pointer;
}

.axis-text {
  font-family: sans-serif;
  font-weight: bold;
}

.chart {
  display: block;
  margin: 0;
}

.tooltip {
  position: absolute;
  padding: 6px;
  font-size: 12px;
  font-family: sans-serif;
  line-height: 1;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
}
.d3-tip {
  position: absolute;
  padding: 6px;
  font-size: 12px;
  font-family: sans-serif;
  line-height: 1;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
}

/* Mobile Rules */
@media screen and (max-width: 530px) {
  .stateText {
    display: none;
  }

  .aText {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .aText {
    font-size: 13px;
  }
}
