/* Style the input fields */
input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
}
/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffebeb !important;
}
/* Mark select boxes that gets an error on validation: */
select.invalid {
  background-color: #ffebeb !important;
}
/* Mark textarea boxes that gets an error on validation: */
textarea.invalid {
  background-color: #ffebeb !important;
}
/* Mark input boxes that gets an error on validation: */
input.valid {
  background-color: white;
}
/* Mark select boxes that gets an error on validation: */
select.valid {
  background-color: white;
}
/* Mark textarea boxes that gets an error on validation: */
textarea.valid {
  background-color: white;
}
/* Hide all steps by default: */
.tab,
.tab-supplier {
  display: none;
}
/* Make circles that indicate the steps of the form: */
.step,
.step-supplier {
  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,
.step-supplier.active {
  opacity: 1;
}
/* Mark the steps that are finished and valid: */
.step.finish,
.step-supplier.finish {
  background-color: #d64c95;
}
select.invalid + .select2 .select2-selection {
  background-color: #ffebeb !important;
}
/* Mark input boxes that gets an error on validation: */
select.valid + .select2 .select2-selection {
  background-color: white!important;
}
/*# sourceMappingURL=custom_steps.min.css.map */