.progress-bar {
    width: 100%;
    height: 10px;
    background-color: var(--gray1);
    position: relative;
    border-radius: 30px;
}

.progress-bar-inner {
    height: 100%;
    width: 0;
    background-color: var(--lightgray);
    position: absolute;
    border-radius: 30px;
}


.block-progress__stars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.block-progress__list {
    display: grid;
    grid-template-columns: 85px auto 50px;
    column-gap: 25px;
    row-gap: 20px;
    align-items: center;
    margin-bottom: 50px;
    padding: 26px 0;
    border-top: 1px solid var(--lightgray);
    border-bottom: 1px solid var(--lightgray);
    border-bottom: 0;

}

@media (max-width: 1367px) {
    .block-progress__list {
        margin-bottom: 0;
        padding-bottom: 50px;
        border-bottom: 1px solid var(--lightgray);
    }
}

@media (max-width: 450px) {
    .block-progress__list {
        display: none;
    }
}


.block-progress__list span {
    color: var(--darkgray);
    font-size: 20px;
}




.block-progress__list span.quantity {
    text-align: right;
}

.block-progress__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

@media (max-width: 450px) {
    .block-progress__total {

        margin-bottom: 0;
    }
}



.block-progress__total span {
    font-weight: 700;
    font-size: 20px;
}






.block-progress__list .quantity {
    font-weight: 500;
    font-size: 20px;
}


/*  font-size */
@media (max-width: 1367px) {
    .block-progress__total span,
    .block-progress__list .quantity {
        font-size: 18px;
    }
}


@media (max-width: 1025px) {
    .block-progress__total span,
    .block-progress__list .quantity {
        font-size: 16px;
    }
}


@media (max-width: 769px) {
    .block-progress__total span,
    .block-progress__list .quantity {
        font-size: 15px;
    }
}


@media (max-width: 667px) {

    .block-progress__total span,
    .block-progress__list .quantity {
        font-size: 13px;
    }

}

