@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
  background: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.chart {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  margin: -225px 0 0 -225px;
}

.doughnutTip {
  position: absolute;
  min-width: 30px;
  max-width: 200px;
  padding: 5px 15px;
  border-radius: 1px;
  background: #007daee5;
  color: #ffffff;
  font-size: 17px;
  /* text-shadow: 0 1px 0 #000000; */
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.06em; 
  box-shadow: 0 1px 3px rgba(90, 90, 90, 0.736);
  pointer-events: none;
}
.doughnutTip::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 0;
  margin: 0 0 0 -6px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid rgba(0, 125, 174, 0.8);
  line-height: 0;
}

.doughnutSummary {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000;
  text-align: center;
  cursor: default;
}

.doughnutSummaryTitle {
  position: absolute;
  top: 20%;
  width: 100%;
  margin-top: -27%;
  font-size: 18px;
  line-height: 20px;
}

.doughnutSummaryNumber {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -15%;
  font-size: 55px;
}

.chart path:hover {
  opacity: 0.65;
}