.fe-step {
  flex-grow: 1;
}
.fe-step .fe-step-header {
  position: relative;
  text-align: center;
}
.fe-step .fe-step-header .fe-step-header-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.fe-step .fe-step-header .fe-step-header-line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #ddd;
  top: 5px;
}
.fe-step .fe-step-main-title {
  padding: 12px 0 0;
  font-size: 12px;
  color: #333333;
  line-height: 19px;
}
.fe-step .fe-step-main-description {
  padding: 6px 12px 0px 0;
  font-size: 12px;
  color: #999999;
}
.fe-step:last-child .fe-step-header-line {
  display: none;
}
.fe-step.is-finish .fe-step-header-icon,
.fe-step.is-finish .fe-step-header-line {
  background-color: #108ee9;
}
.fe-step.is-active .fe-step-header-icon {
  background-color: #108ee9;
}
.fe-step.is-last .fe-step-header-line {
  background-color: #ddd;
}
.fe-step.is-horizontal {
  width: 10%;
}
.fe-step.is-horizontal .fe-step-main-title {
  padding: 12px 0 0;
  font-size: 12px;
  color: #333333;
  line-height: 19px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fe-step.is-horizontal .fe-step-main-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.fe-step.is-vertical {
  display: flex;
  padding-top: 5px;
}
.fe-step.is-vertical:last-child {
  flex-grow: 0;
}
.fe-step.is-vertical .fe-step-main {
  padding-left: 16px;
  width: 100%;
}
.fe-step.is-vertical .fe-step-header-icon {
  width: 20px;
  height: 20px;
  font-size: 12px;
}
.fe-step.is-vertical .fe-step-header-line {
  left: 10px;
  top: 10px;
  width: 1px;
  height: 100%;
}
.fe-step.is-vertical .fe-step-main-title {
  padding: 0;
  font-size: 15px;
  line-height: 21px;
}
.fe-step.is-vertical .fe-step-main-description {
  font-size: 13px;
  color: #999999;
  letter-spacing: 0;
  line-height: 19px;
}
.fe-step.is-vertical.is-wait .fe-step-header-icon {
  transform: scale(0.41666667);
}
.fe-step.is-vertical.is-error .fe-step-header-icon {
  background-color: #f5222d !important;
}
.fe-step.is-vertical.is-error .fe-step-main-title {
  color: #f5222d !important;
}
.fe-step.is-vertical.is-warning .fe-step-header-icon {
  background-color: #ffe58f !important;
}
.fe-step.is-vertical.is-warning .fe-step-main-title {
  color: #ffe58f !important;
}
.fe-step.is-vertical.is-checked .fe-step-header-icon {
  background-color: #108ee9;
}
.fe-step.is-vertical.is-checked .fe-step-main-title {
  color: #108ee9;
}
.fe-step.is-vertical.is-finish .fe-step-main-title {
  color: #108ee9;
}
.fe-step.is-vertical.is-active .fe-step-main-title {
  color: #108ee9;
}
.is-center {
  text-align: center;
}
.is-center .fe-step-header-line {
  margin: 0 0 0 50%;
}
.is-center .fe-step-header-icon {
  margin: 0 0 0 50%;
}
