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

 
 /* width aanpassen */
 
.width {
    width: 95%;
}

 /* progress barr */
 
 .progress-bar {
    background-color:  #0c719c;
 }
 
 
 /* previous and next buttons */
 
 /* Normal */

.btn-primary, .btn-outline-secondary { 
  border-color : #ccedf6;
  color : black; 
  background-color : #ccedf6; 
}
 
 /* Normal and mouse over */
 
.btn-primary:hover, .btn-outline-secondary:hover { 
  background-color : #0c719c; 
  color : white; 
  border-color : #0c719c; 
}
 
 
 .btn-primary:active, 
.btn-primary.active {
    background-color : #0c719c; 
  color : white; 
  border-color : #0c719c; 
}

.btn-outline-secondary:active, 
.btn-outline-secondary.active {
   background-color : #0c719c; 
  color : white; 
  border-color : #0c719c; 
}

 
 /* Change bootstrap buttons */

/* Normal */

.btn.btn-primary.w-100 { 
  background-color : #ccedf6; 
  color : black; 
  border-color : #ccedf6; 
}
 
/* Normal and mouse over */
 
.btn.btn-primary.w-100:hover {
    border-color : #0c719c;
  color : white; 
  background-color : #0c719c; 
}
  


/* Checked */
 
.btn-check:checked +.btn.btn-primary.w-100 { 
  border-color : #0c719c;
  color : white; 
  background-color : #0c719c; 
}





/* hulpmiddeltjes */

.asterisk {
    color: grey;
}

.ls-questionhelp {
    color: grey;

}

