/* CSS Code */
div[data-progress] {
    box-sizing: border-box;
    position: relative;
    height: 70px;
    width: 70px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: inset 0px 0px 0px 5px green;
    transition: all 1s;
    overflow: hidden;
}
/* .timer {
    background: #d4edf7;
} */

.counter {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0%;
    left: 0%;
    text-align: center;
    line-height: 70px;
    padding-left: 10px;
    border-radius: 50%;
    background: transparent;
    z-index: 4;
    font-size: 12px;
    font-weight: 700;
}

.timer>div {
    position: absolute;
    height: 50%;
    width: 50%;
    background: inherit;
    border-radius: 0%;
}

.quad1,
.quad2 {
    left: 50%;
    transform-origin: left bottom;
}

.quad3,
.quad4 {
    left: 0%;
    transform-origin: right top;
}

.quad1,
.quad4 {
    top: 0%;
}

.quad2,
.quad3 {
    top: 50%;
}

.quad1,
.quad3 {
    transform: skew(0deg);
    /* invisible at -90deg */
}

.quad2,
.quad4 {
    transform: skewY(0deg);
    /* invisible at 90deg */
}

.circular-progress {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: lightgrey;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage {
    font-size: 12px;
    font-weight: 700;
}