
.step-container:after {
    content: "";
    display: table;
    clear: both;
}
.step-container{
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.step-container .step-item {
    display: block;
    float: left;
    width: 33.333333%;
    text-align: center;
}

.step-item .step-icon {
    height: 40px;
    line-height: 40px;
    background-color: #EAEAEA;
    position: relative;
}

.step-item .step-icon i {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #A6A6A6;
    color: #fff;
    margin-right: 5px;
    font-style: normal;
}

.step-item .step-icon:before,
.step-item .step-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 10px solid #fff;
}

.step-item .step-icon:after {
    border-left-color: #EAEAEA;
    right: 3px;
    z-index: 10;
}

.step-item.step-last .step-icon:before,
.step-item.step-last .step-icon:after {
    border: 0;
}

.step-item.active .step-icon {
    color: #DC4544;
}
.step-item.active .step-icon i{
    background-color: #DC4544;
}


.step-content{
    padding: 30px 0;
}

.reset-success-icon{
    color: #3CB73B;
    font-size: 50px;
    text-align: right;
}

@media screen and (max-width: 992px) {
    .reset-success-icon{
        text-align: left;
    }
}