/* ---------------------------
            GLOBAL
--------------------------- */

.page-template-page-form main#primary {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    background: rgb(35, 53, 66);
    background: -moz-linear-gradient(180deg, rgba(35, 53, 66, 1) 0%, rgba(47, 100, 123, 1) 25%);
    background: -webkit-linear-gradient(180deg, rgba(35, 53, 66, 1) 0%, rgba(47, 100, 123, 1) 25%);
    background: linear-gradient(180deg, rgba(35, 53, 66, 1) 0%, rgba(47, 100, 123, 1) 25%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#233542", endColorstr="#2f647b", GradientType=1);
    color: #8B929B;
    font-family: 'Manrope', sans-serif;
    border-radius: 0;
}

.page-template-page-form #masthead {
    width: initial;
    max-width: none;
    position: relative;
    background: none;
    border-radius: 0;
    z-index: 3;
}

#masthead .site-branding {
    margin-bottom: 0;
}

.page-template-page-form #primary .af-form, #form-login {
    width: 450px;
    background-color: #fff;
    border-radius: 20px;
}

#primary .af-form .af-fields {
    width: 100%;
    padding: 0 12% 5%;
}

#primary .af-form .af-fields .acf-field {
    padding: 10px;
    border-top: none;
    border-right: 0;
    border-left: 0;
}

#primary .af-form :is(.af-page-wrap, #passwd-reset, .af-previous-button[disabled="disabled"], span.acf-required, .no-label .acf-label) {
    display: none;
}

#primary .af-form .af-fields .acf-field[data-type="hidden"] {
    padding: 0;
}

/* ---------------------------
            BANNER
--------------------------- */

.page-template-page-form #primary .af-form .banner {
    margin-left: -50px;
    margin-right: -50px;
    padding: 0 0 15px;
}

:is(.page-template-page-form #primary .af-form .banner, #form-login) .bannerContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

:is(.page-template-page-form #primary .af-form .banner, #form-login) .bannerContent h2 {
    margin: 45px 0 5px;
    color: #233542;
    letter-spacing: -.75px;
}

:is(.page-template-page-form #primary .af-form .banner, #form-login) .bannerContent p {
    margin: 0 0 25px;
    padding: 0 55px;
    text-align: center;
}

/* ---------------------------
        MY CUSTON INPUT
--------------------------- */

/* Custom input text */

#primary .af-form .my-input {
    margin: 20px 0px;
}

#primary .af-form .my-input.no-margin-top {
    margin-top: 0;
}

#primary .af-form .my-input.no-margin-bottom {
    margin-bottom: 0;
}

#primary .af-form .my-input :is(.af-label, .af-label label) {
    margin-bottom: 0;
}

#primary .af-form .my-input-icon :is(.af-label, input:not(input[type="checkbox"])) {
    padding-left: 35px;
}

#primary .af-form .my-input .af-label {
    position: absolute;
    top: 0;
    z-index: 2;
    user-select: none;
    transition: top .3s;
}

#primary .af-form .my-input.acf-error .af-label, #primary .af-form .my-input.acf-correct.acf-error .af-label {
    color: #FF3D33;
}

#primary .af-form .my-input.acf-correct .af-label {
    color: #17DA87;
}

#primary .af-form .my-input::after {
    content: "";
    width: 11px;
    height: 16px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border: 3px solid #A8FF56;
    border-top: 0;
    border-left: 0;
    transform: rotate( 20deg);
    transition: transform 0.3s ease, opacity 0.2s;
    opacity: 0;
}

#primary .af-form .my-input.acf-correct::after {
    transform: rotate( 43deg);
    opacity: 1;
    transition: transform .6s cubic-bezier(.2, .85, .32, 1.2), opacity .3s;
}

#primary .af-form .my-input.acf-correct.acf-error::after {
    display: none;
}

#primary .af-form .my-input input {
    padding-bottom: 15px;
    color: #233542;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #F2F2F2;
    font-size: 16px;
    line-height: 22px;
}

#primary .af-form .my-input input:focus-visible {
    outline: none;
}

/* Custom input[type=checkbox] */

