.bar {
    width: 50%;
    height: 1rem;
    background-color: #ececec;
    position: relative;
    margin-top: 5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.bar__progess {
    width: 70%;
    height: 100%;
    background-color: green;
    border-radius: 8px;
}
.bar__progess::after {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: green;
    z-index: 999;
    content: "";
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}