ul.wizard a {
  color: #fff;
  text-decoration: none
}
ul.wizard {
  line-height:1.2 !important;
  list-style-type: none;
  box-sizing: content-box;
}
ul.wizard li {
  display: inline-block;
  background-color: #cccccc;
  color: #ffffff;
  padding: 0.75rem 2rem;
  /*transition: all 0.4s ease;*/
  text-indent: 1rem;
}
ul.wizard li.available:hover {
  background-color: #b7b7b7;
  cursor: pointer;
}
ul.wizard li a {
  width: 150px;
  height: 50px;
}
ul.wizard li:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
ul.wizard li:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
ul.wizard li:last-child:after, ul.wizard li:last-child:before {
  display: none;
}
ul.wizard li:after, ul.wizard li:before {
  content: "";
  position: absolute;
  background-color: #cccccc;
}
ul.wizard li:after {
  border-radius: 3px;
  border-right: 3px solid white;
  border-top: 3px solid white;
  height: 1.9rem;
  width: 1.9rem;
  margin-top: -0.45rem;
  margin-left: 1rem;
  -webkit-transform: rotate(45deg);
}
ul.wizard li.available:hover:after, ul.wizard li:hover:before {
  background-color: #b7b7b7;
  cursor: pointer;
}
ul.wizard li.current {
  background-color: #3a75d7;
}
ul.wizard li.current:after, ul.wizard li.current:before {
  background-color: #3a75d7;
}
ul.wizard li.available.current:hover {
  background-color: #265aaf;
  cursor: pointer;
}
ul.wizard li.available.current:hover:after, ul.wizard li.available.current:hover:before {
  background-color: #265aaf;
  cursor: pointer;
}
ul.wizard li.completed {
  background-color: #4285f4;
}
ul.wizard li.available.completed:hover {
  background-color: #477bd1;
  cursor: pointer;
}
ul.wizard li.completed:after, ul.wizard li.completed:before {
  background-color: #4285f4;
}
ul.wizard li.available.completed:hover:after, ul.wizard li.available.completed:hover:before {
  background-color: #477bd1;
  cursor: pointer;
}
