.b-donut-chart-container {
  position: relative;
}

.b-chart-tooltip {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  max-width: 200px;
  bottom: auto;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.125), 0 10px 10px rgba(0, 0, 0, 0.125);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 0.25rem 0.5rem;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  color: #fff;
  background: #000;
  border-radius: 0.25rem;
  z-index: 600;
  transition: opacity 0.3s;
  &.is-visible {
    display: flex;
    align-items: center;
    visibility: visible;
    opacity: 1;
  }
}

.b-chart-tooltip-color {
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  line-height: 1;
}

.b-donut-chart {
  width: 100%;
  border-radius: 50%;
  fill: transparent;
  pointer-events: none;
}

.b-donut-chart-circle {
  fill: transparent;
  border: 1px solid #fff;
  pointer-events: visibleStroke;
  filter: brightness(1) drop-shadow(0px 0px 0.5px rgba(83, 15, 15, 0.3));
  transition: filter 0.3s ease-in-out;
  &:hover {
    filter: brightness(1.1) drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.15));
  }
}

.b-donut-chart-text {
  font-size: 0.15em;
  line-height: 1;
  text-align: center;
  text-anchor: middle;
  background: #fff;
  text-shadow: 1px 1px 0 #fff;
}
