.aText {
  font-family: sans-serif;
  font-size: 16px;
  text-anchor: middle;
}

.active {
  font-weight: bold;
  fill: rgb(8, 0, 0);
  transition: fill 0.3s ease-out;
  text-anchor: middle;
}

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

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

/* font size dependent on radius, see app.js */
.stateText {
  font-family: sans-serif;
  fill: rgb(68, 62, 62);
  text-anchor: middle;
}

.stateCircle {
  fill: #3f4f53;
  stroke: #0a0909;
}

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

.tooltip {
  padding: 2px;
  padding-top: 8px;
  position: relative;
  font-size: 12px;
  line-height: 1;
  line-height: 1.5em;
  color: rgb(26, 23, 23);
  text-align: center;
  text-transform: capitalize;
  background: rgba(117, 112, 112, 0.8);
  opacity: 0.5;
  border: 0;
  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;
  }
}
