.base-timer {
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
    margin-bottom: 50px;
}
  
.base-timer__svg {
    transform: scaleX(-1);
}

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

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

.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: #00B050;
}

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

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

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

.base-timer__path-remaining.yellow {
    color: #AFD30F;
}

.base-timer__label {
    position: absolute;
    width: var(--circle-size);
    height: var(--circle-size);
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #00B050;
}

.base-timer__label2
{
    width: var(--circle-size);
    font-family: Paperlogy;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}