@supports (appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none) {
    #primary .af-form input[type=checkbox] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 21px;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 2px solid #17DA87;
        border-radius: 7px;
        background: #FFF;
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    #primary .af-form .acf-error input[type=checkbox] {
        border-color: #FF3D33;
    }
    #primary .af-form input[type=checkbox]:checked {
        background: #17DA87;
    }
    #primary .af-form input[type=checkbox]::after {
        content: "";
        width: 5px;
        height: 9px;
        display: block;
        position: absolute;
        left: 7px;
        top: 4px;
        border: 2px solid #FFF;
        border-top: 0;
        border-left: 0;
        transform: rotate(20deg);
        transition: transform 0.3s ease, opacity 0.2s;
        opacity: 0;
    }
    #primary .af-form input[type=checkbox]:checked::after {
        transform: rotate(43deg);
        opacity: 1;
        transition: transform .6s cubic-bezier(.2, .85, .32, 1.2), opacity .3s;
    }
}

/* Container for submit btn */

#primary .af-form .af-submit {
    max-width: 265px;
    margin: 10px auto 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#primary .af-form .af-submit::after {
    content: "";
    clear: both;
    display: table;
}

#primary .af-form .af-next-button {
    margin-right: 0;
    padding: 13px 21px;
    color: #fff;
    background: #17DA87;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

#primary .af-form .af-next-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

#primary .af-form .af-previous-button {
    position: relative;
    background: transparent;
    color: #17DA87;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

#primary .af-form .af-previous-button:focus-visible {
    outline: none;
}

#primary .af-form .af-previous-button::before {
    content: url(../img/form/icons/previous-button-left-arrow.svg);
    position: absolute;
    top: 50%;
    bottom: 0;
    left: -7px;
    transform: translateY(-50%);
}

#primary .af-form .af-submit-button {
    padding: 10px 27px;
    color: #fff;
    background: #17DA87;
    border: none;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

#primary .af-form .af-submit-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---------------------------
        ERROR MESSAGE
--------------------------- */

#primary .af-form>.acf-notice.-error, #primary .af-form .no-error-message :is(.acf-notice.-error, .acf-temp-remove) {
    display: none;
}

#primary .af-form .my-input .acf-notice.-error {
    padding: 0;
    position: absolute;
    bottom: 1px;
    right: 0;
    z-index: 2;
    background: transparent;
    border: none;
    color: #FF3D33;
}

#primary .af-form .my-input .acf-temp-remove {
    display: none;
}

#primary .af-form .my-input :is(.acf-notice.-error, .acf-notice.-error p) {
    margin: 0;
}

#primary .af-form .my-input .acf-notice.-error p {
    font-size: 11px;
}

/* ---------------------------
            SPINNER
--------------------------- */

#primary .af-form .acf-spinner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, .75);
    z-index: 100;
}

#primary .af-form .acf-spinner div {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 6px solid rgba(23, 218, 135, .3);
    border-top-color: #17DA87;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ---------------------------
        FORM STEPS
--------------------------- */

/* --------- STEP 1 --------- */

/* Icons */

#primary .af-form .my-input-icon::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#primary .af-form .my-input-icon.af-field-email::before {
    content: url(../img/form/icons/email-green.svg);
}

#primary .af-form .my-input-icon.af-field-password::before {
    content: url(../img/form/icons/password-green.svg);
}

#primary .af-form .my-input-icon.af-field-email.acf-error::before {
    content: url(../img/form/icons/email-red.svg);
}

#primary .af-form .my-input-icon.af-field-password.acf-error::before {
    content: url(../img/form/icons/password-red.svg);
}

/* Password */

#primary .af-form .passwd-actions {
    width: 24px;
    height: 22px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

#primary .af-form .passwd-actions::before {
    content: url(../img/form/icons/show-password.svg);
    position: absolute;
}

#primary .af-form .passwd-actions span {
    display: none;
}

#primary .af-form .my-input.af-field-password input {
    margin-bottom: 0;
}

#primary .af-form .passwd-actions input[type=checkbox] {
    width: 24px;
    height: 22px;
    background: transparent;
    border-color: transparent;
}

#primary .af-form .passwd-actions input[type=checkbox]::after {
    display: none;
}

#primary .af-form .af-fields .af-field.af-field-forgotten-password {
    margin-bottom: 30px;
}

