/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }
  
 /* header CAP Métiers */ 
  .container-fluid {
      background-color : white;
  }
  .logo-container > img {
    max-height: 90px;
    padding: 0px;
    width: auto;
}
  
  /*couleur par défaut du texte */
  :root {
      --bs-body-color: #1a013b;
      --bs-body-color-rgb: 26, 1, 59;
      --bs-body-line-height: 1.3;
  }
  
  /* espacement vertical réduit */
  .space-col {
    margin-top: 1em;
    margin-bottom: 1em;
  }  

  
 /* titre de questionnaire */
 .survey-name {
     color : #330077;
     /*text-decoration: underline #ff3e3e ;
     text-decoration-thickness: 8px;
     text-decoration-skip-ink: none;*/
     margin-bottom: 3rem;
 }
 
 /* texte d'aide */
  .question-help-container.text-info.col-12,.question-valid-container.text-info.col-12, .text-info {
     color : #330077 !important;
 }
 
 /* texte d'erreur / champs obligatoires */
 .text-danger {
     color : #ff3e3e !important;
 }
 
 /* texte d'avertissement */
 .text-warning {
    color: #330077 !important;
    border-left: 2px solid #330077;
    padding-left: 5px;
}
 
 /* couleur des boutons */
 .btn-primary, .btn-outline-secondary {
    background-color: #ff3e3e;
    border-color: #ff3e3e;
    color: #fff;
}

.btn-check:focus+.btn-primary, .btn-primary:focus, .btn-primary:hover, .btn-outline-secondary:hover {
    background-color: #1a013b;
    border-color: #1a013b;
}

.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    background-color: #1a013b;
    border-color: #1a013b;
}


.btn-check:focus:checked+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    background-color: #1a013b;
    border-color: #1a013b;
}

 /* hauteur des boutons */
.btn-group-lg>.btn, .btn-lg {
    border-radius: .3rem;
    font-size: 1.25rem;
    padding: .1rem 1rem;
}

/* barre de progression */
.progress-bar {
    background-color: #330077;
}


/* description du questionnaire*/
.survey-description.text-info.text-center, .survey-welcome.h5.text-primary {
    color: #1a013b !important;
    text-align:left !important;
}

/* titre des groupes de questions */
.group-title.text-center.h3 {
    text-align:left !important;
    color : #330077;
    border-bottom: 6px solid #ff3e3e ;
    
}

