/******************
    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
*/

/* Bouton choix langue */
.form-change-lang #language-changer-select {
    color: #E27023;
    background-color: transparent;
}

.form-change-lang #lang-select::after {
    color: #E27023;
}

/* Les liens */
a:link {
  color: #E27023;
}

a:visited {
  color: #E27023;
}

a:hover {
  color: #5A2B0C;
}

/* Boutons */ 
.btn-primary {
    background-color: #E27023;
    border-color: #E27023;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5A2B0C;
    border-color: #5A2B0C;
}

/* Barre de progression */
.progress-bar{
    background-color: #E27023;
}

/* Cases à cocher (carrée) */
.privacy .checkbox-item label::before {
    border: 3px solid #E27023;
}

.checkbox-item input[type=checkbox]:checked + label::after {
    background-color: transparent;
    color: #E27023;
}

.checkbox-item input[type=checkbox]:checked + label {
    color: #E27023;
}

.checkbox-item input[type=checkbox]:checked + label::before {
    border-color: #E27023;
}

/* Boutons radios */
.radio-item input[type=radio]:checked + label {
    color: #E27023;
}

.radio-item input[type=radio]:checked + label::after {
    background-color: #E27023;
}

.radio-item input[type=radio]:checked + label::before {
    border-color: #E27023;
}