


#BlocBar {
  display: flex;
  align-items: center;
  justify-content: center;
}



p {
  font-size: 1.0em;
  margin: 0 0 11px;
}

a {
  color: #fff;
  text-decoration: none;
}


.barContainer {
  position: relative;
  width: 100%;
  
  margin: 0 auto;
  overflow: hidden;
  padding: 2rem;
  
  color: black;
  background: #392A60;
  background: transparent;

}

.bar {
  position: relative;
  padding: 0 1rem 0 3.5rem;
  margin: 2rem 0 0;
  list-style: none;
}

.bar__item {
  position: relative;
  min-height: 60px;
  counter-increment: list;
  padding-left: 0.5rem;
}
.bar__item:before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 33px;
  height: 60%;
  width: 1px;
  border-left: 3px solid black;
}
.bar__item:after {
  content: counter(list);
  position: absolute;
  top: 0;
  left: -2.5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-weight: 400;
  font-size: 1.0rem;
  line-height: 2rem;
  text-align: center;
  border: 1px solid #fff;
  


}
.bar__item:last-child:before {
  border: none;
}
.bar__item.bar__item--completed {
  opacity: 0.6;
  color: black;
}
.bar__item.bar__item--completed:after {
  content: "\2713";
  font-weight: 600;
  
  color: #CF2895;
  
  background:white;
  border: 1px solid #CF2895;

}
.bar__item.bar__item--active:after {
  background: grey;
  color: #392A60;
  background:#CF2895;
  color: transparent;
  border: 1px solid #FFC000;
}

.bar__title {
  padding: 0.4rem 0 0.5rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;

}

.bar__info {
  font-size: 1.0rem;
}
