﻿/**/
wizard {
  display: inline-block;
  width: 100%;
}
wizard wizard-menu {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 50px;
  color: #e6e6e6;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
  margin: 20px 0 20px 0;
}
wizard wizard-menu menu-item {
  display: table-cell;
  text-align: center;
  color: inherit;
  position: relative;
}
wizard wizard-menu menu-item circle {
  color: inherit;
  height: 30px;
  width: 30px;
  margin-left: 2px;
  margin-right: 2px;
  border-color: #e6e6e6;
  line-height: 25px;
  background-color: #f5f5f5;
  box-shadow: 0 0 0 5px #f5f5f5;
}
wizard wizard-menu menu-item > span {
  display: inline-block;
  width: 100%;
  color: inherit;
  padding-top: 5px;
  z-index: 99;
}
wizard wizard-menu menu-item:before,
wizard wizard-menu menu-item.active:not(:first-child):not(:last-child):after {
  display: inline-block;
  content: "";
  border-top: 2px solid #e6e6e6;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: -5;
}
wizard wizard-menu menu-item:first-child {
  text-align: left;
}
wizard wizard-menu menu-item:first-child circle {
  margin-left: 10px;
}
wizard wizard-menu menu-item:first-child:before {
  left: 10px;
}
wizard wizard-menu menu-item:last-child {
  text-align: right;
  background-image: linear-gradient(left, transparent 100%, #e5e5e5 100%);
}
wizard wizard-menu menu-item:last-child circle {
  margin-right: 10px;
}
wizard wizard-menu menu-item:last-child > span {
  padding-right: 8px;
}
wizard wizard-menu menu-item:last-child > span:before {
  right: 10px;
}
wizard wizard-menu menu-item:last-child:before {
  width: 90%;
}
wizard wizard-menu menu-item.passed {
  color: #808080;
}
wizard wizard-menu menu-item.passed circle {
  border-color: #808080;
}
wizard wizard-menu menu-item.passed:before {
  border-color: #808080;
}
wizard wizard-menu menu-item.active {
  color: #072f68;
}
wizard wizard-menu menu-item.active circle {
  border-color: #072f68;
}
wizard wizard-menu menu-item.active:not(:first-child):not(:last-child):before {
  border-color: #808080;
  width: 50%;
  z-index: -4;
}
wizard wizard-menu menu-item:last-child.active:before {
  border-color: #808080;
}
wizard wizard-menu menu-item.pending {
  color: #072f68;
  opacity: .5;
}
wizard wizard-menu menu-item.pending circle {
  border-color: #072f68;
}
wizard wizard-step {
  display: inline-block;
  overflow: hidden;
}
