:root {
    --progress-bg-color: var(--primary-color-dark-s3);
    --progress-bar-color: var(--secondary-color-dark);
    --step-text-color: var(--secondary-color-dark-s2);
    --progress-bar-height: 2vh;
}

.progress-container {
    width: 100%;
    padding: 2vh;
    text-align: center;
    align-items: center;
    position: relative;
    display: flex;
}

.progress-content {
    position: relative;
    width: 60%;
    margin: auto;
}

.progress-content div {
    border-radius: 2vh;
}

.progress-content > div:first-child {
    background-color: var(--progress-bg-color);
}

.progress-bar {
    height: var(--progress-bar-height);
    width: 0;
    background-color: var(--progress-bar-color);
    transition: width 0.3s ease;
}

.step-text {
    color: var(--step-text-color);
    font-size: 2.5vh;
    margin-top: 0.5vh;
    font-weight: var(--font-weight-bold);
}

.progress-content h2 {
    color: var(--step-text-color);
    font-size: 1.5vh;
    margin-top: 0.25vh;
    font-weight: var(--font-weight-bold);

    display: none;
}

.progress-container.last-step h2 {
    display: block;
}