

:root {
    --circular-progress-bar-stroke-color: var(--color-light-neutral-translucent-300);
    --circular-progress-bar-positive-color: var(--color-light-status-positive);
    --circular-progress-bar-negative-color: var(--color-light-status-negative);
}

.component {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-pill);
}

.component.bg-positive {
        background: var(--circular-progress-bar-positive-color);
    }

.component.bg-negative {
        background: var(--circular-progress-bar-negative-color);
    }

.svg {
    display: block;
    width: 100%;
}

.title,
.subtitle {
    overflow: hidden;
    word-break: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: var(--gap-0) var(--gap-6);
}

.subtitle {
    max-height: 40px;
}

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

.labelWrapper.label {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.size-144 {
    width: 144px;
    height: 144px;
}

.size-144 .labelWrapper {
        max-width: 128px;
    }

.size-144 .title {
        max-height: 32px;
    }

.size-128 {
    width: 128px;
    height: 128px;
}

.size-128 .labelWrapper {
        max-width: 108px;
    }

.size-128 .title {
        max-height: 32px;
    }

.size-96 {
    width: 96px;
    height: 96px;
}

.size-96 .labelWrapper {
        max-width: 64px;
    }

.size-96 .title {
        max-height: 20px;
    }

.size-80 {
    width: 80px;
    height: 80px;
}

.size-80 .labelWrapper {
        max-width: 64px;
    }

.size-80 .title {
        max-height: 24px;
    }

.size-64 {
    width: 64px;
    height: 64px;
}

.size-64 .labelWrapper {
        max-width: 48px;
    }

.size-64 .title {
        max-height: 16px;
        margin: var(--gap-0);
    }

.size-48 {
    width: 48px;
    height: 48px;
}

.size-48 .labelWrapper {
        max-width: 40px;
    }

.size-48 .title {
        max-height: 16px;
        margin: var(--gap-0);
    }

.size-24 {
    width: 24px;
    height: 24px;
}

.size-24 .labelWrapper {
        max-width: 24px;
    }

.size-16 {
    width: 16px;
    height: 16px;
}

.size-16 .labelWrapper {
        max-width: 16px;
    }

.backgroundCircle,
.progressCircle {
    width: 100%;
    height: 100%;
    fill: transparent;
}

.positive {
    stroke: var(--circular-progress-bar-positive-color);
}

.negative {
    stroke: var(--circular-progress-bar-negative-color);
}

.backgroundCircle {
    stroke: var(--circular-progress-bar-stroke-color);
}

.backgroundCircle.stroke {
        stroke: transparent;
    }

.progressCircle {
    stroke-linecap: round;
}

.iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconWrapper.size-144 {
        max-width: 64px;
        max-height: 64px;
    }

.iconWrapper.size-128 {
        max-width: 64px;
        max-height: 64px;
    }

.iconWrapper.size-96 {
        max-width: 48px;
        max-height: 48px;
    }

.iconWrapper.size-80 {
        max-width: 48px;
        max-height: 48px;
    }

.iconWrapper.size-64 {
        max-width: 36px;
        max-height: 36px;
    }

.iconWrapper.size-48 {
        max-width: 24px;
        max-height: 24px;
    }

.iconWrapper.size-24 {
        max-width: 16px;
        max-height: 16px;
    }

.iconWrapper.icon-tertiary {
        color: var(--color-light-neutral-500);
    }

.iconWrapper.icon-positive {
        color: var(--color-light-status-positive);
    }

.iconWrapper.icon-negative {
        color: var(--color-light-status-negative);
    }

.iconWrapper.icon-primary-inverted {
        color: var(--color-light-neutral-translucent-1300-inverted);
    }

.iconWrapper.icon-primary {
        color: var(--color-light-neutral-translucent-1300);
    }

.iconWrapper.icon-secondary {
        color: var(--color-light-neutral-700);
    }

.icon {
    width: 100%;
    height: 100%;
}
