﻿.milestone {
    width: 25px;
    height: 25px;
    background-color: #9FACB6;
    border-radius: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    padding-top: 25px;
    justify-content: center;
    flex-flow: row;
    line-height: 25px;
    transition: background-color 0.4s ease;
    position: absolute;
    bottom: -10px; /* Adjust this value based on the height of your progress bar */
}

.custom-progress {
    height: 3px;
    width: 60%;
    display: flex;
    align-items: center;
    position: relative;
    min-width: 200px;
    background-color: #9FACB6; /* Example background color for the progress bar */
    overflow: visible;
    margin-bottom: 0.8rem;
}

.progress-bar {
    height: 100%;
    background-color: #5c90a5;
    transition: width 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    padding-bottom: 0rem;
    padding-top: 0rem;
    position: relative;
    min-height: 75px;
    min-width: 300px;
}

.milestone-active {
    background-color: #5c90a5; /*#026E63 */
    color: #fff;
}

.progress-bar
{

}

.milestone-heading {
    min-width: 200px;
    color: black;
    overflow: visible;
}


@media(max-width: 767px){
    .milestone-heading {
        min-width: 200px;
        color: black;
        overflow: hidden;
    }
}