﻿#timer-container {
    position: absolute;
    padding: 5px;
    top: 63px;
    right: 63px;
    width: 90px;
    height: 90px;
}

.base-timer {
    position: relative;
    width: 70px;
    height: 70px;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 8px;
    stroke: #dddddd;
}

.base-timer__path-remaining {
    stroke-width: 8px;
    stroke-linecap: square;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

    .base-timer__path-remaining.green {
        color: rgb(82,93,78);
    }

    .base-timer__path-remaining.orange {
        color: orange;
    }

    .base-timer__path-remaining.red {
        color: red;
    }

.base-timer__label {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.normal {
    color: #4fa345;
}
