@import url('https://fonts.googleapis.com/css?family=Questrial&display=swap');
/******** CHARTE UX V1.0 ********/
body, .wrapper {
    background-color: #FFFFFF !important;
    font-family: 'Questrial', 'Helvetica', 'Arial', sans-serif;
    color: #000000;
    overflow-x: hidden;
}

/* BASE */
.content-wrapper {
    min-height: calc(100vh - 101px);
    background-color: #ffffff;
    z-index: 800;
    margin-top: 75px;
    margin-left: 185px !important;
    right: 0;
    width: calc(100% - 185px);
}

.page-title {
    display: inline-flex;
    margin-left: 1%;
}

.page-title-h4 {
    letter-spacing: 2px;
    font-weight: bold;
}

input[type="checkbox"], input[type="radio"] {
    cursor: pointer;
}

/******  Tableau *******/
table {
    border-spacing: 3px !important;
}

table.dataTable.no-footer {
    border-bottom: 0 !important;
}

/** Entete colonne **/
th {
    height: 35px;
    padding-left: 5px !important;
    padding-right: 5px !important;;
    background-color: #FFFFFF;
    color: #FC971F;
    font-size: 14px;
    text-align: center;
    border-bottom: 0 !important;
}

/** Cellule tableau **/
table > tbody > tr > td {
    height: 58px;
    background-color: #F2F2F2;
    color: #7F7F7F;
    font-size: 14px;
    text-align: center;
    padding: 2px;
    border: 1px solid #FFFFFF;
}

/** Bordure ligne tableau PAIRE **/
table > tbody > tr:nth-child(odd) > td:first-child,
table > tbody > tr:nth-child(odd) > th:first-child {
    border-left: 3px solid #FED7A8;
}

/** Bordure ligne tableau IMPAIRE **/
table > tbody > tr:nth-child(even) > td:first-child,
table > tbody > tr:nth-child(even) > th:first-child {
    border-left: 3px solid #ED7D31;
}

/** Bouton Action **/
.tab_boutonAction {
    height: 20px;
    width: 20px;
}

/** cellule pour tableau ayant la valeur oui **/
.tab_celluleTrue {
    background-color: #92D050;
    color: #ffffff;
}

/** cellule pour tableau ayant la valeur non **/
.tab_celluleFalse {
    background-color: #C00000;
    color: #ffffff;
}

/** cellule pour tableau mise en évidence 01 **/
.tab_celluleGRade1 {
    background-color: #FFF2CC !important;
}

/** cellule pour tableau mise en évidence 02 **/
.tab_celluleGRade2 {
    background-color: #FFC000 !important;
    color: #ffffff;
}

/** cellule pour tableau mise en évidence 03 **/
.tab_celluleGRade3 {
    background-color: #BF9000 !important;
    color: #ffffff;
}

/** cellule pour tableau mise en évidence administrateur **/
.tab_celluleGRadeAdmin {
    background-color: #F2F2F2;
    color: #7F7F7F;
}

/** Nom de class specifique au plugin Datatable **/
.dataTables_info {
    margin-top: 1%;
    margin-bottom: 10px;
}

.paginate_button {
    margin-top: 5%;
}

.dataTables_empty {
    padding-top: 20px !important;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    color: yellow !important;
    opacity: 0.6 !important;
}

/******  Boutons action *******/
.boutonAction, .boutonRetour, .boutonOui, .boutonNon {
    min-height: 25px;
    padding: 0 10px; /** 0 pour haut/bas et 5 pour droite/gauche **/
    border: 0;
    border-radius: 6px; /** 6px pour l'ensemble des angles, pareil que 6px 6px 6px 6px **/
    font-size: 14px;
    color: #FFFFFF;
    margin: 5px;
    font-weight: 700;
}

.boutonAction:hover, .boutonRetour:hover, .boutonOui:hover, .boutonNon:hover {
    color: #FFFFFF;
    cursor: pointer;
    /*-moz-box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);*/
    /*-webkit-box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);*/
    /*box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.3);*/
}

.boutonAction:focus, .boutonRetour:focus, .boutonOui:focus, .boutonNon:focus {
    outline: none;
    box-shadow: none;
    color: white;
}

.boutonOui, .boutonNon {
    border-radius: 3px 3px 3px 3px;
}

.boutonAction, .boutonOui {
    background-color: #00B5E6;
}

.boutonRetour, .boutonNon {
    background-color: #3BD5FF;
}

/******  Pop up *******/

.popup {
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 12px;
    color: #000000;
    box-shadow: 5px 5px 5px #7F7F7F;
    z-index: 200;
    background-color: white;
}

.popup-border-radius {
    border-radius: 10px;
}

.popup-img {
    position: absolute;
    left: 20px;
    top: 45%;
    transform: translate(0, -50%);
}

.popup-img img {
    display: block;
    height: 140px;
}

.popup-content {
    margin-left: 210px;
    font-weight: bold;
    padding-top: 3%;
    padding-bottom: 50px;
    padding-right: 5%;
    text-align: center;
}

.popup-content .box-footer {
    display: flex;
    justify-content: flex-end;
}

.popup-message {
    font-size: 19px;
}

.popup-title {
    font-size: 25px;
}

.popup-question {
    font-weight: bold;
    margin-bottom: 5%;
    font-size: 21px;
}

.popup-button {
    float: right;
}

.popup-info {
    margin: 5px;
    font-size: 9px;
    font-weight: normal;
    width: 50%;
    float: left;
}

.rubriqueSansMT {
    background-color: #F9FAFC;
    border: 0;
    padding: 0 20px 20px 20px;
    border-top: 2px solid #FC971F;
}

.rubrique {
    background-color: #F9FAFC;
    border: 0;
    padding: 2px;
    margin-top: 50px !important;
    border-top: 2px solid #FC971F;
}

.rubrique_titre {
    border-bottom: 2px solid #FFFFFF;
    height: 35px;
    font-size: 14px;
    padding-top: 5px;
    padding-left: 15px;
    margin-bottom: 10px;
}

.rubrique_titre span {
    font-weight: 700;
    font-size: 14px;
}

/* Sous rubrique FIELDSET */
.sous-rubrique {
    background-color: transparent;
    border: 1px solid #D9D9DA;
    border-radius: 10px;
}

