svg {
  width: 100%;
}
svg text {
  font-family: GuardianTextSans, Guardian Text Sans Web, Helvetica Neue,
    Helvetica, Arial, Lucida Grande, sans-serif !important;
}
.element-interactive {
  max-width: 1280px;
  margin: 0 auto;
}
.chartContainer {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.locations {
  stroke-width: 1;
  fill-opacity: 0.3;
  stroke-opacity: 0.7;
}
.grid.horizontal {
  text-anchor: start;
}
.grid.horizontal line {
  stroke: #777;
  stroke-linecap: round;
  stroke-dasharray: 0.2, 4;
}
.grid.horizontal .tick:nth-child(2) line {
  /*   stroke: black !important; */
  stroke-linecap: round;
  stroke-dasharray: none;
}
.grid.horizontal text {
  text-align: left;
  transform: translate(5px, -9px);
  text-anchor: start;
}
.tick text {
  font-size: 14px;
  fill: #777;
}

.grid .domain {
  display: none;
}

.states {
  fill: rgba(0, 0, 0, 0.05);
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 0.5;
}

.map-legend {
  margin: 30px 0 -10px;
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .map-legend {
    margin: 30px 0 10px;
  }
}
@media only screen and (max-width: 400px) {
  .map-legend {
    margin: 30px 0 50px;
  }
}
.map-legend svg {
  position: absolute;
  left: 55%;
  width: 200px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.legend-line {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1;
}

.legend-text {
  font-size: 12px;
  font-family: $sans;
  fill: $color-gray-03;
  text-anchor: middle;
}

@media only screen and (max-width: 599px) {
  .legend-text {
    font-size: 11px;
  }
}

.legend-group:first-of-type .legend-text,
.legend-line,
.legend-group:last-of-type .legend-text,
.legend-line {
  display: none;
}
.legend-cat-text.second,
.legend-cat-text.first {
  font-family: $sans !important;
  font-size: 13px;
  text-anchor: end;
  fill: #1d91c0;
}


#map_tooltip {
  position: absolute;
  opacity: 0;
  background: white;
  border: 1px solid #000000;
  padding: 5px;
  pointer-events: none;
  width: 130px;
  text-align: left;
  box-sizing: border-box;
  box-shadow: 2px 2px 0px 0px #000;
}
.tooltip_title {
  font-size: 13px;
/*   font-weight: bold; */
}
.tooltip_value {
  font-family: "GH Guardian Headline";
  font-weight: bold;
  font-size: 17px;
  margin-top: 2px;
}