﻿/*Circle Timer */

.base-timer {
    position: relative;
    width: 100px;
    height: 100px;
}

.circleTimer {
    box-sizing: border-box;
    display: grid;
    place-items: center;
}

/* scaleX(1) = CLOCKWISE, scaleX(-1) = ANTI-CLOCKWISE */

.base-timer__svg {
    text-align: center;
    transform: scaleX(1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: #fceeed;
}

.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.arc {
        color: #007bff;
    }

.base-timer__label {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* circle Timer End */
