/* 
question:  Lato heavy, color: blue #1557bf 
answer: Lato semibold, colour: black #000000
error question: Lato heavy, color: orange, #ff6f1c
*/

@charset "UTF-8";
html,
body {
  height: 100%;
  font-family: 'Lato';
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  font-size: 14px;
}

body {
  background: #ffffff;
  color: #1b1b1b;
  padding: 0;
  margin: 0;
  font-family: Lato;
  font-weight: normal;
  font-style: normal;
  line-height: 150%;
  position: relative;
  cursor: auto;
}

p{
  font-family: Lato;
  color: #1b1b1b;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.row {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 60rem;
  }
  
  .row:before,
  .row:after {
    display: none !important;
  }
  
  .row:after {
    clear: both;
  }


  .form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label{
    color: unset;
  }
  .form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label{
    color: unset;
  }
  .form-check-input.is-invalid, .was-validated .form-check-input:invalid{
    border-color: rgba(0,0,0,.25);
  }

  .form-check-input.is-valid, .was-validated .form-check-input:valid{
    border-color: rgba(0,0,0,.25);
  }

  .form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked{
    background-color: #0d6efd;
  }

  .form-control{
    display: inline-block;
  }
  
  legend{
    color: #1557bf;
  }
  legend.invalid{
    color: #ff6f1c;
  }
  .invalid-alert{
    display: none;
    width: 135px;
    height: 27px;
    background-color: #fff !important;
    background-image: url('https://image.marketing.plus.com.sg/lib/fe3a15717564047b711372/m/9/7071ca6d-9ac2-4eac-9db8-80e5dff69b72.png');
    background-size: 100%;
    margin-top: 0.2rem;
  }
  input[type='text']{
    background-color: #ededed;
    border-radius: .5rem;
    border: 0px;
  }
  .form-select{
    width: auto;
    display: inline-block;
  }
  .numberInput{
    width: 4rem !important;
  }
  .numberInput+label{
    vertical-align: middle;
    line-height: 1.3;
  }
  textarea.form-control{
    background-color: #ededed;
    border-radius: .5rem;
    border: 0px;
  }
  button[type=submit].btn{
    display: block;
    width: auto;
    height: 3rem;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: #fba217;
    color: #fff;
    border-radius: 1.5rem;
    font-size: 1.5rem;
  }
  button[type=submit].btn:hover{
    color: #fff;
  }
  .invalid-warning{
    display: none;
    background-color: #fff !important;
  }
  .invalid-warning img{
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }

@media screen and (max-width: 768px) {
    .container-fluid{
        padding:0 15px !important;
    }
}