﻿.form-steps {
    display: block;
    width: 100%;
    position: relative;
    margin: 20px 0 0
}

.form-steps:after {
    content: "";
    display: table;
    clear: both
}

.form-steps__item {
    padding: 0;
    position: relative;
    display: block;
    float: left;
    width: 25%;
    text-align: center
}

.form-steps__item-content {
    display: inline-block
}

.form-steps__item-icon {
    background: #eceff1;
    color: #8191ab;
    display: block;
    border-radius: 100%;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0 auto 10px;
    position: relative;
    font-size: 13px;
    font-weight: 700;
    z-index: 2
}

.form-steps__item-text {
    font-size: 13px;
    color: #8191ab;
    font-weight: 500
}

.form-steps__item-line {
    display: inline-block;
    height: 3px;
    width: 100%;
    background: #cfd8dc;
    float: left;
    position: absolute;
    left: -50%;
    top: 12px;
    z-index: 1
}

.form-steps__item--active .form-steps__item-icon {
    background: #C8102E;
    color: #fff
}

.form-steps__item--active .form-steps__item-text,
.form-steps__item--completed .form-steps__item-text {
    color: #4f5e77
}

.form-steps__item--active .form-steps__item-line {
    background: #C8102E
}

.form-steps__item--completed .form-steps__item-icon {
    background: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9IkxheWVyIDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDkuMTIgNyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTkuMTIgMS4wNkw4LjA2IDAgMy4xOCA0Ljg4IDEuMDYgMi43NiAwIDMuODIgMy4xOCA3bDUuOTQtNS45NHoiLz48L3N2Zz4=) center center no-repeat #4CAF50;
    color: transparent;
    background-size: 10px;
    width: 25px;
    height: 25px;
    line-height: 25px
}

.form-steps__item--completed .form-steps__item-line {
    background: #4CAF50
}

.form-steps__item--pending .form-steps__item-icon {
    background: #FF9800;
    color: #fff
}

.form-steps__item--pending .form-steps__item-line {
    background: #4CAF50
}