.feature-linethrough {
    position: relative;
    display: inline-flex;
    transition: all 0.3s ease 0s;
}
.feature-linethrough:after {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 2px solid var(--colorMain);
    transition: all 0.3s ease 0s;
}
/******PAGE ONBOARDING******/

.page-onboarding .txt-inter {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 19px;
    font-size: 12px;
    color: var(--colorOu);
    line-height: 18px;
}
.page-onboarding .txt-inter:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--colorLine);
}
.page-onboarding .txt-inter span {
    padding: 0 11px;
    background-color: var(--colorPale);
    z-index: 10;
}


.page-onboarding {
    display: flex;
    min-height: 100vh;
}


/* logo */
.page-onboarding .logo {
    width: 78px;
}

.signup .logo {
    position: absolute;
    top: 18px;
    left: 40px;
    z-index: 100;
}


/* bloc gauche */
.page-onboarding .col-form {
    display: flex;
    justify-content: center;
    position: relative;
    width: 55%;
    padding-bottom: 6vh;
}
.page-onboarding .col-visuel {
    display: flex;
    justify-content: center;
    position: relative;
    width: 45%;
    padding-bottom: 6vh;
    padding-top: 10vh;
    padding-left: 4.8%;
    background-color: var(--colorMain);
    color: var(--colorWhite);
}

.signup .col-form {
    padding-top: 11.8vh;
}

.login .col-form {
    align-items: center;
    padding-top: 6vh;
}

.page-onboarding .col-form .inner-col {
    width: 90%;
    max-width: 600px;
}


/* titre */
.page-onboarding .tt-h1 {
    font-size: 28px;
    line-height: 28.5px;
}

.login .tt-h1 {
    margin-top: 3.6vh;
}


/* bouton google */
.page-onboarding .col-form .bouton {
    margin-top: 26px;
}

.page-onboarding .col-form .bouton .bt-google {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    background-color: var(--colorWhite);
    border: 1px solid var(--colorLine);
    border-radius: 5px;
    font-size: 14px;
}

.page-onboarding .col-form .bouton .img-picto {
    width: 15.5px;
    height: auto;
    margin-right: 9px;
}


/* texte 'ou' */
.page-onboarding .col-form .txt-inter {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 19px;
    font-size: 12px;
    color: var(--colorOu);
    line-height: 18px;
}

.page-onboarding .col-form .txt-inter:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--colorLine);
}

.page-onboarding .col-form .txt-inter span {
    padding: 0 11px;
    background-color: var(--colorPale);
    z-index: 10;
}


/* formulaire */
.page-onboarding .formulaire {
    margin-top: 12px;
}

.container-modules {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    border: solid 1px #EDEBE9;
    margin-top: 10px;
}
.color-gray {
    color: #F5F3F0 !important;
}
.container-black {
    background-color: #454547;
    color: #F5F3F0;
}

.container-modules .checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 4px;
    margin-right: 20px;
}

.container-modules .icon {
    width: 50px;
    height: 50px;
    background-color: #F5F3F0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    margin-left: 20px;
}

.container-modules .icon img {
    width: 16px;
    height: 16px;
}

.container-modules .text-container {
    display: flex;
    flex-direction: column;
}
.container-modules .text-container-gray {
    color: #F5F3F0  !important;
}

.container-modules .text-container h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    font-family: var(--fontAlt);
}

.container-modules .text-container p {
    font-size: 12px;
    color: #6d6d6d;
    margin-top: 5px;
}

.button-container {
    display: flex;
    gap: 10px; /* Espace entre les boutons */
    margin-top: 20px;
}