/* Sous rubrique FIELDSET -> LEGEND (titre) */
.sous-rubrique-titre {
    color: #000000;
    border: 1px solid #D9D9DA;
    border-radius: 10px;
    height: 20px;
    font-size: 16px;
    padding-top: 3px;
    padding-left: 10px;
    margin-bottom: 0;
}


.box-header.with-border {
    border-bottom: none;
}

.asterix {
    color: red;
}

.required::after {
    color: red;
}

.modal-footer {
    border-top: none;
}

/**  TITRE PROCESSUS  **/

.titre_ecran_process, .titre_ecran_process_terminee, .titre_ecran_process_Encours, .titre_ecran_process_Arealisee {
    color: #FFFFFF;
    font-size: 12px;
    padding-left: 30px;
    margin-right: -19px;
    height: 42px;
    width: 300px;
}

.titre_ecran_process_Encours {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/current_step.png");
}

.titre_ecran_process_EncoursStart {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/current_stepStart.png");
}

.titre_ecran_process_Arealisee {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/todo_step.png");
}

.titre_ecran_process_termineeStart {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/finish_stepStart.png");
}

.titre_ecran_process_terminee {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/finish_step.png");
}


/*TITRE PROCESSUS DEVICES*/
.process .titre_ecran_process, .process .titre_ecran_process_terminee, .process .titre_ecran_process_Encours, .process .titre_ecran_process_Arealisee {
    color: #FFFFFF;
    margin-right: -20px;
    margin-bottom: 10px;
    padding-left: 30px;
    height: 42px;
    width: 300px;
}

.process h4 {
    font-size: 12px;
    margin-top: 10px;
}

.process .titre_ecran_process_Encours {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/current_step.png");
}

.process .titre_ecran_process_EncoursStart {
    padding-left: 20px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/current_stepStart.png");
}

.process .titre_ecran_process_Arealisee {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/todo_step.png");
}

.process .titre_ecran_process_termineeStart {
    padding-left: 20px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/finish_stepStart.png");
}

.process .titre_ecran_process_terminee {
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../icon/finish_step.png");
}


/** TOAST (flash message) ***/
.toast-top-right-custom {
    top: 80px;
    right: 12px
}

#toast-container {
    top: 80px !important;
}

#toast-container > div {
    opacity: 1 !important;
}

/* ONGLETS */

#tabs {
    font-family: Questrial !important;
    background-color: transparent;
    border: none !important;
    margin-top: 50px;
}

.ui-widget-header {
    border: none !important;
}

.ui-datepicker table {
    background-color: #F2F2F2;
}

#listTabs {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    background-color: transparent;
}

/*Titre */
#listTabs ul {
    position: relative;
}

#listTabs li {
    flex-grow: 1;
    height: 35px;
    border-radius: 6px 6px 0 0;
    font-size: 14px;
    font-weight: 700;
    border: #D9D9D9;
    color: #3B3838;
    background-color: #F2F2F2;
    position: relative;
}

#listTabs li:last-child {
    margin-right: 0 !important;
}

#listTabs li a {
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#listTabs li a span {
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
}

.ui-widget-content {
    background: none !important;
    border: none !important;
}

/*Titre active */
.ui-tabs-active, .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
    color: #FFFFFF !important;
    background-color: #3B3838 !important;
}

/*Bordure onglets*/
#containertabs {
    border: 2px solid #262626;
}

/*CARTOUCHE*/
.containerAllInfosProject {
    display: flex;
    /*justify-content: space-evenly;*/
    margin-left: 3%;
    flex-wrap: wrap;
}

.containerInfosProject {
    display: flex;
    background-color: #A6A6A6;
    border: 1px solid #A6A6A6;
    border-radius: 6px;
    margin-top: 20px;
}

.infosProject {
    background-color: #FFFFFF;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.infoProject {
    display: flex;
    flex-direction: column;
    padding: 10px 15px 10px 15px;
    color: #000000;
}

/*mot vertical cartouche*/
.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #FFFFFF;
    width: 20px;
    font-size: 9px;
}

.vertical span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*police cartouche*/
.infoProject span:nth-child(1) {
    font-size: 8px;
}

.infoProject span:nth-child(2) {
    font-size: 14px;
}

.actionProject {
    margin-top: 50px;
    position: relative;
    height: 100%;
}

.actionProject div {
    float: right;
}

.radio {
    margin: 0 10px 0 0 !important;

}


/*Formulaire*/
.form-group label, .control-label {
    font-weight: 100;
}

.form-control {
    font-size: 12px;
    color: #000000;
    border-color: #7f7f7f;

}

.form-control::placeholder, .form-group input::placeholder {
    opacity: 0.5 !important;
    font-style: italic;
    font-size: 11px;
    color: #000000;
}

.form-group input, .form-group select, .select2-container--default .select2-selection--single, .form-group textarea {
    font-size: 12px;
    /*margin-top: 10px !important;*/
}

.select2-container--default .select2-selection--single, .form-control {
    border-radius: 0 !important;
    background-color: #FFFFFF !important;
    /*border: 1px solid #7F7F7F !important;*/
    color: #000000;
    font-size: 12px;
}

.boutonPrecedent {
    height: 25px;
    padding: 0 5px;
    border-radius: 6px;
    background-color: #00B5E6;
    color: #FFFFFF;
    font-size: 12px;
    margin-top: 10px !important;
}

.sousRubrique {
    border: 1px solid #D9D9DA;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
}

.titleSousRubrique {
    background-color: #F9FAFC;
    position: absolute;
    padding: 5px 20px 20px 5px;
    color: #000000;
    border: 1px solid #D9D9DA;
    height: 20px;
    border-radius: 10px;
    font-size: 12px;
    top: -15px;
    text-align: center;
}


.form-group .input:-moz-read-only, .form-group input:read-only, .form-group textarea:read-only {
    background-color: #F2F2F2 !important;
    border: 1px solid #F2F2F2 !important;
    color: #7F7F7F;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #F2F2F2 !important;
    border: 1px solid #F2F2F2 !important;
    color: #7F7F7F;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #F2F2F2 !important;
    border: 1px solid #F2F2F2 !important;
}

