.statisticDataProgress--margin {
    margin: 0 0 0 0;
}

.statisticDataProgress__bar {
    background-color: #fff;
    height: 42px;
    /*border-radius: 20px;*/
    margin: 0 0 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: #fff;
    width: 100%;

    border: 2px solid #1A4790; /* border */
    overflow: hidden; /* kluczowa linia */
}

.statisticDataProgress__barProgress {
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0;
    /*border-radius: 20px;*/
    background: linear-gradient(180deg, #1A4790 0%, #1E2355 100%);
}

.statisticDataProgress__icon {
    justify-self: start;
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
}

.statisticDataProgress__text {
    position: relative;
    z-index: 2;
    color: #fff;
    /*top: 6px;*/
    /*font-size: 22px;*/
    /*font-weight: 700;*/
    mix-blend-mode: difference;
    /*font-style: italic;*/
}

.statisticDataProgress__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.statisticDataProgress__bottomMinMax {
    color: #8C9194;
}

@media (max-width: 900px) {
    .statisticDataProgress__bottomMinMax:first-of-type {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .statisticDataProgress__bottomMinMax:last-of-type {
        text-align: right;
    }
}

.statisticDataProgress__bottomProgress {
    font-size: 15px;
    color: #1A4790;
    font-weight: 700;
    /*font-style: italic;*/
}

@media (max-width: 900px) {
    .statisticDataProgress__bottomProgress {
        font-size: 16px;
        text-align: center;
    }
}

.highlighted {
    color: #004C97;
}