/******************
    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
*/
@import url("https://fonts.cemea.asso.fr/barlow/index.css");
@import url("https://fonts.cemea.asso.fr/dosis/index.css");
/*
Pour permettre le choix de font, c'est dans le config.xml qu'on indique que la police par défaut est barlow
*/
.font-barlow {
 font-family: "Barlow", sans-serif;
}
.font-dosis {
 font-family: "Dosis";
}
/*
Limesurvey n'utilise pas le paramètre de font pour les titres
*/
.large-heading {
    font-family: "Barlow", sans-serif;
}

/*
Les liens ont une taille fixe (plus petite que le texte de base) dans ce thème, on écrase ça
*/
a {
    font-size: inherit !important;
}
/*
Le bloc de titre est dans un cadre de 750 px de large, alors qu'on pourrait l'étendre.
*/
#welcome-container {
  max-width: none;
}

/*
Réduction de l'espacement entre les blocs de question 
*/

.space-col {
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}

/*
L'espace de ligne est une taille fixe, ce qui pose soucis quand on change la taille du texte ... on écrase ça aussi
*/
body, .form-heading {
    line-height: normal !important;
}

.group-container .group-title {
  color: #184857;
  margin-top: 0em;
}

a {
  color: #e30613;
}

a:hover {
  color: #a20613;
}

.question-container {
  margin-bottom: 0em;
}


.btn-primary {
  background-color: #e30613;
  border-color: #e30613;
  border-radius: 30%;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary:active:focus, .btn-primary.dropdown-toggle.show, .btn-primary.dropdown-toggle.show:focus {
  background-color: #a20613;
  border-color: #a20613;
}

.btn-check {
  background-color: #a20613;
  border-color: #a20613;
}

.btn-check + .btn-primary:hover {
  background-color: #e30613;
  border-color: #e30613;
}

.btn-check:checked + .btn-primary, .btn-check:checked + .btn-primary:focus, .btn-check:focus:checked + .btn-primary {
  background-color: #e30613;
  border-color: #e30613;
}


.radio-item input[type="radio"]:checked + label {
  color: #e30613;
}

.radio-list input[type="radio"]:checked + label {
  color: #e30613;
}


.text-info {
  color: #184857 !important;
}

.alert-warning {
  background-color: #96d3dd;
}

.alert-info {
  background-color: #96d3dd;
}


.form-change-lang #language-changer-select {
  color: #e30613;
}

.dropdown-menu > li > a:hover {
  background-color: #e30613 !important;
}


/*

Voir  : https://github.com/flatlogic/awesome-bootstrap-checkbox/blob/master/awesome-bootstrap-checkbox.css
*/


