*,
::after,
::before {
  outline: none;
  box-sizing: border-box;
  margin: 0px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub_container2{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
}
.progressbar {
    margin: 50px 0 50px 0;
    counter-reset: step;
}
.progressbar li {
    list-style-type: none;
    width: 100px;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #7d7d7d;
    word-wrap:break-word;
}
.progressbar li:before {
    width: 19px;
    height: 19px;
    content: '';
    line-height: 30px;
    border: 2px solid #ffffff;
    background-color: #E4E4E4;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    transition: all ease-in-out 1s;
}
.progressbar li:after {
    width: 100%;
    height: 6px;
    content: '';
    position: absolute;
    background-color: #E4E4E4;
    top: 7px;
    left: -50%;
    z-index: -1;
    transition: background-color ease-in-out 0.8s;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active:before {
    border-color: #ffffff;
    background-color: #55b776;
    
}
.progressbar li.active:after {
    background-color: #55b776;
    
}

