
/* Patient Progress */
.progressPredictionSection {
    padding: 0 100px;
}

.progressPredictionSection .heading {
    margin: 0;
    margin-bottom: 24px;
    color: var(--secondary2);
    font-size: 52px;
    line-height: 72px;
    font-weight: 600;
}

/* 
.easy,
.simple,
.confidential {
    font-weight: bold;
}

.easy {
    color: var(--primary10);
}

.simple {
    color: var(--primary11);
}

.confidential {
    color: var(--primary2);
} */

.progressPredictionSection>p {
    margin-bottom: 60px;
}

.progressPredictionSection .timeStamp {
    font-weight: bold;
    color: var(--secondary2);
}

.progressPredictionSection .emoji {
    font-size: 24px;
}

.progressPredictionSection .progressBarToday,
.progressPredictionSection .progressBarWeekLater,
.progressPredictionSection .progressBarFourWeek {
    height: 3px;
    margin: 0 20px;
    width: 100%;
}

.progressPredictionSection .progressBarToday {
    position: relative;
    background-color: var(--primary6);
}

.progressPredictionSection .progressBarToday>div {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -43%);
    background-color: var(--primary6);
}

.progressPredictionSection .progressBarWeekLater {
    background-color: var(--primary5);
}

.progressPredictionSection .progressBarFourWeek {
    position: relative;
    background-color: var(--primary3);
}

.progressPredictionSection .progressBarFourWeek>i {
    position: absolute;
    top: 0;
    right: -24px;
    transform: translate(-50%, -42%);
    background-color: transparent;
}

.progressPredictionSection .progressBarFourWeek>i::before {
    color: var(--primary3);
    font-size: 30px;
    font-weight: bold !important;
}

.progressPredictionSection .progressDescription {
    font-size: 16px;
    line-height: 24px;
}

.progressContainer>div>button {
    display: none;
}
.progressPredictionSection .disclaimer {
    margin-top: 24px;
    margin-bottom: 0;
}
.progressPredictionSection .disclaimer > span {
    color: red;
}


@media only screen and (max-width: 576px) {
    
    /* Patient Progress */
    .progressPredictionSection {
        padding: 0 45px 0 20px;
    }

    .progressPredictionSection .heading {
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 41px;
    }

    .progressContainer .timeStamp {
        font-size: 16px;
    }

    .progressPredictionSection>p {
        display: none;
    }

    .progressPredictionSection .emoji {
        margin-top: -6px;
        padding-left: 5px;
        font-size: 15px;
    }

    .progressContainer>div {
        position: relative;
    }

    .progressContainer>div>div {
        padding: 0 0 0 14px;
    }

    .progressContainer>div>p {
        padding: 0 0 0 14px;
    }

    .progressContainer>div>button {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin: 0 0 0 14px;
        color: var(--primary2);
        background-color: transparent;
        margin-top: 12px;

    }

    .progressContainer>div>button>i::before {
        font-size: 14px;
        font-weight: 600 !important;
    }

    .progressPredictionSection>div .progressBarToday,
    .progressPredictionSection>div .progressBarWeekLater,
    .progressPredictionSection>div .progressBarFourWeek {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        margin: 0 14px;
    }

    .progressPredictionSection .progressBarToday>div {
        display: none;
    }

    .progressPredictionSection .progressBarFourWeek>i {
        display: none;
    }

    .progressPredictionSection .progressDescription {
        margin-top: -2px;
        font-size: 14px;
        line-height: 1.5;
    }

}

@media only screen and (min-width: 576px) and (max-width: 992px) {
    /* Patient Progress */
    .progressPredictionSection {
        padding: 0 58px;
    }

    .progressPredictionSection .heading {
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 41px;
    }

    .progressPredictionSection>p {
        margin-bottom: 35px;
    }

    .progressPredictionSection .emoji {
        font-size: 20px;
    }

    .progressPredictionSection .progressBarToday,
    .progressPredictionSection .progressBarWeekLater,
    .progressPredictionSection .progressBarFourWeek {
        height: 2px;
        margin: 0 14px;
    }

    .progressPredictionSection .progressBarToday>div {
        height: 10px;
        width: 10px;
    }

    .progressPredictionSection .progressBarFourWeek>i {
        right: -15px;
    }

    .progressPredictionSection .progressBarFourWeek>i::before {
        font-size: 18px;
    }

    .progressPredictionSection .progressDescription {
        font-size: 14px;
        line-height: 1.2;
    }
}