.progress-circle {
  --size: 60px;
  --track-color: rgba(203, 219, 246, 0.25);
  --stroke-width: 8;
  position: absolute;
  left: 0;
  top: calc(var(--size) * -1 - 10px);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(100% 100% at 50% 0%, rgba(233, 241, 255, 0.25) 0%, rgba(203, 219, 246, 0.25) 57.77%, rgba(175, 193, 248, 0.25) 100%);
  box-shadow: inset 0px 0.75px 0px rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}
.progress-circle__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: relative;
  z-index: 2;
}
.progress-circle__track, .progress-circle__bar {
  fill: none;
  stroke-width: var(--stroke-width);
  stroke-linecap: round;
}
.progress-circle__track {
  stroke: var(--track-color);
}
.progress-circle__bar {
  stroke: url(#bar-gradient);
  stroke-dasharray: 282.74;
  stroke-dashoffset: calc(282.74 * (1 - var(--progress) / 100));
  transition: stroke-dashoffset 0.5s ease;
  filter: drop-shadow(0px 0.75px 0.5px rgba(255, 255, 255, 0.6));
}
.progress-circle__content {
  position: absolute;
  inset: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: linear-gradient(90deg, #2C2A5A 0%, #6B74A6 48.56%, #2C2A5A 97.93%);
  border-radius: 50%;
  box-sizing: border-box;
}
.progress-circle__value {
  font-family: "Nunito", sans-serif;
  font-size: calc(var(--size) * 0.28);
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
.progress-circle__current {
  color: #95F3FF;
}
.progress-circle__separator, .progress-circle__total {
  color: #FFFFFF;
}
.progress-circle__label {
  font-family: "Nunito", sans-serif;
  font-size: calc(var(--size) * 0.16);
  color: #FFFFFF;
  margin-top: 1px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
}
html:lang(de) .progress-circle__label, html:lang(nl) .progress-circle__label, html:lang(da) .progress-circle__label {
  font-size: calc(var(--size) * 0.14);
}