.control-checkbox-label {
    vertical-align: baseline;
    margin-left: 10px;
    cursor: pointer;
}

.divInputFilePath {
    border: 1px solid #F2F2F2;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 60px;
    border-radius: 8px;
}

.actionFilePathForm {
    color: #0d5aa7;
}

.actionFilePathForm:hover {
    cursor: pointer;
}

input[type="file"] {
    width: 16%;
    color: transparent;
    background-color: transparent;
    border: 0;
}

/*Texte libre*/
.txtlibre {
    color: #40749B !important;
    font-size: 12px;
}

.btnModifyActive {
    display: block !important;
    position: absolute;
    top: 5px;
    right: 50px;
    opacity: 1;
    z-index: 20;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    color: #40749B !important;
}

.btnModifyActive:hover {
    color: #ADC8DD !important;

}

.select2-selection {
    background-color: #FFFFFF !important;
}

.box-footer {
    background-color: transparent !important;
    border-top: none !important;
}

/* Recommandations form */
.recoMessage {
    right: 15px;
    float: right;
    background-color: #3BD5FF;
    color: #FFFFFF;
    font-size: 12px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 0 10px;
}

.limitedMessage {
    right: 15px;
    float: right;
    background-color: #c9372c;
    color: #FFFFFF;
    font-size: 10px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 0 10px;
}

.etancheiteTypeError {
    color: red;
    margin: 0 2rem;
}

/* Message d'erreur dans les formulaires */

.errorRequiredMessage {
    right: 15px;
    float: right;
    background-color: #FFC000;
    color: #FFFFFF;
    font-size: 10px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 0 10px;
}

.borderRequiredInput {
    border: 1px solid #FFC000 !important;
}

.errorMessage {
    bottom: -14px;
    background-color: #BD582C;
    color: #FFFFFF;
    font-size: 10px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 0 10px;
    float: right;
}

.errorMessageFormProduct {
    /* position: absolute; */
    /* bottom: -14px; */
    right: 15px;
    float: right;
    background-color: #BD582C;
    color: #FFFFFF;
    font-size: 10px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding: 0 10px;
}

.borderErrorInput:focus {
    border: 1px solid #BD582C !important;;
}

.borderErrorInput {
    border: 1px solid #BD582C !important;
}

.errorInput input, .errorInput textarea, .errorInput select, .errorInputBug textarea {
    border: 1px solid #BD582C !important;
}

.errorDateQualif::after {
    content: "Date incorrecte" !important;
}

.errorInput::after, .errorInputBug::after, .errorInputLongitude::after, .errorInputLatitude::after {
    content: "Le champ est obligatoire";
    display: block;
    width: 120px;
    height: 20px;
    float: right;
    background-color: #BD582C;
    color: #FFFFFF;
    font-size: 10px;
    border-radius: 0 0 2px 2px;
    text-align: center;
    padding-top: 3px;
}

.errorInputBug::after {
    content: "Le champ doit contenir au minimum 3 caractères";
    width: 230px;
}

.errorInputLongitude::after {
    content: "La valeur doit être comprise entre -180 et 180";
    height: auto;
    padding: 2px;
}
.errorInputLatitude::after {
    content: "La valeur doit être comprise entre -90 et 90";
    height: auto;
    padding: 2px;
}

#btnSendBug:disabled {
    background-color: #A6A6A6;
    cursor: not-allowed;
}

.errorInputTel::after {
    content: "Numéro invalide";
    display: block;
    width: 100px;
    height: 20px;
    float: right;
    background-color: #BD582C;
    color: #FFFFFF;
    font-size: 10px;
    border-radius: 0 0 2px 2px;
    text-align: center;
    padding-top: 4px;
}

.errorInputDate::after {
    content: "Date invalide";
    display: block;
    width: 100px;
    height: 20px;
    float: right;
    background-color: #BD582C;
    color: #FFFFFF;
    font-size: 10px;
    border-radius: 0 0 2px 2px;
    text-align: center;
    padding-top: 4px;
}

.btnFile, .btn:hover {
    border: none !important;
}

#containerFile, #containerFileConfigService, .containerFile, #containerImgPopup {
    width: 50%;
    height: 100px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px
}

#containerFile div, .containerFile div {
    position: absolute;
    right: 122px;
    bottom: 0;
}

#containerFile div a, #containerFileConfigService div a {
    color: #40749B;
    text-decoration-color: #40749B;
}

#containerFileConfigService div a {
    height: 100px;
}

#containerFileConfigService {
    padding: 0 !important;
    height: 115px !important;
}

#listStepQuestionTable.dataTable td.dataTables_empty {
    padding-top: 4% !important;
}

.phoneIndicator {
    max-width: 150px;
}

.phoneNumber {
    width: 200px;
    margin: 0 0 0 10px;
}

.formSize {
    width: 360px;
}

@media screen and (max-width: 767px) {

    /*Responsive application*/
    .content-wrapper {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .navbar {
        position: absolute;
        top: 0;
    }

    .modal {
        bottom: auto;
        top: 10%;
        background: none;
    }

    .modal .boutonNon, .modal .boutonOui {
        min-width: 100px;
    }

    .modal .popup-img {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%);
    }

    .modal .popup-content {
        padding: 125px 10px 10px;
        margin-left: auto;
    }

    .modal .popup-button {
        float: none;
    }

    #listTabs a:has(img) span {
        display: none;
    }

    #listTabs img {
        display: block !important;
    }

    .containerInfosProject .vertical {
        height: 25px;
        width: 100%;
        transform: rotate(270deg);
    }

    .infoProject {
        justify-content: space-around;
        text-align: center;
    }

    .containerInfosProject {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .actionProject div {
        float: none;
    }

    #containertabs {
        padding: 0;
    }

    .containerInfosProjectSimple {
        flex-wrap: wrap;
        justify-content: center;
    }

    .containerInfosProjectSimple h2 {
        text-align: center;
        margin: 0;
        font-size: 22.5px;
    }

    .containerInfosProjectSimple div:last-child {
        margin-left: unset !important;
    }

    #subTitleInstallationType {
        font-size: 18px;
        margin: auto !important;
        text-align: center;
    }

    #containerCases, #containerCases div, #divSubCaseContainer {
        padding: 0 !important;
    }

    #divSubCaseContainer div {
        padding: 5px;
    }

    #caseA, #caseB, #caseC, #caseD, #caseE {
        min-width: 170px !important;
    }

    #containerCases img {
        min-height: 170px !important;
    }

    .imgInstallation {
        width: 170px !important;
    }

    .installationPrerequisite {
        left: 10px !important;
        top: 0 !important;
    }

    #containerPrerequisite {
        padding: 0;
    }

    .containerFile {
        width: 100%;
    }

    .container_page_content_start {
        flex-wrap: wrap;
        justify-content: center;
    }

    #step02_one_final_customer .rubrique {
        margin-top: 150px !important;
    }

    .containerBtnServiceInfos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .containerBtnServiceInfos a {
        margin: 10px 0;
    }

    #edit .rubrique_titre {
        border: none;
    }

    .container-loader {
        margin: auto;
    }

    #endPageService .popup-img {
        position: relative;
        transform: translate(0, 0);
    }

    .popup-img img {
        margin: auto;
    }

    #endPageService .popup-content {
        margin: auto;
    }

    .tdClient {
        white-space: pre-wrap;
        overflow-y: hidden;
        max-width: 80px;
    }

    #tabs{
        margin-top: 70px!important;
    }

    .title-results{
        white-space: normal!important;
    }
}

