/* Style the form */
@charset 'iso-8859-15';
#regForm, #resultat, #peu_form {
    background-color: #ffffff;
    margin: 100px auto;
    padding: 40px;
    width: 70%;
    min-width: 300px;
    font-size: 17px;
    font-family: 'Segoe UI';
  }
  
  /*pre{
    font-family: 'Segoe UI';
  }*/

  #peu_form{
    margin-top: -100px;
  }
  
  /* Style the input fields */
  .pregunta {
    padding: 10px;
    margin-bottom: 10px;
    /* width: 100%; */
    font-size: 17px;
    border: 1px solid #aaaaaa;
  }
  
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  /* Make circles that indicate the steps of the form: */
  .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  /* Mark the active step: */
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: #04AA6D;
  }

  button {
    background-color: #04AA6D;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: 'Segoe UI';
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.8;
  }
  
  #prevBtn {
    background-color: #bbbbbb;
  }

  /*Result box styles*/
  .resultat_elements{
    padding: 10px;
    margin-bottom: 10px;
    font-size: 17px;
    border: 1px solid #aaaaaa;
  }

  #peu_form{
    display: none;
  }

  img{
    max-width: 100%;
    padding: 0px 1.5em 1.5em 0em;
    vertical-align: middle;
    height: auto;
  }