.percent {
    margin-block: 12px;
}

.percent-item-label {
    font-size: 12px;
    color: #666;
}

.percent-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.percent-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ddd;
    width: 100%;
    border-radius: 4px;
    position: relative;
}

.percent-bar .bar {
    position: absolute;
    height: 4px;
    border-radius: 4px;
    background-color: var(--rw-primary-color);
}

.percent-bar .bar span {
    font-size: 12px;
    color: #fff;
}