*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .body-bco {
    font-family: 'Helvetica', sans-serif;
    color: #384047;
  }
  
  .form-bco {
    max-width: 300px;
    margin: 10px auto;
    padding: 10px 20px;
    background: #f4f7f8;
    border-radius: 8px;
  }
  
  .h3-bco {
    margin: 0 0 20px 0;
    text-align: center;
  }

  .p-bco{
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    
  }
  .a-bco{
    color: #7FBA00;
  }
  
  .input-bco[type="text"],
  .input-bco[type="password"],
  .input-bco[type="date"],
  .input-bco[type="datetime"],
  .input-bco[type="email"],
  .input-bco[type="number"],
  .input-bco[type="search"],
  .input-bco[type="tel"],
  .input-bco[type="time"],
  .input-bco[type="url"],
  .textarea-bco,
  .select-bco {
    background: rgba(255,255,255,0.1);
    border: none;
    font-size: 16px;
    height: auto;
    margin: 0;
    outline: 0;
    padding: 15px;
    width: 100%;
    background-color: #e8eeef;
    color: #000000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
    margin-bottom: 30px;
  }
  
  .input-bco[type="checkbox"],
  .input-bco[type='radio']:after {
  width: 17px;
  height: 17px;
  border-radius: 15px;
  top: -2.5px;
  left: -2px;
  position: relative;
  background-color: #ccc;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 4px solid white;
  }

  .input-bco[type="checkbox"],
  .input-bco[type='radio']:checked:after {
    width: 17px;
    height: 17px;
    border-radius: 15px;
    top: -2.5px;
    left: -2px;
    position: relative;
    background-color: #002357;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 4px solid white;
  }

  .select-bco {
    padding: 6px;
    height: 32px;
    border-radius: 2px;
  }
  
  .button-bco {
    padding: 19px 39px 18px 39px;
    color: #FFFFFF;
    background-color: #7FBA00;
    font-size: 18px;
    text-align: center;
    font-style: normal;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #7FBA00;
    border-width: 1px 1px 3px;
    box-shadow: 0 -1px 0 #002357 inset;
    margin-bottom: 10px;
    
  }
  
  .button-bco:hover{
    background: #002357;
    color: #fff;
  }
  
  .fieldset-bco {
    margin-bottom: 30px;
    border: none;
  }
  
  .legend-bco {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  
  .label-bco {
    display: block;
    margin-bottom: 8px;
  }
  
 .label-bco.light {
    font-weight: 300;
    display: inline;
  }
  
  .number-bco {
    background-color: #5fcf80;
    color: #fff;
    height: 30px;
    width: 30px;
    display: inline-block;
    font-size: 0.8em;
    margin-right: 4px;
    line-height: 30px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    border-radius: 100%;
  }
  
  @media screen and (min-width: 480px) {
  
    .form-bco {
      max-width: 480px;
    }
  
  }

/* Style Table */
.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
    background-color: #7FBA00;
    color: #ffffff;
    text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
