
.nav-wizard {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-family: arial;
}

.nav-wizard > li {
  float: left;
  width: 20%;
 
}
.nav-wizard > li > a {
  /*color: #2FA4E7;*/
  color: #555555;
  position: relative;
  background-color: #eeeeee;
  height: 60px;
  text-align: center;
}

.nav-wizard > li > a .badge {
  margin-left: 3px;
  color: #eeeeee;
  background-color: #428bca;
}
.nav-wizard > li:not(:first-child) > a {
  padding-left: 45px;
}

.nav-wizard > li:not(:first-child) > a:before {
  width: 0px;
  /*height: 10px;*/
  border-top: 30px inset transparent;
  border-bottom: 30px inset transparent;
  border-left: 35px solid #ffffff;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
.nav-wizard > li:not(:last-child) > a {
  margin-right: 10px;
}
.nav-wizard > li:not(:last-child) > a:after {
  width: 0px;
  height: 0px;
  border-top: 30px inset transparent;
  border-bottom: 30px inset transparent;
  border-left: 35px solid #eeeeee;
  position: absolute;
  content: "";
  top: 0;
  right: -35px;
  z-index: 2;
}

.nav-wizard > li:first-child > a {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.nav-wizard > li:last-child > a {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.nav-wizard > li.done:hover > a,
.nav-wizard > li:hover > a {
  background-color: #d5d5d5 !important;
}
.nav-wizard > li.done:hover > a:before,
.nav-wizard > li:hover > a:before {
  border-right-color: #d5d5d5;
}
.nav-wizard > li.done:hover > a:after,
.nav-wizard > li:hover > a:after {
  border-left-color: #d5d5d5;
}
.nav-wizard > li.done > a {
  background-color: #e2e2e2;
}
.nav-wizard > li.done > a:before {
  border-right-color: #e2e2e2;
}
.nav-wizard > li.done > a:after {
  border-left-color: #e2e2e2;
}
.nav-wizard > li.active > a,
.nav-wizard > li.active > a:hover,
.nav-wizard > li.active > a:focus {
  color: #ffffff;
  background-color: #2FA4E7 !important;
}
.nav-wizard > li.active > a:after {
  border-left-color: #2FA4E7;
}
.nav-wizard > li.active > a .badge {
  color: #2FA4E7;
  background-color: #ffffff;
}
.nav-wizard > li.disabled > a {
  color: #777777;
}
.nav-wizard > li.disabled > a:hover,
.nav-wizard > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: #eeeeee;
  cursor: default;

}
.nav-wizard > li.disabled > a:before {
  border-right-color: #eeeeee;
}
.nav-wizard > li.disabled > a:after {
  border-left-color: #eeeeee;
}

/*.nav-wizard.nav-justified > li {
  float: none;
}
.nav-wizard.nav-justified > li > a {
  padding: 10px 15px;
}*/

.nav-wizard.nav-justified > li > a {
    border-radius: 4px;
    margin-right: 0;
}

.nav-wizard.nav-justified > li > a:before,
.nav-wizard.nav-justified > li > a:after {
    border: none !important;
}

@media (max-width: 729px) {
  .nav-wizard {
    display: none;
  }
}