#primary .af-form .forgotten-password {
    color: #17DA87;
    font-size: 12px;
    letter-spacing: -.25px;
}

/* CGU */

#primary .af-form .af-field-cgu {
    max-width: 265px;
    margin: 0 auto;
}

#primary .af-form .af-field-cgu .acf-true-false label {
    display: flex;
}

#primary .af-form .af-field-cgu .acf-true-false label input[type="checkbox"] {
    margin-right: 10px;
}

#primary .af-form .af-field-cgu .acf-true-false label span {
    max-width: calc(100% - 21px - 10px);
    font-size: 12px;
}

#primary .af-form .af-field-cgu .acf-true-false label span a {
    color: #8B929B;
}

/* SE CONNECTER */

#primary .af-form a.btn-redirect-form {
    position: absolute;
    left: 85px;
    bottom: 32px;
    text-decoration: none;
    color: #17DA87;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease-in-out;
}

#primary .af-form a.btn-redirect-form:hover {
    color: rgba(23, 218, 135, .6);
}

/* --------- STEP 2 --------- */

#primary .af-form.step2 {
    width: 640px;
}

#primary .af-form.step2 .af-field-inputs-step-2 .acf-fields {
    display: flex;
    flex-wrap: wrap;
    border: none;
}

#primary .af-form.step2 .af-field-inputs-step-2 .acf-fields .acf-field {
    width: calc(50% - 30px);
    margin-left: 15px;
}

#primary .af-form.step2 .af-field-inputs-step-2 .acf-fields .acf-field:nth-child(odd) {
    margin-left: 0;
    margin-right: 15px;
}

#primary .af-form.step2 .af-submit {
    margin-top: 35px;
    justify-content: space-between;
}

#primary .af-form.step2 .my-input {
    margin: 10px 0;
}

#primary .af-form.step2 .my-input label {
    display: none;
}

#primary .af-form.step2 .my-input input::placeholder {
    color: #8B929B;
    font-weight: 700;
}

#primary .af-form.step2 .my-input::after {
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
}

#primary .af-form.step2 .my-input.acf-correct::after {
    transform: translateY(-50%) rotate( 43deg);
}

/* My custom dropdown */

#primary .af-form .my-input.custom-select {
    position: relative;
}

#primary .af-form .my-input.custom-select :is(select, .select-hide) {
    display: none;
}

#primary .af-form .my-input.custom-select .select-selected {
    padding-bottom: 10px;
    color: #8B929B;
    border: none;
    border-bottom: 2px solid #F2F2F2;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
}

#primary .af-form .my-input.custom-select .select-selected::after {
    content: url(../img/form/icons/dropdown-arrow.svg);
    position: absolute;
    top: 0;
    right: 10px;
}

#primary .af-form .my-input.custom-select.acf-correct .select-selected:after {
    right: 25px;
}

#primary .af-form .my-input.custom-select .select-selected.select-arrow-active:after {
    top: 4px;
    transform: rotate(180deg);
}

#primary .af-form .my-input.custom-select :is(.select-items div, .select-selected) {
    color: #8B929B;
    padding: 4px 8px 10px;
    border-bottom: 2px solid #F2F2F2;
    cursor: pointer;
    user-select: none;
    text-align: left;
}

#primary .af-form .my-input.custom-select .select-items {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 101;
    background-color: #FFF;
    box-shadow: 0px 8px 10px 0px rgb(37, 44, 97, .25);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
}

#primary .af-form .my-input.custom-select .select-items div:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#primary .af-form .my-input.custom-select :is(.select-items div:hover, .same-as-selected) {
    background-color: #F2F2F2;
}

/* --------- STEP 3 --------- */

#primary .af-form.step3 {
    width: 450px;
}

#primary .af-form .searchCompaniesContent {
    margin-bottom: 40px;
}

#primary .af-form .searchCompaniesContent .seachBar {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    border-bottom: 2px solid #F2F2F2;
    width: 100%;
}

#primary .af-form .searchCompaniesContent .seachBar .inputContainer {
    width: 100%;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

#primary .af-form .searchCompaniesContent img.clean-company-search {
    width: 20px;
    margin-right: 10px;
}

#primary .af-form .searchCompaniesContent .seachBar label {
    display: none;
}

