﻿.steps-container {
    display: flex;
    justify-content: space-around;
    margin: 25px 0 25px 0;
}

.step {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(13px) translateX(50%);
    width: 100%;
    height: 2px;
    background-color: #007bff;
    z-index: -1;
}

.step-number {
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 5px;
    background-color: #fff;
    color: #007bff;
    border: 2px solid #007bff;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.step-number.now{
    background-color: #007bff;
    color: #fff;
}

.step-number.finish::after{
    content: "";
    position: absolute;
    background: url(../images/check.svg) no-repeat center bottom;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
}


.step-description {
    font-size: 18px;
    margin: 0;
}
