.base-timer {
    margin: auto;
    z-index: 9999;
    width: 100px;
    height: 100px;
    background: #D0D8E5;
    border-radius: 50%;
}

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

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

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: #0994FD;
}

.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: #0994FD;
}

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

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

.base-timer__label {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