#primary .af-form .searchCompaniesContent .seachBar input {
    border: none;
    color: #233542;
    font-size: 16px;
}

#primary .af-form .searchCompaniesContent .seachBar input:disabled {
    background: initial;
    display: none;
}

#primary .af-form .searchCompaniesContent .seachBar input:disabled::placeholder {
    opacity: 0;
}

#primary .af-form .searchCompaniesContent .seachBar .selectedCompanyContainer {
    display: none;
}

#primary .af-form .searchCompaniesContent .seachBar.active .selectedCompanyContainer {
    display: block;
    user-select: none;
    width: 100%;
}

#primary .af-form .searchCompaniesContent .seachBar.active .search-icon, #primary .af-form .searchCompaniesContent .seachBar.active .clean-company-search {
    display: none;
}

#primary .af-form .searchCompaniesContent .seachBar input:focus-visible {
    outline: none;
}

#primary .af-form .searchCompaniesContent .seachBar::placeholder {
    color: #8B929B;
    font-size: 16px;
}

#primary .af-form .searchCompaniesContent .seachBar .cleanSelectedCompany {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
    margin-left: auto;
}

#primary .af-form .searchCompaniesContent .company.company-selected img.cleanSelectedCompany {
    width: 20px;
    height: 20px;
    margin-right: 0;
    pointer-events: all;
    cursor: pointer;
    opacity: 1;
}

#primary .af-form .searchCompaniesContent .seachBar .cleanSelectedCompany.active {
    cursor: pointer;
    opacity: 1;
    pointer-events: initial;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult {
    height: 180px;
    max-height: 180px;
    margin-bottom: 50px;
    border-radius: 12px;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult.active {
    box-shadow: 0px 5px 15px 5px rgb(37 44 97 / 15%);
    overflow-y: scroll;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult::-webkit-scrollbar {
    width: 5px;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult::-webkit-scrollbar-track {
    background: #F2F2F2;
    border-radius: 6px;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult::-webkit-scrollbar-thumb {
    background: #8B929B;
    border-radius: 6px;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult::-webkit-scrollbar-thumb:hover {
    background: #5E6269;
}

#primary .af-form .searchCompaniesContent .company {
    height: 60px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #FFF;
    border-bottom: 2px solid #F2F2F2;
    cursor: pointer;
}

#primary .af-form .searchCompaniesContent .company:first-of-type {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

#primary .af-form .searchCompaniesContent .company:last-of-type {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

#primary .af-form .searchCompaniesContent .company.company-selected {
    background: #17DA87;
    color: #FFFFFF;
}

#primary .af-form .searchCompaniesContent .company.company-selected:hover {
    background: #13ce7e;
    color: #FFFFFF;
}

#primary .af-form .searchCompaniesContent .company:hover {
    background-color: #F2F2F2;
}

#primary .af-form .searchCompaniesContent .company img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    pointer-events: none;
}

#primary .af-form .searchCompaniesContent .company .infos {
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

#primary .af-form .searchCompaniesContent .company .infos .name {
    font-size: 14px;
    font-weight: 700;
}

#primary .af-form .searchCompaniesContent .company .infos .location {
    font-size: 12px;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult .company .cross {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    pointer-events: none;
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult .company .cross span {
    width: 100%;
    height: 2px;
    background-color: #17DA87;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#primary .af-form .searchCompaniesContent .searchCompaniesResult .company .cross span:first-of-type {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* --------- STEP 4 --------- */

#primary .af-form.step4 {
    width: 640px;
}

/* My custom radio button */

#primary .af-form ul.acf-radio-list {
    width: calc(124% + 150px);
    margin: 25px 0 35px;
    display: flex;
    justify-content: space-between;
    transform: translateX(-125px);
}

#primary .af-form ul.acf-radio-list li {
    width: calc((100% - 40px)/3);
    margin-right: 20px;
}

#primary .af-form ul.acf-radio-list li:last-of-type {
    margin-right: 0;
}

#primary .af-form ul.acf-radio-list li label {
    width: 100%;
    height: 100%;
    padding: 20px 25px;
    display: block;
    background: #FFF;
    border: 2px solid #FFF;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 5px rgb(37 44 97 / 15%);
    cursor: pointer;
}

