.uk-funnel .header-wrapper-bar {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
    background-color: white;
    z-index: 2;
}

.uk-funnel .progress-bar {
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    background-color: transparent;
    width: 100%;
    margin: auto;
    top: 0;
    position: sticky;
    z-index: 10;
    order: 11;
    margin-top: -1.5rem;
    height: auto;
    border-radius: unset;
}

.uk-funnel .time-bar {
    width: 100%;
}

.uk-funnel .progress-bar-line {
    background-color: #eaeaea;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    height: 10px;
    margin: auto;
    position: relative;
}

.uk-funnel .progress-bar-red {
    width: 0;
    transition: width 0.5s cubic-bezier(.4, 0, .2, 1);
    color: #fff;
    line-height: 1;
    font-weight: 500;
    font-size: .75rem;
    text-align: center;
    padding: .125rem;
    background-color: #ed002f;
    border-radius: 9999px;
    height: 100%;
}

.uk-funnel .progress-bar-circle {
    width: 35px;
    height: 35px;
    position: absolute;
    z-index: 10;
    left: 0%;;
    border-radius: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: center;
    font-size: 14px;
    background-color: #ed002f;
    color: #fff;
    transition: left 0.5s cubic-bezier(.4, 0, .2, 1);
    transform: translateX(-50%); /* Pour centrer le cercle sur le curseur */
    display: flex;
    align-items: center;
    justify-content: center;
}

.uk-funnel .progress-bar-circle-grey {
    background-color: #eaeaea;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    right: 0;
    position: absolute;
    transform: translateX(50%);
}

.uk-funnel main {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 0 10px;
}

.uk-funnel main .wrapper {
    padding-bottom: 170px;
    transition: min-height .3s, max-height .3s; /* On évite "all" */
    min-height: 500px;
    max-height: 700px;
    overflow-y: auto;
    scroll-behavior: smooth;
    position: relative;
    /* 1. Pour Firefox */
    scrollbar-width: none; 
    /* 2. Pour Internet Explorer et Edge (ancienne version) */
    -ms-overflow-style: none;
}
.uk-funnel main .wrapper::-webkit-scrollbar {
    display: none;
}

.uk-funnel main .funnel-title {
    text-align: center;
}

.uk-funnel main .wrapper .articleQuestion .questionTitle {
    text-align: center;
    font-size: 1.6rem;
    padding: .25rem;
    padding-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    margin-top: 2.5em;
}

/* SI ON A PAS REPONDU A LA QUESTION */
.uk-funnel main .wrapper .articleQuestion:not(.answered) .questionTitle {
    font-weight: bold;
}

.uk-funnel main .wrapper .articleQuestion .container-btn {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
    margin-left: 40px;
    margin-right: 40px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row;
}

.uk-funnel main .wrapper .articleQuestion .label-radio {
    cursor: pointer;
    display: flex;
    padding: 20px 30px;
    background-color: #f4f4f4;
    border-radius: 15px;
    border-top-left-radius: 0;
    width: fit-content;
    align-items: center;
    gap: 20px;
    scale: 1;
    transition: scale .5s ease-in-out;
    color: #000;
    margin-left: 10px;
    margin-right: 10px;
    text-align:center;
}

.uk-funnel main .wrapper .articleQuestion .label-radio.label-radio-active {
    color: #fff;
    background: linear-gradient(205deg, #00a37d 0%, #00bf9e 100%);
    scale: 1.15;
}

.uk-funnel main .wrapper .articleQuestion .label-radio img {
    transition: backgroundColor .5s ease-in-out;
}

.uk-funnel main .wrapper .articleQuestion .label-radio.label-radio-active img {
    background-color: white;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}

.uk-funnel main .wrapper .articleQuestion.showed:not(:first-of-type) {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.uk-funnel .containerSubmitForm {
    background-color: #f5f5f5;
    border: none;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
    height: 40px;
    margin: auto;
}

.uk-funnel .containerSubmitForm .input-inline {
    width: 100%;
    padding-left: 10px;
    border-radius: inherit;
    border: none;
    height: 100%;
    background-color: transparent;
}

.uk-funnel .containerSubmitForm .btn-inline {
    margin: 0 !important;
    height: 100%;
    padding: 0 15px !important;
}

.uk-funnel .message {
    text-align: center;
}

.uk-funnel .legal-conf {
    text-align: center;
    font-size: 12px;
}

.uk-funnel .containerSubmitForm .input-inline:focus,
.uk-funnel .containerSubmitForm .input-inline:focus-visible {
    outline: 0;
}

.dt-wrapper {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .25);
    border-radius: 30px;
    padding: 16px;
    max-width: 500px;
    width: clamp(0px, calc(100% - 32px), 600px) !important;
    margin: auto !important;
}

@media all and (max-width: 992px){
    .uk-funnel main .wrapper .articleQuestion .questionTitle{
        padding-bottom: unset;
        margin-top: 1.5rem;
    }
    .uk-funnel main .wrapper .articleQuestion .container-btn {
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 20px;
        gap: 10px;
    }
    .uk-funnel main .wrapper .articleQuestion .label-radio{
        padding: 11px 20px 10px;
    }
}