.progress {
    width: 100%;
}

.progress__track {
    position: relative;
    height: 1.5rem;
    background-color: var(--aok-grey-1);
    overflow: hidden;
}

.gameon .text-image:has(.text-image__background-picture) .progress__track {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.progress__fill {
    height: 100%;
    width: 0;
    background-color: var(--aok-green);
    transition: width 0.25s ease-out;
}

.progress__meta {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-size: 1rem;
    color: var(--aok-green);
    flex-direction: column;

    @media (min-width: 979px) {
        flex-direction: row;
        justify-content: space-between;
    }
}

.progress__points {
    display: block;

    @media (min-width: 979px) {
        display: inline-block;
    }
}


.progress__label {
    opacity: 0.9;
}

.progress__value {
    opacity: 0.95;
}
