﻿.steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 300px;
}

.step {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #ACACA6;
    border-radius: 50%;
    transition: background 1s;
}

    .step.selected {
        border: 2px solid #4B81BD;
    }

    .step.completed {
        border: 2px solid #4B81BD;
        background: #4B81BD;
    }

.step-progress {
    position: relative;
    top:10px;
    width: 300px;
    height: 0;
    border-bottom: 2px solid #ACACA6;
    z-index: -1;
    margin-top:30px;
}

.step-percent {
    position: absolute;
    height: 100%;
    border-bottom: 2px solid #4B81BD;
    z-index: 1;
    transition: width 1s;
}

.step-1-title {
    position: absolute;
    top: -20px;
    right: -16px;
}

.step-2-title {
    position: relative;
    top: -20px;
    right: 55px;
}

.step-3-title {
    position: relative;
    top: -20px;
    right: 50px;
}

.step-4-title {
    position: relative;
    top: -20px;
    right: 40px;
}

.step-title-selected {
    color: #4B81BD;
}