.sri-cart-progress {
    /* margin-top: 10px; */
    margin-right: 0;
    margin-bottom: 25px; /* Changed margin-bottom to 25px */
    margin-left: 0;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.sri-progress-text {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.sri-cart-progress-bar {
    position: relative;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: visible; /* Allow the overflow to show the milestone circles and offer text */
}

.sri-cart-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
}

.sri-milestone {
    position: absolute;
    top: 0;
    height: 100%;
    text-align: center;
}

.sri-milestone-circle {
    width: 20px;
    height: 20px;
    background-color: #4caf50;
    border-radius: 50%;
    position: absolute;
    top: -5px; /* Adjusted top position */
    left: 50%;
    transform: translateX(-50%);
}

.sri-milestone-amount {
    position: absolute;
    top: 15px; /* Changed top to 15px */
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    white-space: nowrap;
    color: #000;
    padding: 2px 5px;
    border-radius: 3px;
}

.sri-milestone-offer {
    position: absolute;
    top: 40px; /* Changed top to 40px */
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    white-space: nowrap;
    background-color: #4caf50;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
}

.sri-milestone.final-milestone .sri-milestone-offer {
    transform: translateX(-100%);
}

.sri-milestone.final-milestone .sri-milestone-amount {
    transform: translateX(-100%);
}