.numberCircle {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;

    background: #fff;
    border: 2px solid #666;
    color: #666;
    text-align: center;
    font: 32px Arial, sans-serif;
}


.select2-selection__rendered img {
    margin-top: 4px;
}


.actionServices {
    flex-direction: row;
    align-items: center;
    display: flex;
    justify-content: space-evenly;
}

.actionServices a {
    cursor: pointer;
}

#listStepQuestionTable > tbody {
    display: block;
    height: 270px;
    overflow: auto;
}

#listStepQuestionTable > tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

#listStepQuestionTable > thead {
    width: calc(100% - 1em)
}

#listStepQuestionTable > table {
    width: 400px;
}

.centerBtn {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.centerBtn a {
    cursor: pointer;
    height: 25px;
}

.validProduct {
    width: 25px;
    padding: 0;
    margin: 0;
}

.previewFile {
    position: absolute;
    right: 10px !important;
    top: 15px !important;
    height: 40px !important;
}

.previewFile img {
    height: 100%;
}

.previewFileConfigService {
    position: relative;
    z-index: 1;
}

.input-group-addon {
    display: none !important;
}

details > summary:hover {
    cursor: pointer;
}

details > summary::-webkit-details-marker {
    display: none;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(5.1);
    cursor: pointer;
    z-index: 1;
}

.select2-selection__choice__display {
    color: black;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #7F7F7F;
    font-size: 12px;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #7F7F7F;
    font-size: 12px;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #7F7F7F;
    font-size: 12px;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #7F7F7F;
    font-size: 12px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #7F7F7F;
    font-size: 12px;
}

::placeholder { /* Most modern browsers support this now. */
    color: #7F7F7F;
    font-size: 12px;
}

.labelProjectCommunicate {
    margin-left: 3%;
    vertical-align: middle;
    font-size: 14px !important;
    cursor: pointer;
}


/*DASHBOARD*/
.cardNotification {
    position: relative;
    background-color: #f4f5f6;
    border-radius: 0 10px 10px 10px;
    margin-bottom: 20px;
    height: 110px;
}

.cardNotification .title {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    height: 30px;
    padding: 0 30px 0 5px;
}

.helpNotification .title, .technicalNotification .title {
    border-left: 5px solid #fed7a8;
}

.newsNotification .title {
    border-left: 5px solid #ed7d31;
}

.cardNotification .title div:nth-child(1) {
    display: flex;
    align-items: center;
    height: 100%;
}

.cardNotification .title div:nth-child(2) {
    font-style: italic;
    opacity: 0.3;
}

.cardNotification .title img {
    height: 100% !important;
    margin-right: 10px;
}

.btnNotification {
    position: absolute;
    bottom: 15px;
    right: 30px;
}

.cardNotification span {
    color: #a0a0a1;
    position: absolute;
    top: 40px;
    left: 20px;
}

.containerChartAdmin {
    background-color: white;
    margin-top: 10px;
    width: 99%;
    height: auto;
    margin-left: -2%;
}

.containerChart {
    background-color: #f4f5f6;
    margin-top: 10px;
    width: 60%;
    left: 50%;
    transform: translate(-50%);
    height: 260px;
}

.containerChart canvas {
    height: 100% !important;
}

#chart {
    max-height: 400px;
}

#chartLine {
    display: initial
}

#containerDoughnut {
    position: relative;
    height: 200px;
    padding: 0 !important;
    cursor: pointer;
    background-color: #FFFFFF;
}

#containerDoughnut svg {
    position: absolute;
    height: 100%;
    width: 90%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progressbar-text {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px !important;
}

.progressbar-text span {
    color: #000000;
}

#logoIB {
    height: 20px;
    width: 20px;
}

#containerAllInfos {
    display: flex;
    justify-content: space-around;
}

#containerNumber, #containerService {
    width: 45%;
    padding: 0;
    margin-top: 0;
}

.topStats {
    background-color: #f4f5f6;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btnProjects {
    width: 100%;
    transform: translateY(275px);
    position: absolute;
}

.btnProjects button {
    height: 40px;
    width: 33%;
}


.btnProjects .boutonAction {
    margin: 0;
    position: absolute;
    bottom: 0;
}

.line {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-end;
}

.line img {
    height: 30px;
}

.textLine, .numberLine {
    background-color: #e7e6e6;
    height: 50px;
    position: relative;
}

.textLine {
    width: 300px;
}

.numberLine {
    width: 90px;
}

.textLine span, .numberLine span {
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -25%);
}

.textLine span:nth-child(1) {
    font-weight: bold;
}

.textLine span:nth-child(2) {
    top: 42px;
    font-size: 12px;
}

.serviceTitle {
    font-weight: 400;
    margin-top: 0;
}

#listService {
    display: flex;
    flex-direction: column;
}

#listService span {
    margin-bottom: 3px;
}

#listService img {
    height: 30px;
    margin-right: 5px;
}

#footerInfos {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-evenly;
}