#primary .af-form ul.acf-radio-list li label.selected {
    background: #F4FFFA;
    border: 2px solid #17DA87;
}

#primary .af-form ul.acf-radio-list li input {
    display: none;
}

#primary .af-form .subscriptionContainer {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#primary .af-form .subscriptionContainer h3 {
    margin: 0;
    display: flex;
    flex-direction: column;
    color: #233542;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

#primary .af-form .subscriptionContainer h3 span {
    font-size: 16px;
}

#primary .af-form .subscriptionContainer .advantages {
    margin: 35px 0;
    position: relative;
}

#primary .af-form .subscriptionContainer .advantages::before, #primary .af-form .subscriptionContainer .advantages::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: #F2F2F2;
}

#primary .af-form .subscriptionContainer .advantages::before {
    top: -17px;
}

#primary .af-form .subscriptionContainer .advantages::after {
    bottom: -17px;
}

#primary .af-form .subscriptionContainer .advantages p {
    margin: 5px 0 5px 20px;
    position: relative;
    color: #233542;
    font-size: 16px;
}

#primary .af-form .subscriptionContainer .advantages p::before, #primary .af-form .subscriptionContainer .advantages p::after {
    content: ' ';
    width: 2px;
    height: 10px;
    position: absolute;
    top: 7px;
    left: -15px;
    background-color: #FF3D33;
}

#primary .af-form .subscriptionContainer .advantages p.access1::before, #primary .af-form .subscriptionContainer .advantages p.access1::after {
    background-color: #17DA87;
}

#primary .af-form .subscriptionContainer .advantages p.access::before {
    transform: rotate(45deg);
}

#primary .af-form .subscriptionContainer .advantages p.access::after {
    transform: rotate(-45deg);
}

#primary .af-form .subscriptionContainer .advantages p.access1::before {
    transform: rotate(0);
}

#primary .af-form .subscriptionContainer .advantages p.access1::after {
    transform: rotate(90deg);
}

#primary .af-form .subscriptionContainer .price {
    color: #17DA87;
    font-size: 20px;
    font-weight: 700;
}

/* --------- STEP 5 --------- */

#primary .af-form.step5 {
    width: 640px;
}

#primary .af-form.step5 .af-submit {
    float: right;
}

#primary .af-form.step5 .af-fields {
    padding: 5% 8%;
}

#primary .af-form.step5 .paiementContent h2 {
    margin: 0;
    margin-bottom: 5px;
    color: #233542;
    font-size: 20px;
    text-align: center;
}

#primary .af-form.step5 .paiementContent h4 {
    margin: 0;
    color: #233542;
    font-size: 12px;
}

#primary .af-form.step5 .paiementContent>p {
    margin: 0;
    margin-bottom: 28px;
    font-size: 16px;
    text-align: center;
}

#primary .af-form.step5 .paiementContent .recapSubscription, #primary .af-form.step5 .paiementContent .paiementMode {
    position: relative;
}

#primary .af-form.step5 .paiementContent .recapSubscription::before, #primary .af-form.step5 .paiementContent .paiementMode::before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background: #F2F2F2;
}

#primary .af-form.step5 .paiementContent .recapSubscription::before, #primary .af-form.step5 .paiementContent .paiementMode::before {
    top: -10px;
}

#primary .af-form.step5 .paiementContent .subscriptionContainer {
    margin: 20px 0 35px;
    padding: 15px 20px;
    flex-direction: row;
    align-items: center;
    background: #FFF;
    border: 2px solid #FFF;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 5px rgb(37 44 97 / 15%);
}

#primary .af-form .paiementContent .subscriptionContainer .advantages {
    margin: 0;
}

#primary .af-form .paiementContent .subscriptionContainer .advantages::before, #primary .af-form .paiementContent .subscriptionContainer .advantages::after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #F2F2F2;
}

#primary .af-form .paiementContent .subscriptionContainer .advantages::before {
    left: -30px;
}

#primary .af-form .paiementContent .subscriptionContainer .advantages::after {
    left: initial;
    right: -30px;
}

#primary .af-form.step5 .paiementContent .facturationAndReductionContainer {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

