﻿.progress-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    position: relative;
    z-index: 0;
}

.progress-title {
    position: absolute;
    top: 32px;
    left: 32px;
    margin: 0;
}

.step-progress-bar {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step-wrapper {
    display: flex;
    align-items: center;
    z-index: 2;
}

.progress-line-container {
    position: absolute;
    top: 20px;
    width: 100%;
    height: 2px;
    background-color: black;
    z-index: 1;
}

.progress-line {
    width: 100%;
    height: 100%;
    background-color: black;
}

.circular-background {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1A7CCA;
}

    .circular-background.inactive {
        background-color: #E5E5E5;
    }

.step-item, .step-item label {
    cursor: pointer;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-right: 150px;
    z-index: 2;
}

    .step-item:last-child {
        margin-right: 0;
    }

.image-label {
    font-family: Inter;
    font-weight: 500;
    font-size: 12px;
    color: #4A4A4A;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
}

    .image-label.inactive {
        color: #D4D4D4;
    }

.child-content {
    margin-right: auto;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 60px;
}

.progress-bar-footer {
    display: flex;
    width: 100%;
}

.left-button {
    margin-right: auto;
}

.right-button {
    margin-left: auto;
}