#containerService button, #containerNumber button {
    width: 100%;
    height: 40px;
}

#containerLevel {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 1300px) {
    .containerChart {
        width: 90%;
    }

    #myNotifications, #myStatistics {
        width: 100%;
        left: 50%;
        transform: translate(-50%);
        margin: 0;
    }

    #myStatistics .row {
        margin-top: 0;
    }

    #containerAllInfos {
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    #myNotifications {
        width: auto;
        left: auto;
        transform: translate(0);
    }

    #rubriqueStats {
        height: auto !important;;
    }

}

@media screen and (min-width: 1800px) {
    .progressbar-text {
        padding: 25px 0 0 10px !important;
    }
}

#notifsTable {
    height: 400px;
    overflow: scroll !important;
    overflow-x: hidden !important;
}

#services_list {
    width: 100% !important;
}

.ml-number {
    margin-left: -11%;
}

.ml-text {
    margin-left: -127px;
}

.ml-text-info {
    margin-left: -8%;
}

.baseErrorMessage {
    bottom: -18px;
    width: fit-content;
    padding: 2px 7px;
    display: none;
}

.validProduct span {
    padding-top: 2px;
    font-size: 20px !important;
}

.experimental {
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.containerEmail div {
    width: 100%;
}

.reText::-webkit-input-placeholder {
    font-style: italic;
}

.reText:-moz-placeholder {
    font-style: italic;
}

.reText::-moz-placeholder {
    font-style: italic;
}

.reText:-ms-input-placeholder {
    font-style: italic;
}

@media screen and (max-width: 450px) {
    .formSize {
        width: 100%;
    }
}

#listTabs img {
    display: none;
    height: 70%;
    position: relative;
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
}

.containerServicesList {
    display: flex;
    flex-wrap: wrap;
}

.containerService {
    position: relative;
    margin: 10px;
    border: 2px solid #ED7D31;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 10px 10px 3px 10px;
    width: 16%;
    min-width: 150px;
}

.containerService:hover {
    cursor: pointer;
}

.containerService a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100%;
}

.containerService .serviceName {
    text-align: center;
    font-size: 15px;
    display: flex;
    align-items: center;
    flex: 3;
}

.containerService .serviceVersion {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    width: 100%;
}


.containerService .check {
    position: absolute;
    float: left;
    margin-left: -4px;
    color: green;
}

.containerService .times {
    position: absolute;
    float: left;
    margin-left: -4px;
    color: darkred;
}

.service-img img {
    width: 100%;
}

.serviceDataTr td, .techDataTr td {
    color: #FFFFFF;
}

.serviceDataTr td {
    background-color: #FFC000;
}

.techDataTr td {
    background-color: #BF9000;
}

.tableMediumTd > tbody > tr > td {
    height: auto !important;
}

.containerREStepInfo {
    width: 100%;
}

.containerREStepInfo span {
    text-align: center;
    font-weight: bold;
}

.containerREStepInfo .containerInfoStep {
    text-align: center;
    margin: 40px 0 !important;
}

.containerREStepInfo .containerInfoStep form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.containerREStepInfo .containerInfoStep form input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -10;
}

.containerTypeStep {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.containerHowUseFormule details {
    margin: 20px 0;
}

.containerHowUseFormule summary {
    text-indent: 2%;
    font-size: 18px;
}

.containerHowUseFormule h5 {
    text-indent: 4%;
}

.containerHowUseFormule .underline {
    margin: 25px 0;
    text-decoration: underline;
}

.containerHowUseFormule .containerExemples,
.containerHowUseFormule .containerExemples h5 {
    text-indent: 6%;
}

.containerHowUseFormule .containerExemples div h5 {
    text-indent: 8%;
}

.containerHowUseFormule .containerExemples img {
    margin-left: 8%;
    width: 80%;
}

#baseBtnBlockTable > tbody > tr:nth-child(odd) > td:first-child, #baseBtnBlockTable > tbody > tr:nth-child(odd) > th:first-child {
    border: 0;
    background-color: transparent;
}

#baseBtnBlockTable > tbody > tr:nth-child(even) > td:first-child, #baseBtnBlockTable > tbody > tr:nth-child(even) > th:first-child {
    border: 0;

    background-color: transparent;
}

#baseBtnBlockTable > tbody > tr > td {
    height: auto;
    background-color: transparent;
    color: black;
    font-size: 14px;
    border: 0;
}

.promocodeTable input {
    height: 100%;
}

#refTimelineInfoDiv {
    gap: 8px;
    display: flex;
    justify-content: flex-start;
    font-size: 15px;
    margin-left: 15px;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
}

#refTimelineBlock {
    padding-left: 15px;
    padding-bottom: 15px;
}

.endPathService {
    font-size: 16px;
    font-weight: bold;
    margin-left: 5px;
}

.blockServiceDivPath {
    width: 95px;
    height: 45px;
    color: black;
    text-align: center;
    border-radius: 5px;
}

.borderQCC {
    border: 2px solid orange;
}

.borderQ {
    border: 2px solid #337ab7;
}

.borderCurrent {
    border: 1px solid black;
    background-color: #f5f500;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.divInfoPath {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

#refTimelineBlock, #endPageService {
    position: relative;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
}

div:has(> .tableFixHead) {
    display: flex;
    flex-direction: column;
}

.tableFixHead {
    overflow-y: auto;
    height: 80vh;
}

#promocodeTable thead {
    position: sticky;
    top: 0px;
    z-index: 10;
}

.sortable th {
    cursor: pointer;

}

/* Style for display result templates */
.container-button-results {
    margin-top: 5%;
    height: 100%;
    display: flex;
    gap: 5rem;
    flex-direction: column;
    align-items: center;
    padding: 0 3%;
}

.container-other-button-results {
    height: 100%;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    width: 100%;
}

.button-results {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 6.5rem;
    line-height: normal;
    background-color: #FED7A8;
    border-radius: 13px;
    padding: 5px 15px;
    cursor: pointer;
}

.button-results-forbidden {
    background: #E66153;
}

.container-button-results a:hover,
.container-button-results a:focus,
.container-button-results a:active {
    color: inherit;
}

.button-results h4 {
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
}

.button-results span {
    font-style: italic;
}

