.switch-up .radio-choix{
    margin: 15px 0;
    padding: 0 0 0 20px;
}

.switch-up .radio-choix__container{
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.switch-up .radio-choix__item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    width: 170px;
    height:123px;
    border: 1px solid var(--color-text);
    margin-right: -1px;
    cursor: pointer;
    transition: .4s;
}

.switch-up .radio-choix__item__image{
    display: block;
    width: 80px;
    height:75px;
    background-position: center;
    background-repeat: no-repeat;
}

.switch-up .radio-choix__item__image.choix1{
    background-color: var(--color-text);
    -webkit-mask-image: url('../../img/organisation/choix1.svg'); /* warning : not standard */
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 70px;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
}

.switch-up .radio-choix__item__image.choix2{
    background-color: var(--color-text);
    -webkit-mask-image: url('../../img/organisation/choix2.svg'); /* warning : not standard */
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 70px;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
}

.switch-up .radio-choix__item__image.choix3{
    background-color: var(--color-text);
    -webkit-mask-image: url('../../img/organisation/choix3.svg'); /* warning : not standard */
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 70px;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
}

.switch-up .radio-choix__item__libelle{
    font-size: 1.3rem;
    color: var(--color-text);
}

.switch-up .radio-choix__item.is-active
{
    background-color: var(--color-primary);
}

.switch-up .radio-choix__item.is-active::after{
    content:'';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    border:2px solid var(--color-primary);
    z-index: 1;
}

.switch-up .radio-choix__item.is-active:first-child::after{
    width: calc(100% + 2px);
}

.switch-up .radio-choix__item.is-active:last-child::after{
    width: calc(100% + 2px);
    left: -1px;
}

.switch-up .radio-choix__item.is-active .radio-choix__item__image.choix1{
    background-color: var(--color-white);
}

.switch-up .radio-choix__item.is-active .radio-choix__item__image.choix2{
    background-color: var(--color-white);
}

.switch-up .radio-choix__item.is-active .radio-choix__item__image.choix3{
    background-color: var(--color-white);
}

.switch-up .radio-choix__item.is-active .radio-choix__item__libelle{
    color: var(--color-white);
}

.switch-up .radio-choix__nbResponses{
    display: block;
    width: 100%;
    max-width: 540px;
    font-size: 1.3rem;
    color: var(--color-grey);
    margin: 0 auto;
}

.switch-up form .bloc-cta{
    margin-top: 30px;
    text-align: right;
}

@media screen and (max-width: 1199px) {
    html .switch-up .radio-choix.radio-choix--6choix .radio-choix__container,.switch-up .radio-choix.radio-choix--3choix .radio-choix__container{
        flex-wrap: wrap;
    }
    html .switch-up .radio-choix.radio-choix--6choix .radio-choix__item,.switch-up .radio-choix.radio-choix--3choix .radio-choix__item{
        margin: 0 5px 5px;
    }
    html .switch-up .radio-choix.radio-choix--6choix .radio-choix__item:last-child::after,.switch-up .radio-choix.radio-choix--3choix .radio-choix__item:last-child::after{
        border-left: 2px solid var(--color-primary);
    }
    html .switch-up .radio-choix.radio-choix--6choix .radio-choix__item:first-child::after,.switch-up .radio-choix.radio-choix--3choix .radio-choix__item:first-child::after{
        border-right: 2px solid var(--color-primary);
    }
    html .switch-up .radio-choix.radio-choix--6choix .bloc-cta,.switch-up .radio-choix.radio-choix--3choix .bloc-cta{
        text-align: center;
    }
}

@media screen and (max-width: 991px) {
    html .switch-up .radio-choix.radio-choix--6choix .radio-choix__container,.switch-up .radio-choix.radio-choix--3choix .radio-choix__container{
        /*max-width: 540px;*/
    }
}