#primary .af-form.step5 .paiementContent .facturationAndReductionContainer h4 {
    margin-bottom: 10px;
}

#primary .af-form.step5 .paiementContent .facturationContainer {
    max-width: 40%;
}

#primary .af-form.step5 .paiementContent .facturationContainer p {
    margin: 0;
    color: #233542;
    line-height: 22px;
}

#primary .af-form.step5 .paiementContent .reductionContainer {
    max-width: 50%;
}

#primary .af-form.step5 .paiementContent .reductionContainer div {
    padding: 7px 14px;
    display: flex;
    justify-content: space-between;
    background: #F2F2F2;
    border-radius: 12px;
}

#primary .af-form.step5 .paiementContent .reductionContainer div label {
    display: none;
}

#primary .af-form.step5 .paiementContent .reductionContainer div input {
    margin-right: 10px;
    padding: 0;
    border: none;
    background: transparent;
}

#primary .af-form.step5 .paiementContent .reductionContainer div input:focus-visible {
    outline: none;
}

#primary .af-form.step5 .paiementContent .reductionContainer div input::placeholder {
    color: #8B929B;
}

#primary .af-form.step5 .paiementContent .reductionContainer div button {
    border: none;
    outline: none;
    background: transparent;
    color: #233542;
    font-size: 12px;
    font-weight: 700;
    cursor: not-allowed;
    pointer-events: none;
}

#primary .af-form.step5 .paiementContent .paiementMode {
    margin-bottom: 40px;
}

#primary .af-form.step5 .paiementContent .paiementMode div {
    margin-top: 15px;
}

#primary .af-form.step5 .paiementContent .paiementMode img {
    height: 32px;
}

#primary .af-form.step5 .af-field-cgv {
    position: absolute;
    bottom: 39px;
    font-size: 12px;
}

#primary .af-form.step5 .af-field-cgv input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border-radius: 5px;
}

#primary .af-form.step5 .af-field-cgv input[type=checkbox]::after {
    width: 5px;
    height: 9px;
    left: 4px;
    top: 1px;
}

#primary .af-form.step5 .af-field-cgv a {
    color: #8B929B;
}

#primary .company-informations .af-form .my-input .af-label {
    font-size: 12px;
    color: #8B929B;
}

#primary .company-informations .af-form .my-input.custom-select {
    margin-top: 0;
}

/* ---------------------------
        FORM CONNEXION
--------------------------- */

#form-login {
    padding: 0 12% 5%;
}

#form-login .my-input {
    position: relative;
}

#form-login input:not([type="submit"]) {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 15px 35px;
    color: #233542;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #F2F2F2;
    font-size: 16px;
    line-height: 22px;
}

#form-login input:focus-visible {
    outline: none;
}

/* Icons */

#form-login .my-input::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#form-login .my-input.email::before {
    content: url(../img/form/icons/email-green.svg);
}

#form-login .my-input.password::before {
    content: url(../img/form/icons/password-green.svg);
}

#form-login .my-input.email.error::before {
    content: url(../img/form/icons/email-red.svg);
}

#form-login .my-input.password.error::before {
    content: url(../img/form/icons/password-red.svg);
}

#form-login .my-input label {
    position: absolute;
    top: 0;
    left: 35px;
    z-index: 2;
    color: #8B929B;
    font-size: 16px;
    font-weight: 700;
    user-select: none;
    transition: top .3s;
}

#form-login .my-input:is(.error, .complete) label {
    top: -14px;
    font-size: 12px;
    font-weight: 400;
}

#form-login .forgotten-password {
    padding: 10px 0;
    display: block;
    color: #17DA87;
    font-size: 12px;
    letter-spacing: -.25px;
}

/* Error */

#form-login .error label {
    color: #FF3D33;
}

#form-login .error-message {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 25px;
    right: 0;
    z-index: 2;
    background: transparent;
    border: none;
    color: #FF3D33;
    font-size: 11px;
}

/* BTN container */

#form-login .submit-container {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#form-login a.btn-redirect-form {
    text-decoration: none;
    color: #17DA87;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease-in-out;
}

#form-login input[type="submit"] {
    padding: 10px 27px;
    color: #fff;
    background: #17DA87;
    border: none;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

#form-login input[type="submit"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}