#svg #circleHelper {
  stroke-dashoffset: 0;
  stroke: #EAAE94;
}

#svg circle {
  stroke-dashoffset: 115;
  transition: stroke-dashoffset 1s linear;
  stroke: #FFFFFF;
  stroke-width: 5px;
  transform-origin: center;
  transform: rotate(-90deg);
}
#progress-bar-container {
  display: block;
  height: 300px;
  width: 300px;
  border-radius: 100%;
  position: relative;
  background: transparent;
  font-size: 46px;
  font-weight: 400;
  line-height: 81px;
  letter-spacing: 0;
  text-align: center;
}
#progress-bar-container:after {
  position: absolute;
  display: block;
  height: 240px;
  width: 240px;
  left: 50%;
  top: 50%;
  content: attr(data-pct);
  margin-top: -120px;
  margin-left: -120px;
  border-radius: 100%;
  font-size: 46px;
  font-weight: 400;
  line-height: 81px;
  letter-spacing: 0;
  text-align: center;
}

#progress-bar-container .timer-readout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  line-height: 1;
}

#progress-bar-container .timer-readout::before,
#progress-bar-container .timer-readout::after {
  line-height: 1;
}

#progress-bar-container .timer-readout::before {
  content: attr(data-minutes);
  justify-self: end;
  padding-right: 0.02em;
}

#progress-bar-container .timer-readout::after {
  content: attr(data-seconds);
  justify-self: start;
  padding-left: 0.02em;
}
