.steps {
    margin-bottom: 0px;
    border-bottom: 1px solid #e0e0e0;
}
.steps ul {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
}
.steps li,
.steps li.current,
.steps li.warning {
    outline: none;
    -o-outline: none;
    -ms-outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    position: relative;
    padding-bottom: 3px;
    padding-right: 0;
    margin-right: 30px;
    text-align: left;
}
.steps li:last-child {
    padding-right: 0;
}
.steps li .current-info {
    display: none;
}
.steps li::before {
    position: absolute;
    content: "";
    background: #e5e5e5;
    width: 40px;
    height: 4px;
    top: 12%;
    left: 90%;
}
.steps li:last-child::before {
    content: none;
}
.steps li.current::after, 
.steps li.warning::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background: #ccc;
    top: 75%;
}
.steps li a {
    text-decoration: none;
    outline: none;
    -o-outline: none;
    -ms-outline: none;
    -moz-outline: none;
    -webkit-outline: none;
}
.steps li a .title {
    text-align: center;
}
.steps li a .title span {
    display: block;
    font-size: 10px;
}
.steps li a .title .step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #ccc;
    margin: 0 auto;
    position: relative;
    outline: none;
    -o-outline: none;
    -ms-outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    color: #fff;
    font-size: 14px;
}
.steps li a .step-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.steps li.current a .step-icon,
.steps li.current a:active .step-icon,
.steps .done::before,
.steps li.done a .step-icon,
.steps li.done a:active .step-icon {
    background: #6eba2a;
}
.steps li.warning a .step-icon,
.steps li.warning a:active .step-icon,
.steps .done::before,
.steps li.done a .step-icon,
.steps li.done a:active .step-icon {
    background: #ff9041;
}
.steps li.current .steps li.warning a .step-icon,
.steps li.current .steps li.warning a:active .step-icon {
    box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.2);
}
.steps li a .step-number {
    color: #666;
    font-weight: 400;
    padding: 17px 0 8px;
}
.steps li a .step-text {
    color: #333;
    font-weight: 600;
    padding-top: 8px;
    padding-bottom: 8px;
}