fieldset .indicator{
  height: 5px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
fieldset .indicator span{
  position: relative;
  height: 100%;
  width: 100%;
  background: lightgrey;
  border-radius: 5px;
}
fieldset .indicator span:nth-child(2){
  margin: 0 3px;
}
fieldset .indicator span.active:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.indicator span.weak:before{
  background-color: #cd1f3a;
}
.indicator span.medium:before{
  background-color: #FDB81A;
}
.indicator span.strong:before{
  background-color: #00544E;
}
fieldset .text{
  font-size: 20px;
  font-weight: 500;
  display: none;
  margin-bottom: -10px;
}
fieldset .text.weak{
  color: #ff4757;
}
fieldset .text.medium{
  color: orange;
}
fieldset .text.strong{
  color: #23ad5c;
}
