
percentage-chart {
  display: block;
  background: var(--c-surface-bg);
  color: #E2E2E2;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  max-height: 25%;
  overflow-y: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}

percentage-chart ul li {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: 1rem;
  will-change: font-weight, color;
  transition: all 0.3s linear;
}
percentage-chart ul li progress, percentage-chart ul li progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 0.5rem;
}
percentage-chart ul li progress[value]::-webkit-progress-bar {
  background-color: var(--c-text);
  border-radius: 10px;
}
percentage-chart ul li progress[value]::-webkit-progress-value {
  background-color: var(--c-surface-bg);
  border-radius: 10px;
  will-change: box-shadow, background-color;
  transition: all 0.3s cubic-bezier(0.26, -0.04, 0.24, 2.34);
}

percentage-chart ul li[aria-selected=true] {
  font-weight: bold;
  color: white;
}
percentage-chart ul li[aria-selected=true] progress[value]::-webkit-progress-value {
  background-color: var(--c-hover);
  box-shadow: 0px 0px 0px 1px var(--c-hover);
}

percentage-chart ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  align-items: center;
  display: flex;
  font-size: 0.8125rem;
}
