.wizard-steps {
    display: block;
    list-style: none outside none;
    padding: 0;
    position: relative;
    width: 100%;
    li {
        cursor: pointer;
        display: block;
        float: left;
        max-width: 25%;
        min-width: 25%;
        text-align: center;
        padding-left: 0;
        &:before {
            border-top: 6px solid #55606E;
            content: "";
            display: block;
            font-size: 0;
            overflow: hidden;
            position: relative;
            top: 13px;
            right: 1px;
            width: 100%;
            z-index: 1;
        }
        &:first-child {
            &:before {
                left: 50%;
                max-width: 50%;
            }
        }
        &:last-child {
            &:before {
                max-width: 50%;
                width: 50%;
            }
        }
        &.complete {
            .step {
                background-color: $theme-color;
                padding: 1px 6px;
                border: 4px solid #55606e;
            }
        }
        .step {
            background-color: #d1dade;
            border-radius: 32px 32px 32px 32px;
            color: #fff;
            display: inline;
            font-size: 15px;
            font-weight: bold;
            line-height: 12px;
            padding: 4px 9px;
            position: relative;
            text-align: center;
            z-index: 2;
            transition: all 0.2s linear 0s;
            i {
                font-size: 10px;
                font-weight: normal;
                position: relative;
                top: -1.5px;
            }
        }
        .title {
            color: #B1BCC5;
            display: block;
            font-size: 13px;
            line-height: 15px;
            max-width: 100%;
            position: relative;
            table-layout: fixed;
            text-align: center;
            top: 20px;
            word-wrap: break-word;
            z-index: 104;
        }
    }
}
.wizard-steps a:hover,.wizard-steps a:active,.wizard-steps a:focus {
    text-decoration: none;
}
.wizard-steps li.active .step,.wizard-steps li.active.complete .step {
    background-color: $theme-color;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    font-size: 16px;
}
.wizard-steps li.complete .title, .wizard-steps li.active .title {
    color: #2B3D53;
}
.step-content {
    margin-left: 60px;
    margin-top: 40px;
    .step-pane {
        display: none;
        min-height: 267px;
    }
    .active {
        display: block;
    }
}

.wizard-actions {
    display: block;
    list-style: none outside none;
    padding: 0;
    position: relative;
    width: 100%;
    li {
        display: inline;
    }
}