#areaChart {
  box-sizing: border-box;
  color: #2a2a2a;
  display: block;
  font-family: "benton-sans", sans-serif;
  margin: 20px auto 0px;
  max-width: 700px;
  position: relative;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

#areaChart h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-size-adjust: 100%;
}

#areaChart h4 {
  color: #656565;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-size-adjust: 100%;
}

#areaChart text {
  font-family: "benton-sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  pointer-events: none;
}

#areaChart .chart {
  margin: 15px auto;
  position: relative;
}

#areaChart .chart,
#areaChart .chart svg {
  height: 400px;
  width: 100%;
}

#areaChart .chart .area {
  fill: #8cb8c7;
  fill-opacity: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#areaChart .chart hr {
  margin: 2px auto;
}
#areaChart .chart .area2 {
  fill: #5e5e98;
  fill-opacity: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#areaChart .chart .data-label {
  fill: #656565;
  font-size: 12px;
}

#areaChart .chart .line {
  fill: none;
  fill-opacity: 0.3;
  stroke: #2a2a2a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

#areaChart .chart .overlay {
  fill-opacity: 0;
}

#areaChart .chart .tick text {
  fill: #656565;
  font-size: 12px;
}

#areaChart .chart .x-axis line {
  stroke: #2a2a2a;
}

#areaChart .domain {
  display: none;
}

#areaChart .graphic-attribution span {
  color: #656565;
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}

#areaChart .tooltip {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  display: none;
  font-size: 12px;
  left: 0;
  line-height: 12px;
  padding: 6px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: all 0.1s ease-out;
  z-index: 999;
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

#areaChart .tooltip p {
  font-size: 14px;
  margin: 0;
}

#areaChart .tooltip span {
  display: inline-block;
  font-weight: bold;
}

#areaChart .tooltip::after,
#areaChart .tooltip::before {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: "";
  margin-left: -8px;
  position: absolute;
  top: 100%;
}

#areaChart .tooltip::before {
  border-top: 8px solid #ccc;
  margin-top: 0px;
}

#areaChart .tooltip::after {
  border-top: 8px solid white;
  margin-top: -2px;
  z-index: 1;
}

#areaChart .tooltip.left-side::after,
#areaChart .tooltip.left-side::before {
  left: 20px;
}

#areaChart .tooltip.right-side::after,
#areaChart .tooltip.right-side::before {
  right: 10px;
}

#areaChart .tooltip .tip-subtitle {
  font-size: 13px;
}

#areaChart .tooltip .tip-subtitle span {
  font-weight: bold;
}

#areaChart .tooltip .tip-title {
  color: rgb(98, 98, 98);
  font-size: 12px;
  margin-bottom: 4px;
}

#areaChart .y-base {
  stroke: #2a2a2a;
}

#areaChart .y-standard {
  stroke: #dddddd;
  stroke-dasharray: 2, 2;
}

@media (max-width: 650px) {
  #areaChart .tooltip {
    max-width: 100%;
  }
}
