.container {
    width: 100%;
    /* margin-top: 10px; */
    background-color: #E1FFE2;
    position: relative; /* Required for z-index to take effect */
}

.progress-bar__container {
    height: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    will-change: transform;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #52BB0B;  /* Update color to something that fits for you*/
    top:0;
    bottom: 0;
    left: -100%;
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items:center;
    color: white;
    font-family: sans-serif;
}

.progress-bar__text {
    display: none;
}