.title-results {
    color: #fc971f;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 0;
}

.positive-legend-result {
    border: 2px solid #70AD47;
    background-color: #E2F0D9;
    width: 20px;
    height: 20px;
}

.negative-legend-result {
    border: 2px solid red;
    width: 20px;
    height: 20px;
}

.container-legend-result {
    margin-left: 5rem;
    margin-bottom: 5rem;
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.block-legend-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.container-diameter-results {
    flex-wrap: wrap;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.block-diameter-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 2rem;
}

.container-title-result-detail {
    margin-left: 20px;
    margin-bottom: 50px;
}

.container-title-result-detail h3:nth-child(1) {
    font-weight: bold;
}

.container-title-result-detail h3:nth-child(2) {
    margin: 10px 0;
}

.values-result-detail p {
    margin: 0;
}

.positive-square-result p,
.negative-square-result p {
    margin: 0 0 1rem 0;
    text-align: center;
    width: 100%;
    font-size: 4rem;
}

.positive-square-result,
.negative-square-result {
    line-height: normal;
    cursor: pointer;
    user-select: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 14rem;
    padding-top: 1rem;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
}

.positive-square-result .block-aac-result,
.negative-square-result .block-aac-result {
    margin-bottom: 5px;
}

.positive-square-result span,
.negative-square-result span {
    font-size: 1rem;
}

.positive-square-result {
    border: 2px solid #70AD47;
    background-color: #E2F0D9;
}

.negative-square-result {
    border: 2px solid red;
}

.block-aac-result {
    display: flex;
    align-items: center;
    gap: 5px
}

.block-legend-result p {
    margin: 0;
    white-space: nowrap;
}

.table-result-detail {
    border-collapse: separate;
    border-spacing: 30px !important;
}

.table-result-detail th:not(:first-child),
.label-line-result-detail {
    font-size: 14px;
    background-color: #F2F2F2 !important;
    padding: 50px;
    font-weight: bolder;
    color: #FC971F;
}

.table-result-detail td,
.table-result-detail-summary td {
    height: auto;
    background-color: transparent;
    padding: 1.5rem 1rem;
}

.values-result-detail {
    display: flex;
    gap: 30%;
}

.sentences-result-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*height: 65px;*/
}

/*.sentences-result-detail span {*/
/*    height: 14.28px;*/
/*}*/

.label-line-result-detail {
    width: 15%;
}

.container-result-detail {
    font-size: 14px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: flex-start;
}

#formOtherDiameter {
    display: flex;
    flex-direction: column;
    line-height: normal;
    margin-top: 2rem;
}

.container-loader {
    flex-direction: column;
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%;
}

:root {
    --validADR: #A9D18E;
    --notvalidADR: red;
}

.containerGlobalResultAAC .valid {
    /*color: var(--validADR);*/
    border: 3px solid var(--validADR);
}

.containerGlobalResultAAC .valid h3,
.containerGlobalResultAAC .valid h4,
.containerGlobalResultAAC .valid h5 {
    color: var(--validADR);
}

.containerGlobalResultAAC .notvalid {
    border: 3px solid var(--notvalidADR);
}

.containerGlobalResultAAC .notvalid h3,
.containerGlobalResultAAC .notvalid h4,
.containerGlobalResultAAC .notvalid h5 {
    color: var(--notvalidADR);
}

.verticalBar {
    width: 1px;
    height: 150px;
    background: #000000;
    margin: auto 60px;
    position: relative;
}

.container-display-resultAAC .title {
    margin-left: 50px;
    font-weight: 600;
    color: #008080;

}

.containerResult {
    min-height: 130px;
    width: calc(100% - 60px);
    margin: 0 30px 50px;
    display: flex;
    padding-left: calc(15% + 6px);
    justify-content: flex-end;
}

.containerResult .containerForBoth {
    height: 100%;
    width: calc(85% - 20px);
    display: flex;
    float: right;
    justify-content: space-between;
}

.containerResult .result {
    width: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.containerResult img {
    position: relative;
    bottom: 5px;
    height: 36px;
}

.resultGeneral, .resultAAC, .resuDTU {
    margin-right: 15px;
}

/*RAPPORTS*/
.containerServicesDoneList {
    display: flex;
    flex-wrap: wrap;
}

.containerServiceDone {
    width: 150px;
    margin: 0 20px;
    padding: 5px;
    text-align: center;
}

.containerServiceDone img {
    height: 70px;
    margin-bottom: 5px;
}

.tableReports {
    margin: 50px 0;
    border-spacing: 50px;
}

.tableReports th {
    color: #000000;
    background-color: transparent;
    font-weight: 100;
    font-size: 13px;
}

.tableReports tbody td:first-child {
    width: 500px;
    text-align: start;
    padding-left: 20px;
}

.tableReports tbody td:nth-child(2) {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.tableReports tbody td:nth-child(3),
.tableReports tbody td:nth-child(4) {
    width: 250px;
}

.tableReports .imgService {
    height: 40px;
    filter: grayscale(1);
}

.serviceDone {
    filter: grayscale(0) !important;
}

.btnDownload {
    float: right;
    padding: 0
}

.imgDownload {
    width: 25px;
    height: 25px
}

.tableReports .inactive {
    background-color: #A4A4A4 !important;
    cursor: default !important;
}

/*RAPPORTS*/

/* Style for summary page */
.parent-container-summary {
    margin-left: 2%;
    padding-left: 55px;
}

.container-summary {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding-left: 5px;
}

.container-summary p {
    margin: 0;
}

.block-summary {
    display: flex;
    justify-content: space-between;
}

.subtitle-summary {
    color: #fc971f;
    font-weight: bold;
    margin: 5px 0;
    font-size: 20px;
}

.subtitle-combustible-summary,
.button-show-hide {
    color: #fc971f;
    font-weight: bold;
    margin: 0;
}

.info-service {
    color: #00708E;
}

.triangle-dropdown {
    border-top: 18px solid #fc971f;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    width: 10px;
    height: 10px;
    transition: .5s;
}

.section-dropdown {
    width: 70%;
    border: 2px solid #fc971f;
    border-top-right-radius: 7% 50%;
    border-bottom-right-radius: 7% 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 50px;
    cursor: pointer;
}

.section-dropdown button {
    display: flex;
    gap: 20px;
    align-items: center;
    border: none;
    background-color: transparent;
}

.section-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-out;
}

.table-result-detail-summary {
    border-collapse: separate;
    border-spacing: 10px !important;
}

.table-result-detail-summary th {
    height: auto !important;
}

.result-deper-value {
    border: 2px solid black;
    height: 4rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.table-title-smartphone {
    display: none;
}

@media screen and (max-width: 767px) {
    .parent-container-summary {
        margin-left: 0;
        padding-left: 0;
    }
    .block-summary {
        flex-direction: column;
    }
    .container-summary,
    .section-dropdown {
        width: 100%;
    }
    .section-dropdown {
        padding-right: 10px;
    }
    .table-result-detail-summary,
    .table-result-detail-summary tbody,
    .table-result-detail-summary thead,
    .table-result-detail-summary tr,
    .table-result-detail-summary td,
    .table-result-detail-summary th {
        display: block;
    }
    .table-result-detail-summary th {
        text-align: left;
        width: auto !important;
        border: none !important;
        margin-top: 10px;
    }
    .table-row-computer {
        display: none !important;
    }
}
/* summary */

.containerCantAddUser {
    background: #FED7A8;
    border-radius: 45px;
    padding: 5px 30px 50px;

}

.containerCantAddUser h2 {
    font-weight: bold;
}

.departmentForbidden {
    background-color: #ddd !important;
    pointer-events: none;
}

img {
    pointer-events: none;
    cursor: none;
}

.containerImgCDC {
    height: 250px;
}

.containerImgCDC img {
    height: 100%;
}

#baseInfoBlock {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

#baseInfoBlock .rubrique {
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 50px;
}

img {
    pointer-events: none;
    cursor: none;
}

.containerMentions h2 {
    text-align: center;
}

.containerMentions div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.containerInfoStep button {
    white-space: normal;
    overflow: hidden;
    height: 100%;
}

#modal-welcome_ib .containerContent {
    padding: 15px;
}

