.circular-progress {
    position: relative;
    height: 130px;
    width: 130px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress:before {
    content: "";
    position: absolute;
    height: 100px;
    width: 100px;
    background-color: #fff;
    border-radius: 50%;
}

.progress-value {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #555;
}