.pie-chart {
  text-align: center;
  position: relative;
}
.pie-chart .doughnut {
  margin: 0 auto 4rem auto;
  padding: 0;
  max-width: 37.5rem;
}
.pie-chart .doughnut.is-active svg circle:not(.active) {
  opacity: 0.25;
}
.pie-chart svg {
  display: block;
  width: 100%;
  height: auto;
}
.pie-chart svg circle {
  paint-order: fill;
  transition: all 0.25s ease-in-out;
  stroke-width: 10px;
  cursor: pointer;
}
.pie-chart svg circle.active {
  stroke-width: 13px;
}
.pie-chart svg text {
  font-family: var(--wp--preset--font-family--primary);
}
.pie-chart svg text.center-text {
  font-size: 1rem;
  font-weight: 300;
  fill: #fff;
}
.pie-chart svg text.fill-text {
  font-size: 0.35rem;
  font-weight: 400;
  fill: #fff;
}
.pie-chart .pie-legend {
  display: inline-block;
  width: 90%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pie-chart .pie-legend li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2.4rem;
  padding: 1.6rem 2.4rem 1.6rem 0;
  cursor: pointer;
  transition: color 0.25s ease-in-out;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}
.pie-chart .pie-legend li:before {
  display: none;
}
.pie-chart .pie-legend li .color {
  width: 50px;
  height: 20px;
  border: 1px solid #fff;
}
.pie-chart .pie-legend li .name {
  width: calc(100% - 70px);
  text-align: left;
  color: #fff;
  font-style: normal;
  font-size: var(--wp--preset--font-size--font-16);
  font-weight: 400;
  line-height: 160%;
}
.pie-chart .pie-legend li .data {
  margin: 0 0 0 auto;
  width: 60px;
  text-align: right;
  transition: font-weight 0.25s ease-in-out;
  color: #fff;
  font-style: normal;
  font-size: var(--wp--preset--font-size--font-16);
  font-weight: 400;
  line-height: 160%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.pie-chart .pie-legend li sup {
  color: #010035;
  font-size: 14px;
  opacity: 1;
  padding-left: 0.2rem;
}
.pie-chart .pie-legend li:hover, .pie-chart .pie-legend li.active {
  color: red;
}
.pie-chart .pie-legend li:hover .data, .pie-chart .pie-legend li.active .data {
  font-weight: 500;
}
.pie-chart.dark-text text.center-text, .pie-chart.dark-text text.fill-text {
  fill: #010035;
}
.pie-chart.dark-text .pie-legend li {
  border-top: 1px solid rgb(203, 209, 227);
}
.pie-chart.dark-text .pie-legend li .name, .pie-chart.dark-text .pie-legend li .data {
  color: #010035;
}/*# sourceMappingURL=block-pie-chart.css.map */