.stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-label {
    display: flex;
    align-items: center;
}

.step-badge {
    background-color: #FDC300;
    border-radius: 6px;
    padding: 4px 8px;
    margin-right: 24px;
    font-weight: bold;
    display: flex;
}

.step-label span {
    color: #647688;
    font-weight: 600;
}

.step-label span.active {
    color: #1d1d5e;
    font-weight: bold;
}

.step-label.right {
    justify-content: flex-end;
}

.stepper-bar {
    display: flex;
    gap: 12px;
}

.stepper-bar div {
    flex: 1;
    height: 7px;
    background-color: #C8D0D8;
    border-radius: 6px;
    position: relative;
}


.stepper-bar div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    background-color: #232558;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease-in-out;
}

.stepper-bar div.filled::before {
    transform: scaleX(1);
}

.back-arrow::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 18px;
    background: url(../../img/angular/common/back-arrow.svg) no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: width 0.4s ease;
}

.back-arrow.active::before {
    width: 18px;
}

.back-arrow.active {
    margin-right: 8px;
    width: 18px;
}

.back-arrow {
    transition: width 0.4s ease;
    width: 0;
    line-height: 0;
}

@media (max-width: 768px) {
    .step-badge {
        margin-right: 10px;
    }

    .stepper-container {
        margin-bottom: 0;
    }
}