.content {
    text-align: left;
    width: 100%;
}

.steps-indicator {
    /* ---- steps quantity ---- */
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 20px 0 0 0;
    list-style: none;
    /* --- http://www.paulirish.com/2012/box-sizing-border-box-ftw/ ---- */
}

.steps-indicator:before {
    background-color: #e6e6e6;
    content: '';
    position: absolute;
    height: 1px;
}

.steps-indicator.steps-2:before {
    top: calc(100% / 2 / 2);
    bottom: calc(100% / 2 / 2);
}

.steps-indicator.steps-3:before {
    top: calc(100% / 3 / 2);
    bottom: calc(100% / 3 / 2);
}

.steps-indicator.steps-4:before {
    top: calc(100% / 4 / 2);
    bottom: calc(100% / 4 / 2);
}

.steps-indicator.steps-5:before {
    top: calc(100% / 5 / 2);
    bottom: calc(100% / 5 / 2);
}

.steps-indicator.steps-6:before {
    top: calc(100% / 6 / 2);
    bottom: calc(100% / 6 / 2);
}

.steps-indicator.steps-7:before {
    top: calc(100% / 7 / 2);
    bottom: calc(100% / 7 / 2);
}

.steps-indicator.steps-8:before {
    top: calc(100% / 8 / 2);
    bottom: calc(100% / 8 / 2);
}

.steps-indicator.steps-9:before {
    top: calc(100% / 9 / 2);
    bottom: calc(100% / 9 / 2);
}

.steps-indicator.steps-10:before {
    top: calc(100% / 10 / 2);
    bottom: calc(100% / 10 / 2);
}

.steps-indicator * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.steps-indicator li {
    position: relative;
    float: left;
    margin: 0;
    padding: 10px 0 0;
    text-align: center;
    line-height: 15px;
    height: 95px;
}

.steps-indicator li a {
    text-decoration: none;
    font-weight: bold;
    transition: 0.25s;
    cursor: pointer;
    color: #FFFFFF;
    padding-left: 10px;
}

.steps-indicator li p {
    color: #FFFFFF;
    padding-left: 65px;
    padding-top: 5px;
}

.steps-indicator li img {
    float: left;
    margin-left: 13px;
}

.steps-indicator.steps-2 li {
    width: 100%;
}

.steps-indicator.steps-3 li {
    width: 100%;
}

.steps-indicator.steps-4 li {
    width: 100%;
}

.steps-indicator.steps-5 li {
    width: 100%;
}

.steps-indicator.steps-6 li {
    width: 100%;
}

.steps-indicator.steps-7 li {
    width: 100%;
}

.steps-indicator.steps-8 li {
    width: 100%;
}

.steps-indicator.steps-9 li {
    width: 100%;
}

.steps-indicator.steps-10 li {
    width: 100%;
}

.steps-indicator.steps-11 li {
    width: 100%;
}

.steps-indicator li.default {
    pointer-events: none;
}

.steps-indicator li.default a:hover {
    color: #808080;
}

.steps-indicator li.current,
.steps-indicator li.editing {
    pointer-events: none;
}

.steps-indicator li.current a:before {
    background-color: #808080;
}

.steps-indicator li.done a:before {
    background-color: #339933;
}

.steps-indicator li.editing a:before {
    background-color: #ff0000;
}