#modal-welcome_ib .containerImgText {
    width: 100%;
    display: flex;
}

#modal-welcome_ib .containerText {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#modal-welcome_ib .containerContent div img {
    margin-right: 10px;
}

.popup-template-link-bottom,
.popup-template-link-top,
#modal-welcome_ib h3 {
    color: #FFC000;
    text-align: center;
    width: 50%;
    border: #FFC000 3px solid;
    padding: 5px;
    border-radius: 10px;
}

#modal-welcome_ib h3 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#modal-welcome_ib h3 a {
    text-decoration: none;
    color: inherit;
}

.orange-text {
    color: #fc971f;
}

.bold {
    font-weight: 900;
}

.italic {
    font-style: italic;
}

.containerMentions h2 {
    text-align: center;
}

.containerMentions div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.containerInfoStep button {
    white-space: normal;
    overflow: hidden;
    height: 100%;
}

.containerBigBtn {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.bigBtn {
    max-width: 400px;
    font-size: 20px;
    padding: 5px 50px;
    background: orange;
    font-weight: 100;
}

.actionProject button {
    font-weight: 100;
}

.btnLightOrange {
    background: #FED7A8;
    color: black;
    font-weight: 100;
    padding: 10px 20px;
    border-radius: 6px;
    top: 55%;
    position: relative;
}

a > .btnLightOrange {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    margin: 0;
    color: black;
    cursor: pointer;
    max-height: 40px;
}

a:hover > .btnLightOrange {
    color: black;
}

.containerBtnLightOrange {
    width: 300px;
    height: 50px;
    margin-top: 20px;
}

.containerBtnLightOrange a {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    display: block;
}

.containerInfosProjectSimple {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.containerInfosProjectSimple {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.containerInfosProjectSimple .btnLightOrange {
    top: auto;
}

.btnLightOrange {
    background: #FED7A8;
    color: black;
    font-weight: 100;
    padding: 10px 20px;
    border-radius: 6px;
    top: 55%;
    position: relative;
}

a > .btnLightOrange {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    margin: 0;
    color: black;
    cursor: pointer;
}

a:hover > .btnLightOrange {
    color: black;
}


@media (max-width: 1350px) {
    .container-legend-result{
        gap: 2rem;
    }
}
@media (max-width: 992px) {
    .content {
        padding: 0;
    }

    .containerBigBtn {
        justify-content: center;
    }

    .hideOnSmartphone {
        display: none !important;
    }

    .newAppMobile {
        display: inline-block !important;
    }

    .container-fluid {
        padding: 12px;
    }

    .row {
        margin: auto 0;
    }

    .containerService, .ui-tabs-panel, .containerServicesList {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .containerService, #formDiameter, .containerTitleOR {
        margin: 5px !important;
    }

    .serviceVersion {
        padding-right: 5px;
    }

    #containerServices .col-sm-12 {
        padding: 0;
    }

    .littleText {
        font-size: 60%;
    }

    .littleTextSousRubrique {
        font-size: 75%;
    }

    .width100Smartphone {
        width: 100% !important;
        min-width: auto !important;
    }

    .parentDivProductForm {
        margin-top: 15px;
    }

    .containerServicesList {
        justify-content: center;
    }

    #containerPrerequisite .box-footer {
        margin-bottom: 50px;
    }

    #containerBlockImgForm {
        flex-wrap: wrap;
        justify-content: center;
    }

    .containerPrerequisiteSmartphone {
        padding: 0;
        width: 100%;
    }

    .containerMarge {
        margin-left: -30px !important;
    }
}

.container_page_content_start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.containerBtnServiceInfos {
    margin-left: auto;
    display: flex
}

#containerBlockImgForm {
    display: flex;
    width: 100%;
}

.containerMarge {
    margin-left: 100px;
}

@media (max-width: 350px) {
    .hideOnSmartphone2 {
        display: none;
    }
}

#pictoBug {
    position: fixed;
    width: 35px;
    bottom: 40px;
    left: 40px;
    z-index: 101;
    cursor: pointer;
    pointer-events: auto;
}

.containerMydataService {
    margin-left: 9rem;
}

.containerMydataService h4 {
    width: 300px;
    margin: 0;
}

