body {
    background-color: #ECF0F1;
}

.position {
    float: left;
    margin: 0;
}

.progress-bar {
    position: relative;
    height: 100px;
    width: 100px;
    background: #6630FF;
}

.progress-bar div {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.progress-bar div span {
    position: absolute;
    font-family: Arial;
    font-size: 25px;
    line-height: 75px;
    height: 75px;
    width: 75px;
    left: 12.5px;
    top: 12.5px;
    text-align: center;
    border-radius: 50%;
    background-color: #6630FF;
}

.progress-bar .background {
    background-color: #bbe71a;
}

.progress-bar .rotate {
    clip: rect(0 50px 100px 0);
    background-color: #ca1b4f;
}

.progress-bar .left {
    clip: rect(0 50px 100px 0);
    opacity: 1;
    background-color: #b3cef6;
}

.progress-bar .right {
    clip: rect(0 50px 100px 0);
    transform: rotate(180deg);
    opacity: 0;
    background-color: #db1919;
}

@keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}