.base-timer {
  position: absolute;
  width: 180px;
  height: 200px;
  bottom: 59px;
  left: 47px;
  z-index: 9;
}

.base-timer__svg {
  transform: scaleX(-1);
  width: 218px;
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 5px;
  stroke: #FBB03B;
}

.base-timer__path-remaining {
  stroke-width: 5px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: #C0262D;
}

.base-timer__path-remaining.orange {
  color: #C0262D;
}

.base-timer__path-remaining.red {
  color: #C0262D;
}

.base-timer__label {
  font-family: Montserrat;
  position: absolute;
  width: 175px;
  height: 180px;
  top: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: #C0262D;
  left: 21px;
}

