ul.wizard-breadcrumbs {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: inline-table;
}
ul.wizard-breadcrumbs li {
  display: inline-block;
  position: relative;
}
ul.wizard-breadcrumbs > li > a {
  display: block;
  float: left;
  height: 40px;
  background-color: #007acc;
  text-align: center;
  line-height: 40px;
  padding: 0 20px 0 40px;
  position: relative;
  margin: 0 10px 0 0;
  text-decoration: none;
  color: #ffffff;
}
ul.wizard-breadcrumbs > li > a:after {
  content: "";
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #007acc;
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 1;
}
ul.wizard-breadcrumbs > li > a:before {
  content: "";
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #ffffff;
  position: absolute;
  left: 0;
  top: 0;
}
ul.wizard-breadcrumbs > li:first-child a {
  padding-left: 20px;
}
ul.wizard-breadcrumbs > li > a:hover {
  background: #0098ff;
}
ul.wizard-breadcrumbs > li > a:hover:after {
  border-left-color: #0098ff;
}
ul.wizard-breadcrumbs > li.active a {
  background-color: #5cb85c;
  color: #ffffff;
}
ul.wizard-breadcrumbs > li.active a:after {
  border-left-color: #5cb85c;
}
ul.wizard-breadcrumbs > li.disabled a {
  pointer-events: none;
  cursor: default;
  background-color: #cccccc;
  color: #777777;
}
ul.wizard-breadcrumbs > li.disabled a:after {
  border-left-color: #cccccc;
}
ul.wizard-breadcrumbs > li:first-child a:before,
ul.wizard-breadcrumbs > li:last-child a:after {
  display: none;
}
.wizard-header {
  border-bottom: solid 1px silver;
  position: relative;
}
.wizard-header .wizard-title {
  font-size: 28px;
}
.wizard-buttons {
  font-size: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
a.wizard-button {
  background: transparent;
  margin: 0;
  padding: 0;
  line-height: 30px;
  height: 36px;
  overflow: hidden;
  position: relative;
}
a.wizard-button.disabled {
  color: #ccc;
  pointer-events: none;
  cursor: default;
}
a.wizard-button.invisible {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
a.wizard-button:hover {
  text-decoration: none;
}
.wizard-breadcrumbs .badge {
  background-color: #fff;
  color: #516372;
}
.step-summary {
  position: absolute;
  bottom: 0;
  right: 50px;
}