.containerMydataService > div {
    display: flex;
    margin: 15px 0;
}

@media (max-width: 1300px) {
    .containerMydataService > div {
        flex-direction: column;
    }
}

.imgDangerDTU {
    width: 15px;
    margin-left: 3px;
    margin-right: 1px;
}


.containerDataLine {
    display: flex;
    gap: 10px;
}

@media (max-width: 700px) {
    .containerDataLine {
        flex-direction: column;
    }
    .containerDataLine span:first-child{
        max-width: 100%;
    }
    .containerDataLine span:first-child:not(:empty)::before {
        content: "";
        background: black;
        min-width: 5px;
        height: 5px;
        border-radius: 100px;
        transform: translateY(6px);
        margin-right: 10px;

    }
}

.containerDataLine:not(:first-child) {
    margin: 10px 0;
}

.containerDataLine:first-child {
    margin: 5px 0 10px 0;
}

.containerDataLine span:first-child {
    display: inline-flex;
    width: 350px;
    margin-right: 20px;
}

.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
}

.select2-results__option[role="alert"] {
    background: red !important;
    display: none;
}

.mt-m {
    margin-top: 0;
}

.mb-m {
    margin-bottom: 0;
}

@media (max-width: 993px) {
    .mt-m {
        margin-top: 20px;
    }

    .mb-m {
        margin-bottom: 20px;
    }
}


.lexique-adr-detail {
    position: relative;
    left: 18%;
    width: 80%;
    border: 2px solid #ff6600 !important;
}

.orange {
    color: #ff6600;
}

.bold {
    font-weight: bold;
}

.lexique-adr-detail td {
    background-color: white;
    border: none !important;
    text-align: left;
    vertical-align: top;
    padding-left: 1rem;
    height: 25px;
}

.bg-beige {
    background-color: #F5F5DC !important;
}
.bg-brown {
    background-color: #8B4513 !important;
    color: white !important; /* Pour assurer la lisibilité sur fond marron */
}

.bg-eb {
    background: #6E5AE2;
}

/*SWITCH BTN*/
.switch-button .switch-outer {
    height: 100%;
    background: #252532;
    width: 55px;
    border-radius: 165px;
    border: 1px solid #32303e;
    padding: 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.switch-button .switch-outer input[type="checkbox"] {
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
}

.switch-button .switch-outer .button-toggle {
    height: 15px;
    width: 15px;
    background: white;
    border-radius: 100%;
    position: relative;
    z-index: 2;
    -webkit-transition: left 0.3s ease-in;
    -o-transition: left 0.3s ease-in;
    transition: left 0.3s ease-in;
    left: 0;
}

.switch-button
.switch-outer
input[type="checkbox"]:checked
+ .button
.button-toggle {
    left: 58%;
}

.switch-button .switch-outer .button {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.switch-button
.switch-outer
input[type="checkbox"]:checked
+ .button
.button-indicator {
    -webkit-animation: indicator 1s forwards;
    animation: indicator 1s forwards;
}

.switch-button .switch-outer .button-indicator {
    height: 10px;
    width: 10px;
    top: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    border: 3px solid #60d480;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

@-webkit-keyframes indicator {
    30% {
        opacity: 0;
    }

    0% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        border: 3px solid #fff203;
        left: -68%;
    }
}

@keyframes indicator {
    30% {
        opacity: 0;
    }

    0% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        border: 3px solid #fff203;
        left: -68%;
    }
}

.extrabat-switch .switch-outer {
    background: #BF9000;
    border-color: #BF9000;
}

.extrabat-switch .switch-button .switch-outer .button-indicator {
    border-color: #000000;
}

/*SWITCH BTN*/

#modal-extrabat-client .rubrique {
    margin-top: 0 !important;
}

.buttonZcal {
    background: #ED7D31;
    max-width: 500px;
    color: white;
    border-radius: 10px;
}

.buttonZcal a {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
}

.buttonZcal img {
    width: 45px;
}

.btnComment{
    width:25px;
    height:25px;
    padding: 0;
    margin: 0;
}
.btnComment img{
    width: 70%;
    margin-left: 1px;
    margin-bottom: 2px;
}

.fa-star {
    width: 20px;
    height: 20px;
    color: grey;
}

.favorite-icon {
    color: yellow;
}

.toggle-password{
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 3;
    cursor: pointer;
}

.containerRtpDeper {
    padding-left: 5rem;
    display: flex;
    justify-content: space-between;
    column-gap: 5rem;
}

@media (max-width: 992px) {
    .containerRtpDeper{
        justify-content: center;
        flex-wrap: wrap;
        padding: 15px;
        gap: 25px;
    }
}

@media (max-width: 1500px) {
    .popup-border-radius {
        display: flex;
        flex-wrap: wrap;
    }

    .popup-img {
        position: static;
        transform: translate(0, 0);
        margin: auto;
    }

    .popup-content {
        padding: 30px;
        margin-left: auto;
    }
}

/* POPUP MODULE */
.container-input-popup {
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.personalized-row {
    width: 50%;
    display:flex;
    align-items: center;
    gap: 1rem;
}

.personalized-row .form-group {
    flex: 1;
}

.cross-popup {
    font-size: 18px;
    color: white;
    background-color: #0F9ED5;
    padding: 0 8px;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

.popup-container,
.popup-container-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-container-content {
    margin-top: 15px;
    gap: 1rem;
    max-width: 100%;
}

.popup-container-content .popup-message {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.popup-container {
    padding: 5px 5px 15px 5px;
    flex-direction: column;
}

.popup-template-title {
    font-style: italic;
    color: #ED7D31;
    font-weight: bold;
    text-align: left;
}

.popup-template-link-top,
.popup-template-link-bottom {
    font-weight: bold;
    text-decoration: none;
    color: #FFC000 !important;
    font-size: 24px;
}

#container-popups {
    position: fixed;
    z-index: 1050;
    overflow: auto;
    display: none;
    padding: 0;
    height: 100%;
    top: 0;
    width: 100%;
    justify-content: center;
    left: 0;
}

#container-popups .modal {
    position: relative;
    opacity: 1;
    background: none;
}

/*Hide message version CKEditor*/
#cke_notifications_area_popup_text {
    display: none !important;
}

/* POPUP MODULE */
