<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*CALCULADORA DE SALARIO*/
#SalaryCalculator {
    margin-left: calc( -10px/2 );
    margin-right: calc( -10px/2 );
    display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  align-items: start;
  }
  #SalaryCalculator label {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }
  #SalaryCalculator  #salary-group,
  #SalaryCalculator  #dependent-group {
      display: flex;
      flex-wrap: wrap;
  align-items: center;
    padding-right: calc( 10px/2 );
    padding-left: calc( 10px/2 );
    margin-bottom: 10px;
    width: 50%;
  }
  #SalaryCalculator  #salary,
  #SalaryCalculator  #dependent {
    background-color: #ffffff;
  border-radius: 6px 6px 6px 6px;
  font-family: "Inter", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  }
  #SalaryCalculator .btn.btn-success {
    background-color: #F6E132;
  color: #35383A;
  border: none;
  font-family: "Inter", Sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px 10px 10px 10px;
  margin-right: calc( 10px/2 );
  margin-left: calc( 10px/2 );
  width: 100%;
  min-height: 40px;
  }
  .help-block {
    color: #f00;
    font-size: 12px;
    line-height: 16px;
    padding-top: 2px;
  }
  .calcNotes {
      font-size: 14px;
      text-align:justify;
  }
  .calcReturn {
      text-align:right;
  }
  #liquid_salary {
    font-weight: 700;
  }</pre></body></html>