﻿.step-container {
    width: 100%;
    margin: 0 0 3rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    padding: 0;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.step-indicator .step-icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #d8d8d8;
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    position: relative;
    line-height: 31px;
    font-size: 13px;
}

.step.active .step-icon {
    background: #3b4337;
}

.step p {
    text-align: center;
    position: absolute;
    top: 38px;
    width: 68px;
    color: #d8d8d8;
    font-size: 10px;
    font-weight: bold;
}

.step.active p {
    color: #3b4337;
}

.step.step2 p,
.step.step3 p,
.step.step4 p{
    left: 50%;
    transform: translateX(-50%);
}

.step.step1 p {
    left: 0;
    text-align: left;
}

.step.step4 p {
    left: 0;
    text-align: right;
}

.indicator-line {
    width: 100%;
    height: 3px;
    background: #d8d8d8;
    flex: 1;
}

    .indicator-line.active {
        background: #3b4337;
    }


@media (min-width: 450px) {
    .step p {
        width: 100px;
    }

    .step.step4 p {
        left: -22px;
    }
}