@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');

*{
  margin: 0px;
  padding: 0px;
}

.chart-wrap{
  background-color:#557571;
}
svg.chart-wrap {
  margin-left: 15px;
}

.axis path,
.axis line {
  fill: none;
  stroke: #204969;
  shape-rendering: crispEdges;
}

.axis text {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  fill: #fff;
}

rect:hover {
  fill: #E61C5D;
}

#tooltip {
  position: absolute;
  width: 200px;
  height: auto;
  padding: 10px;
  background-color: white;
  color: #302387;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

#tooltip p {
  margin: 0;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 20px;
}
