#app {
  position: relative;
  display: none;
  right: 0px;
  top: -34px;
}

#time_options {
  display: none;
}

.four-min {
  color: black;
  font-size: 2.2rem;
  text-decoration: underline;
}

.seven-min {
  color: black;
  font-size: 2.2rem;
  text-decoration: underline;
}

.eleven-min {
  color: black;
  font-size: 2.2rem;
  text-decoration: underline;
}

.seven {
  margin-left: 7px;
  margin-right: -12px;
}

#timer-controls {
  display: none;
}

.base-timer {
  position: relative;
  width: 200px;
  height: 200px;
}

.base-timer__svg {
  transform: scaleX(-1);

}

.base-timer__circle {
  fill: none;
  stroke: none;
  /* 
  stroke-width: 2px;
  -webkit-text-stroke: 2px rgb(0, 0, 0);
  stroke: black; 
  */
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: rgb(223, 223, 223);
}

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

.base-timer__path-remaining.green {
  color: rgb(123, 84, 196);
}

.base-timer__path-remaining.orange {
  color: rgb(0, 247, 255);
}

.base-timer__path-remaining.red {
  color: rgb(255, 102, 0);
}

.base-timer__label {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 66px;
  -webkit-text-stroke: 2px rgb(0, 0, 0);
}