fieldset.graphic-workflow-graphic {
  clear: both;
  text-decoration: none;
  font-size: 0.85em;
  border: none;
  border-top: solid 1px lightgray;
}
fieldset.graphic-workflow-graphic > legend{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
fieldset.graphic-workflow-graphic a{
  text-decoration: none;
}
fieldset.graphic-workflow-graphic .fieldset-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
@media (min-width: 777px) {
  fieldset.graphic-workflow-graphic .fieldset-wrapper{
    flex-flow: row wrap;
  }
}
fieldset.graphic-workflow-graphic .workflow-item {
  flex-basis: 100%;
  flex-grow: 1;
  margin: auto;
  color: #BABABA;
}
@media (min-width: 777px) {
  fieldset.graphic-workflow-graphic .workflow-item {
    flex-basis: 11%;
  }
}

fieldset.graphic-workflow-graphic .workflow-item a{
  color: #BABABA !important;
}
fieldset.graphic-workflow-graphic .workflow-item.current-state a{
  color: black !important;
  text-decoration: underline;
}

fieldset.graphic-workflow-graphic .workflow-item.current-state {
  color: black;
  font-weight: bold;
  font-size: 16px;
}
fieldset.graphic-workflow-graphic .workflow-item .workflow-item-icon {
  text-align: center;
  font-size: 2.5rem;
  margin: 0.25em;
}
fieldset.graphic-workflow-graphic .workflow-item .workflow-item-label {
  text-align: center;
}
@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

div.workflow-item.current-state > a > div.workflow-item-icon {
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
}

div.workflow-item.current-state > a > div.workflow-item-icon > div.fontawesome-icon > svg.fa-check{
  color:   #33752E;

}

div.workflow-item.current-state > a > div.workflow-item-icon > div.fontawesome-icon > svg.fa-times{
  color:  #b01116;

}