.form-group.input-material {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  /* textarea label */
}
.form-group.input-material label {
  color: #b1bbc4;
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  width: 100%;
  bottom: 5px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.form-group.input-material textarea.form-control ~ label {
  bottom: 90%;
  bottom: calc(100% - 38px);
}
.form-group.input-material .form-control,
.form-group.input-material .form-select {
  height: 40px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  border-radius: 0px;
  background-color: transparent;
  padding-left: 0;
  box-shadow: none;
  /* required fields */
  /* active state */
  /* invalid state */
}
.form-group.input-material .form-control:required ~ label::after,
.form-group.input-material .form-select:required ~ label::after {
  content: "*";
  color: #dc3545;
  padding-left: 2px;
  font-size: 0.8em;
}
.form-group.input-material .form-control:focus,
.form-group.input-material .form-control[value]:not([value=""]),
.form-group.input-material .form-select:focus,
.form-group.input-material .form-select[value]:not([value=""]) {
  border-bottom-color: #00B0B0;
  color: #000;
}
.form-group.input-material .form-control:focus ~ label,
.form-group.input-material .form-control[value]:not([value=""]) ~ label,
.form-group.input-material .form-select:focus ~ label,
.form-group.input-material .form-select[value]:not([value=""]) ~ label {
  top: unset;
  bottom: 100%;
  bottom: calc(100% - 6px);
  font-size: 13px;
  color: #00B0B0;
  font-weight: 400;
}
.form-group.input-material .form-control.invalid,
.form-group.input-material .form-control.invalid,
.form-group.input-material .form-control.parsley-error,
.form-group.input-material .form-control[value]:not([value=""]).parsley-error,
.form-group.input-material .form-select.invalid,
.form-group.input-material .form-select.invalid,
.form-group.input-material .form-select.parsley-error,
.form-group.input-material .form-select[value]:not([value=""]).parsley-error {
  border-bottom-color: #dc3545;
  border-width: 2px;
}

/*# sourceMappingURL=input-material.css.map */
