.offerte-progress-wrapper {
    width: 100%;
    background-color: transparent;
    margin-bottom: 20px;
    .offerte-progress-bar {
        width: 100%;
        height: 10px;
        background-color: #2a2929;
        border-radius: 5px;
        overflow: hidden;
        .offerte-progress-fill {
            height: 100%;
            width: 0%;
            background-color: #005633;
            transition: width 0.3s ease;
        }
    }
    .offerte-progress-text {
        margin-top: 5px;
        font-size: 14px;
        font-weight: bold;
    }
}

.offerte-container {
    h2.offerte_title {
        display: none;
    }
    .btn {
        cursor: pointer;
        &.btn-prev {
            margin-right: 5px;
        }
    }
}

.uiz_extra-form {
    margin-top: 35px;
}

.offerte-question {
    margin-bottom: 30px;
    .the_question {
        display: inline-block;
        vertical-align: top;
        font-weight: 600;
    }
    .toggle-description {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #0073aa;
        color: #fff;
        text-align: center;
        line-height: 18px;
        cursor: pointer;
        margin-left: 5px;
    }
    .question-description-content {
        margin-top: -15px;
        border: 1px dotted #ccc;
        padding: 15px;
        margin-bottom: 15px;
    }
    ul {
        list-style-type: none;
        margin: 0!important;
        padding: 0;
        li {
            display: block;
            margin-bottom: 10px;
            padding-left: 0!important;
            &:before {
                display: none;
            }
            input[type="radio"],
            input[type="checkbox"] {
                display: none;
            }
            input[type="checkbox"]:checked + label {
                background-color: #005633;
                color: #fff;
                font-weight: 500;
            }
            label {
                display: block;
				width: 100%;
                padding: 18px;
                cursor: pointer;
                transition: all 0.25s;
                background: rgba(0, 0, 0, 0.075);
                border-radius: 3px;
                height: 100%;
                &:hover,
                &:focus,
                &:active {
                    background: rgba(0,0,0,0.15);
                }
                .question_score {
                    display: none;
                }
                .answer_img {
                    display: inline-block;
                    vertical-align: middle;
					object-fit: contain;
                    object-position: center;
                    &.boven {
                        display: block;
                        margin: 0 auto 15px;
                    }
                }
                .answer_title {
                    display: inline-block;
                    vertical-align: middle;
                    &.has_img_above {
                        display: block;
                        width: 100%;
                        text-align: center;
                    }
                    &.has_img_left {
                        padding-left: 15px;
                    }
                }
            }
            input[type="radio"]:checked + label {
                background-color: #005633;
                color: #fff;
                font-weight: 500;
            }
        }
    }
}

ul.answers[class*="columns-"] {
    display: grid;
    gap: 10px;
}
ul.answers.columns-1 {
    grid-template-columns: repeat(1, 1fr);
}
ul.answers.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}
ul.answers.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
ul.answers.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.offerte-question[data-question="result"] {
    background: #eee;
    border: 1px solid #ddd;
    margin-top: 30px;
    border-radius: 10px;
    h3.your_result {
        margin: 0;
        padding: 18px;
    }
    #score-text {
        padding: 18px;
        ul {
            li {
                border-bottom: 1px solid #ccc;
                padding: 10px 0;
                &:last-of-type {
                    border: 0;
                }
            }
        }
    }
    #summary-container {
        padding: 18px;
    }
    #offerte_extra-form {
        padding: 18px;
    }
}

.summary-set {
    background: #f5f5f5;
    border: 1px dotted #ddd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    position: relative;
    margin: 15px;
}
.summary-set .remove-set {
    position: absolute;
    top: 10px;
    right: 10px;
    background: crimson;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}