
.steps {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  
    place-content: center;
    align-items: flex-start;
  overflow-x: auto;
}
.steps .step{
	flex: 1 1 auto;
	position:relative;
}

.steps .step::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
    left: 0px;
  width: 100%;
  height: 3px;
  color: #adb5bd;
  background-color: #EAEAEA;
  z-index:1;
}
.steps .step:first-child {
  margin-left: auto;
}
.steps .step:first-child::after { 
  width: 50%;
    left: inherit;
    right: 0px;
}
.steps .step:last-child {
  margin-right: auto;
}
.steps .step:last-child::after { 
  width: 50%;
}

.step:first-of-type .step-circle::before {
  display: none;
}
.step:last-of-type .step-content {
  padding-right: 0;
}

.step-content {
	position:relative;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding:0.5rem 0.75rem ;
z-index:100;  
}

.step-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: #777777;
  border: 2px solid #EAEAEA;
  border-radius: 100%;
  background-color: #EAEAEA;
    font-weight: bold;
}

.step-text {
  color: #777777;
    font-weight: bold;
    font-size: 1.1em;
  margin-top: 0.25em;
}

.step-active .step-circle {
  color: #fff;
  background-color: #2A528E;
  border-color: #2A528E;
}
.step-active .step-circle::before {
  color: #2A528E;
}
.steps .step.step-success::after,
.steps .step.step-active::after {
  background-color: #2A528E;  
}
.steps .step.step-active::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
    right: 0px;
  width: 50%;
  height: 3px;
  background-color: #EAEAEA;
  z-index:10;
}
.steps .step.step-active:last-child::before{
    display: none;
}
.step-active .step-text {
  color: #2A528E;
}

.step-error .step-circle {
  color: #fff;
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
}
.step-error .step-circle::before {
  color: #dc3545 !important;
}
.step-error .step-text {
  color: #dc3545 !important;
}

.step-success .step-circle {
  color: #00a65a  !important;
  border-color: #00a65a !important;
  background-color: #00a65a !important ;
}
.step-success .step-circle::before {
  color: #00a65a !important ;
}
.step-success .step-circle::after {
    width: 100%;
    height: 100%;
    padding-top: 3px;
     text-align: center;
    position:absolute; 
    top: 0px;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f00c";
    color:#FFFFFF;
    
}
.step-success .step-text {
  color: #00a65a  !important;
}
@media(max-width:1199px){
    .step-text{ display: none;}
    .step-active .step-text{ display: block;}
    
}