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

.circle-container svg {
    transform: rotate(-90deg);
}

.circle-container circle.bg {
    stroke: #FFC4C6;
}

.circle-container circle.progress {
    stroke: red;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-out;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-content .number {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Recoleta', serif;
    line-height: 1;
}

.circle-content .label {
    font-size: 18px;
    margin-top: 4px;
    display: block;
    font-family: 'TWK Everett', sans-serif;
    line-height: 24px;
}