
.tricot-steps {
    padding: 20px 0;
    display: flex;
    column-gap: 20px;
    align-items: flex-start;
}

.tricot-steps .step {
    /* flex:1 + min-width:0 au lieu d'une largeur fixe à 20% : garantit
       que les 5 étapes se répartissent exactement la largeur dispo,
       quel que soit le nombre d'étapes et le column-gap du parent. */
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 5px;
    text-decoration: none;
    outline: none !important;
    box-shadow: none !important;
}

.tricot-steps .step .check {
    /* flex-shrink: 0 pour que la pastille garde sa taille même si
       un titre long sur 2 lignes force le wrap. */
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #707070;
    color: transparent;
    box-sizing: border-box;

    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.tricot-steps .step .check .material-icons {
    font-size: 18px;
}


.tricot-steps .step .line {
    /* flex:1 au lieu de calc(100% - 34px) : laisse le flex remplir
       l'espace restant après `check` + column-gap. L'ancienne formule
       ne soustrayait pas le column-gap, créant un petit décalage de
       ~2px cumulatif entre les étapes qui se voyait à l'œil. */
    flex: 1 1 auto;
    min-width: 0;
    height: 1px;
    background-color: #707070;
}

.tricot-steps .step h3 {
    width: 100%;
    padding-left: 34px;
    color: #707070;
    text-decoration: none;
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
}

.tricot-steps .step.disable {
    cursor: not-allowed;
    opacity: 0.75;
}


.tricot-steps .step.active .check {
    background: #141443;
    border: 1px solid #141443;
    color: #fff;

}

.tricot-steps .step.active .line {
    height: 3px;
    background: #141443;
}

.tricot-steps .step.active h3 {
    color: #141443;
}


.tricot-wizard-page {
    max-width: 1253px;
    margin: 60px auto;
    display: flex;
    column-gap: 40px;
    row-gap: 40px;
    padding: 60px 20px 40px 20px;
}

.tricot-wizard-page h2 {
    font-size: 25px;
    line-height: 32px;
    font-weight: 600;
}

.tricot-wizard-page label {
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.tricot-wizard-page form {
    width: 100%;
}

.tricot-wizard-page form select,
.tricot-wizard-page form input[type=text] {

    width: 100%;
    border: 1px solid #DDDEDE;
    background-color: #F3F3F5;
    padding: 10px;
}

.tricot-wizard-page form .wizard-submit {

    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.tricot-wizard-page.tricot-wizard-step-1 .content {
    max-width: 640px;
    width: 100%;

    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding: 30px 20px;
}


.tricot-wizard-page.tricot-wizard-step-1 form .submit {
    text-align: right;

}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar {
    max-width: 476px;
    width: 100%;
    margin: 0 auto;
    background-color: #F1F6FF;
    border-radius: 4px;
    padding: 30px;

}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plans {
    margin: 30px 0;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plan {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    position: relative;
    border-radius: 4px;
    background-color: #FFFFFF;
    margin: 10px 0;
    padding: 10px;

    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    border: 3px solid transparent;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plan .price {
    width: 136px;
    margin-left: auto;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plan small {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    color: #707070;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plan.selected {
    border: 3px solid #91C5FC;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plan .check {
    display: none;
    position: absolute;
    top: -21px;
    right: -21px;
    width: 42px;
    height: 42px;
    background-color: #91C5FC;
    border-radius: 50%;
    color: #fff;

    align-content: center;
    align-items: center;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .btns_sidebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .btns_sidebar .more-details {
    color: #141443;
    font-weight: 600;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .free-plan {
    text-align: right;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .free-plan a {

    color: #707070;
}

.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plan .check .material-icons {
    font-size: 32px;
}


.tricot-wizard-page.tricot-wizard-step-1 .sidebar .plan.selected .check {

    justify-content: center;
    display: flex;
}


.tricot-wizard-page.tricot-wizard-step-free .section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.tricot-wizard-page.tricot-wizard-step-free .content {
    display: flex;
    flex-direction: column;
    max-width: 640px;
    width: 100%;

    row-gap: 40px;
    padding: 30px 20px;

}

.tricot-wizard-page.tricot-wizard-step-free .sidebar {
    display: flex;
    flex-direction: column;
    max-width: 373px;
    width: 100%;
    margin: 0 auto;
}


.tricot-wizard-page.tricot-wizard-step-free .card-bulle {
    padding: 31px 28px;
    background-color: #EAF2FF;
    border-radius: 8px;
    z-index: 2;
    position: relative;
    color: var(--text-light);

    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}

.tricot-wizard-page.tricot-wizard-step-free .card-bulle:after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 60px;
    z-index: 1;
    background: url("../images/bulle-pointe.svg");
    width: 33px;
    height: 34px;
    transform: rotate(90deg);
}

.tricot-wizard-page.tricot-wizard-step-free .card-mami {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.tricot-wizard-page.tricot-wizard-step-free .card-mami img {
    width: 100%;
    max-width: 197px;
}


.tricot-wizard-page.tricot-wizard-step-free .content h2 {
    max-width: 380px;
    margin-bottom: 0;
}

.tricot-wizard-page.tricot-wizard-step-free .content hr {

    margin-block-start: 10px;
    margin-block-end: 30px;
    border-top: 1px solid #91C5FC;
    border-bottom: 1px solid #91C5FC;
    width: 100%;
}


.tricot-wizard-page.tricot-wizard-step-free .content .submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.tricot-wizard-page.tricot-wizard-step-2 .section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.tricot-wizard-page.tricot-wizard-step-2 .content {
    display: flex;
    flex-direction: column;
    max-width: 640px;
    width: 100%;

    row-gap: 40px;
    padding: 30px 20px;

}

.tricot-wizard-page.tricot-wizard-step-2 .content h2 {
    max-width: 264px;
    margin-bottom: 0;
}

.tricot-wizard-page.tricot-wizard-step-2 .content p {

    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
}

.tricot-wizard-page.tricot-wizard-step-2 .content .current_language {
    text-transform: uppercase;
}

.tricot-wizard-page.tricot-wizard-step-2 .content p.tricot-hint {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    line-height: 16px;
    margin-top: -36px;
}

.tricot-wizard-page.tricot-wizard-step-2 .content p.tricot-hint a {
    color: #6b7280;
    text-decoration: underline;
}

.tricot-wizard-page.tricot-wizard-step-2 .content p.tricot-hint a:hover {
    color: #1f2937;
}

.tricot-wizard-page.tricot-wizard-step-2 .sidebar {
    display: flex;
    flex-direction: column;
    max-width: 373px;
    width: 100%;
    margin: 0 auto;
}


.tricot-wizard-page.tricot-wizard-step-2 .card-bulle {
    padding: 31px 28px;
    background-color: #EAF2FF;
    border-radius: 8px;
    z-index: 2;
    position: relative;
    color: var(--text-light);

    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}

.tricot-wizard-page.tricot-wizard-step-2 .card-bulle:after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 100px;
    z-index: 1;
    background: url("../images/bulle-pointe.svg");
    width: 33px;
    height: 34px;
    transform: rotate(90deg);
}

.tricot-wizard-page.tricot-wizard-step-2 .card-mami {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.tricot-wizard-page.tricot-wizard-step-2 .card-mami img {
    width: 100%;
    max-width: 118px;
}

.tricot-wizard-page .select2-container--default .select2-selection--multiple {
    width: 100%;
    border: 1px solid #DDDEDE !important;
    background-color: #F3F3F5;
    padding: 10px;
}

.tricot-wizard-page .select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: var(--text-light);
    padding: 6px 10px;
    border: 1px solid var(--text-light);
    background-color: #eaf2ff;
}

.tricot-wizard-page .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    color: var(--text-light);
}


.tricot-wizard-page.tricot-wizard-step-3 .section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.tricot-wizard-page.tricot-wizard-step-3 .content {
    display: flex;
    flex-direction: column;
    max-width: 428px;
    width: 100%;

    row-gap: 0px;
    padding: 30px 20px;

}


.tricot-wizard-page.tricot-wizard-step-3 .sidebar {
    max-width: 476px;
    width: 100%;
    margin: 0 auto;

    background-color: #F1F6FF;
    border-radius: 4px;
    padding: 30px;
}


.tricot-wizard-page.tricot-wizard-step-4 .section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.tricot-wizard-page.tricot-wizard-step-4 .content {
    display: flex;
    flex-direction: column;
    max-width: 321px;
    width: 100%;

    row-gap: 0px;
    padding: 30px 20px;

}


.tricot-wizard-page.tricot-wizard-step-4 .sidebar {
    max-width: 639px;
    width: 100%;
    margin: 0 auto;

    background-color: #F1F6FF;
    border-radius: 4px;
    padding: 30px;
}


.tricot-wizard-page.tricot-wizard-step-4 .sidebar hr {
    margin-block-start: 10px;
    margin-block-end: 30px;
    border-top: 1px solid #91C5FC;
    border-bottom: 1px solid #91C5FC;
}

.tricot-wizard-page.tricot-wizard-step-4 .sidebar .option-group {
    margin-bottom: 5px;
}

.flex-content {
    display: flex;
    gap: 40px
}

.flex-content > .col-content {
    width: 50%;
}


.tricot-wizard-page.tricot-wizard-step-5 {
    max-width: 704px;
}

.tricot-wizard-page.tricot-wizard-step-5 .content {
    display: flex;
    flex-direction: column;
    max-width: 410px;
    width: 100%;
    margin: auto;
    align-items: center;
}

.tricot-wizard-page.tricot-wizard-step-5 h2 {
    text-align: center;
}

.tricot-wizard-page.tricot-wizard-step-5 p {
    text-align: center;

    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
}

.tricot-wizard-page.tricot-wizard-step-5 .card-mami {
    position: relative;
    margin-top: 20px;
}

.tricot-wizard-page.tricot-wizard-step-5 .card-mami .card-bulle {
    position: absolute;
    top: 0;
    left: -160px;
    width: 102px;

    padding: 15px 20px;
    background-color: #EAF2FF;
    border-radius: 8px;
    z-index: 2;
    color: var(--text-light);

    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
}

.tricot-wizard-page.tricot-wizard-step-5 .card-mami .card-bulle:after {
    content: "";
    position: absolute;
    top: 20px;
    right: -20px;
    z-index: 1;
    background: url("../images/bulle-pointe.svg");
    width: 33px;
    height: 34px;
}

.tricot-wizard-page.tricot-wizard-step-6 {
    max-width: 704px;
}

.tricot-wizard-page.tricot-wizard-step-6 .section {
    width: 100%;
}

.tricot-wizard-page.tricot-wizard-step-6 .content {
    display: flex;
    flex-direction: column;
    max-width: 525px;
    width: 100%;
    margin: auto;
    align-items: center;
}

.tricot-wizard-page.tricot-wizard-step-6 h2 {
    text-align: center;
}

.tricot-wizard-page.tricot-wizard-step-6 p {
    text-align: center;

    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
}

.tricot-wizard-page.tricot-wizard-step-6 p b {
    font-weight: 600;
}

.tricot-wizard-page.tricot-wizard-step-6 .progression-scan {
    max-width: 168px;
    width: 100%;
    height: 168px;
    position: relative;
    display: flex;
    margin: 30px auto;

    align-items: center;
    align-content: center;
    justify-content: center;
}


.tricot-wizard-page.tricot-wizard-step-6 .progression-scan img {
    width: 86px;
    position: absolute;
    top: 50%;
    margin: 4px 0 0;
    transform: translate(0, -50%);
}