.steps {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.step-content {
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
}

.step {
    position: relative;
    padding: 0.25rem;
    width: 4rem;
    vertical-align: bottom;
}

    .step.active {
        width: auto;
    }

.step-text {
    color: #adb5bd;
    word-break: break-all;
    margin-top: 0.25rem;
}

.active .step-text {
    font-weight: bold;
    color: #17a2b8;
}

.step-bar {
    height: 5px;
    width: 100%;
    background-color: #CBC5B9;
}

.active .step-bar {
    height: 1.5rem;
    width: 100%;
    background-color: #64B1B5;
    color: #FFF;
    vertical-align: middle;
    text-align: center;
    font-size: 1rem;
}