.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.steps__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.steps__item--indicator {
    width: 50px;
    height: 50px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.steps__item--completed .steps__item--indicator {
    background: #28a745;
    color: #fff;
    cursor: pointer;
}

.steps__item--completed .steps__item--label {
    color: #28a745;
}

.steps__item--label {
    font-weight: bold;
}

.steps__item--active .steps__item--indicator {
    background: #007bff;
    color: #fff;
}

.steps__item--active .steps__item--label {
    color: #007bff;
}