.button-container .button {
    padding: 10px 20px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.confirm {
    background-color: #7a7a7a; /* Couleur de fond du bouton de confirmation */
    color: #fff;
}

.cancel {
    background-color: transparent;
    color: #000;
    border: 1px solid #d1d1d1 !important; /* Bordure grise légère pour le bouton de refus */
}
/* Masque la checkbox native */
.custom-checkbox input {
    display: none;
}

/* Style de base pour le checkmark */
.custom-checkbox {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
    border: 2px solid #000;
    border-radius: 4px;
    cursor: pointer;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

/* Style de la coche */
.custom-checkbox .checkmark::before {
    content: "✔";
    color: white;
    font-size: 14px;
    display: none;
}

/* Style lorsque la checkbox est cochée */
.custom-checkbox input:checked + .checkmark {
    background-color: #000;

}

.custom-checkbox input:checked + .checkmark::before {
    display: inline-block;
}
.inner-end {
    padding: 0 100px;
}

.card {
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #d1b899; /* Couleur de la bande supérieure */
    border:none;

}
.onboarding-end .bloc-screen {
    background-color:#FFF;
}
.onboarding-end .card-header {
     color: #000;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    padding: 20px 0;
    font-family: var(--fontAlt);
    border-bottom: none;
}
.onboarding-end .paragraphe {
    text-align: left;
}

.card-body {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    align-items:center;
    background-color: #FFF;
    border-radius: 25px;
}

.card-body p {
    color: #333;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 10px 0;
}

.onboarding-end .button {
    background-color: transparent;
    border: 1px solid #2B2B2B;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 200;
    width: 100%;
}

.onboarding-end .button:hover {
    background-color: #2B2B2B;
    color: #fff;
}
button:hover {
    background-color: #333;
    color: #fff;
}
.onboarding-end .card {
    width:100%;
}
.onboarding-end .card-header-zero {
    background-color: #F4EBDD;
}

.onboarding-end .card-header-rdv {
    background-color: #ECDBC3;
}
.text-left {
    text-align: left;
}
.inner-end .tabs-wrapper {
    padding-top: 20px;
}
.filigrame-gray {
    color: #777777
}
.mt-50 {
    margin-top: 50px;
}
.mb-50 {
    margin-bottom: 50px;
}
.onboarding-enterprise .card {
    width:100%;
    background-color: #2B2B2B;
    padding: 10px 20px;
    color: #CFCFCF;
    border-radius: 8px;
}
.onboarding-enterprise .card-header {
    color: #CFCFCF;
    padding: 0;
    border-bottom: 0;
}
.container-enterprise {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    border: solid 1px #EDEBE9;
    margin-top: 10px;
    width: 100%;
    flex-direction: column;
}
.container-enterprise .box {
    border: solid 1px #EDEBE9;
    padding: 10px 20px;
    border-radius: 8px;
    width:100%;
    text-align: left;
    margin-bottom:15px;
    display: flex;
}
.container-enterprise .box .info {
    width: 100%;
}
.container-enterprise .box .btn-container {
    width: 100%;
}
.container-enterprise .box .btn-container .bt {
    float:right;
    height: 33px;
    padding: 0px 12px;
}
.container-enterprise .box:hover {
    background-color: #F5F3F0;
    cursor: pointer;
}
.container-enterprise .enterprise-name {
    font-weight: bold;
}
.container-enterprise .enterprise-registrationnumber {
    color: #8E8E8E;
    font-size: 11px;
}

.container-enterprise .address {
    color: #8E8E8E;
    font-size: 13px;
}
#search-entreprise {
    height: 37px;
    border-radius: 8px;
}
.btn-100 {
    width: 100%;
}

.card-body-form {
    padding: 30px;
}
.card-body-form label {
    font-size: 0.9em;
    color: #777777;
    text-align: left;
    margin-bottom: 6px;
    margin-top: 10px;
}
/* texte 'ou' */
.col-onboarding .txt-inter {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 19px;
    font-size: 12px;
    color: var(--colorOu);
    line-height: 18px;
    margin-bottom: 19px;
}

.col-onboarding .txt-inter:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--colorLine);
}

.col-onboarding .txt-inter span {
    padding: 0 11px;
    background-color: var(--colorPale);
    z-index: 10;
}
.onboarding-end button:hover a {
    color: #fff;
}


