.multi-steps>li.is-active:before,
.multi-steps>li.is-active~li:before {
    content: counter(stepNum);
    font-family: inherit;
    font-weight: 700;
}

.multi-steps>li.is-active:after,
.multi-steps>li.is-active~li:after {
    background-color: #e1e1e1;
}

.multi-steps {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.multi-steps>li {
    counter-increment: stepNum;
    text-align: center;
    display: table-cell;
    position: relative;
    color: gray;
}

.multi-steps>li:before {
    content: "";
    content: "✓";
    display: block;
    margin: 0 auto 4px;
    background-color: #027f00;
    width: 36px;
    height: 36px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    border-width: 2px;
    border-style: solid;
    border-color: #027f00;
    border-radius: 50%;
    color: white;
}

.multi-steps>li:last-child:after {
    display: none;
}

.multi-steps>li.is-active:before {
    background-color: #131f3b;
    border-color: rgb(247, 247, 247);
    color: rgb(236, 236, 236);
    animation: pulse 2s infinite;
}

.multi-steps>li.is-active {
    color: #131f3b;
}

.multi-steps>li:before {
    background-color: rgb(232, 227, 227);
    border-color: #e1e1e1;
    color: #808080;
}

.is-complete {
    background: linear-gradient(to right, #027f00 50%, #e1e1e1 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #027f0070;
    }

    100% {
        box-shadow: 0 0 0 10px #027f0000;
    }
}

.progress-bar {
    cursor: pointer;
    user-select: none;
}

.progress-bar {
    background-color: #e1e1e1;
    height: 7px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: calc(50% + 10px);
    width: 100%;
    z-index: -1;
}

.progress-bar--success {
    background-color: #131f3b;
}

.progress-bar__bar {
    background-color: #e1e1e1;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 500ms ease-out;
}

@media (max-width: 768px) {
    .multi-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    .multi-steps>li {
        flex: 1 1 45%;
        text-align: center;
        font-size: 14px;
        min-width: auto;
        position: relative;
    }

    .multi-steps>li:before {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 14px;
    }

    .progress-bar {
        position: absolute;
        bottom: -10px;
        display: none;
        left: 10%;
        width: 80%;
        height: 5px;
        background-color: #e1e1e1;
    }

    .progress-bar__bar {
        width: 0%;
        /* Default width */
        height: 100%;
        background-color: #131f3b;
        transition: width 0.5s ease-out;
    }

    /* Completed Steps */
    .multi-steps>li.is-active .progress-bar__bar,
    .multi-steps>li.is-complete .progress-bar__bar {
        width: 100%;
        /* Fill the bar for active/completed steps */
    }
}

@media (max-width: 480px) {
    .multi-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .multi-steps>li {
        width: 100%;
        font-size: 15px;
    }

    .multi-steps>li:before {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 15px;
    }

    .progress-bar {
        left: 5%;
        width: 90%;
    }
}

@media (max-width: 800px) {
    .processbar-top {
        padding: 1px
    }

}

.tooltip-icon {
    cursor: pointer;
    font-size: 16px;
    color: #131f3b;
    margin-left: 5px;
}


.tooltip-icon:hover {
    color: #0056b3;

}


/* thired document css button increment start */
.decrement {
    background-color: #131F3B;
    color: white;
}

.decrement:hover {
    background-color: #131f3b;
    color: white;
}

.quantity {
    background-color: #131F3B;
    color: white;
}

.increment {
    background-color: #131F3B;
    color: white;
}

.increment:hover {
    background-color: #131f3b;
    color: white;
}

/* document increment end */

.input-progres {
    max-width: 50px;
}

.full-width {
    width: 100%;
}

.zero-width {
    width: 0%;
}


.hidden {
    display: none !important;
}

.fs-6 {
    font-size: 0.75rem !important;
}

.w-15 {
    width: 15%;
}