/* Container */
.gf_page_steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 0;
}

/* Individuele stappen */
.gf_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.gf_step.gf_step_hidden{
    display:none;
}

/* Lijn tussen de stappen */
.gf_step:not(:first-child)::after {
    content: '';
    position: absolute;
    top: 34%;
    left: -50%;
    width: 100%;
    height: 4px;
    background-color: #ddd; /* Inactieve lijnkleur */
    z-index: 0;
    transform: translateY(-50%);
}

.gf_step_completed::after {
    background-color: var(--huisbrand-color) !important;
}

/* Bolletjes */
.gf_step_number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd; /* Inactieve bolkleur */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
}

/* Label onder de bolletjes */
.gf_step_label {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

/* Actieve stappen */
.gf_step_active .gf_step_number {
    color: #fff;
}

/* Voltooide stappen */
.gf_step_active .gf_step_number,
.gf_step_completed .gf_step_number,
.gf_step_active ~ .gf_step_number {
    background-color: var(--huisbrand-color); /* Voltooide bolkleur */
    color: #fff;
}

.gf_step_active ~ .gf_step_label {
    color: var(--huisbrand-color);
}

.gfield .input-text-bottom,
.gform_required_legend,
.ginput_container_date .screen-reader-text {
    display: none;
}

.gform_button.btn-submit,
.gform-theme-button.button {
    background-color: var(--huisbrand-color);
    padding: 15px !important;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
}

.gform_button.btn-submit:hover,
.gform-theme-button.button:hover {
    background-color: var(--huisbrand-color-hover);
    cursor: pointer;
}

.gform-page-footer.gform_page_footer.top_label {
    clear: both;
}

.gfield--type-radio .ginput_container {
    text-align: left !important;
}

.gfield--type-radio .ginput_container label {
    color: black;
}

.gfield--type-radio .ginput_container input {
    width: auto !important;
}

.gfield .validation_message {
    color: red;
}
@media screen and (min-width: 750px) {

    .form-large .gfield{
        width: 97%;
    }
    .gfield--width-half {
        width: 49% !important;
        padding: 0 10px 0 0;
    }

}
