/*
 * Usage: @include browser-prefix(transition, color 0.5s, background 0.3s);
 * Please just use plain CSS (transition: ...;) instead of this function
 */
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.form-check-label {
  margin-bottom: 0;
}
.col-form-label {
  padding-top: 0.5rem;
  padding-bottom: 0.47rem;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 1rem;
}
.form-control {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  outline: 0;
  line-height: 1.2em;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control.error {
  border-color: red;
}
.form-control.error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
textarea.form-control {
  resize: none;
  height: 10rem;
}
select.form-control {
  padding-right: 1.25rem;
}
.form-check-input {
  position: absolute;
  margin-top: 0.2rem;
  margin-left: -1.25rem;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.form-check.custom-radio .form-check-label, .form-check.custom-check .form-check-label {
  position: relative;
}
.form-check.custom-radio .form-check-input, .form-check.custom-check .form-check-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
  margin: 0;
  top: 0;
}
.form-check.custom-radio .form-check-label:before, .form-check.custom-radio .form-check-label:after {
  position: absolute;
  top: 0.1875rem;
  left: -1.25rem;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}
.form-check.custom-radio .form-check-label:before {
  border: #adb5bd solid 1px;
}
.form-check.custom-radio .form-check-label:after {
  width: 0.375rem;
  height: 0.375rem;
  left: -1rem;
  top: 0.4375rem;
}
.form-check.custom-radio .form-check-input:checked + .form-check-label:before {
  border-color: #007bff;
  background-color: #007bff;
}
.form-check.custom-check .form-check-label:before, .form-check.custom-check .form-check-label:after {
  position: absolute;
  top: 0.13rem;
  left: -1.25rem;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, background-color 0.2s;
}
.form-check.custom-check .form-check-label:before {
  border: #adb5bd solid 1px;
}
.form-check.custom-check .form-check-label:after {
  top: 0.25rem;
  left: -1.125rem;
  width: 0.625rem;
  height: 0.625rem;
}
.form-check.custom-check .form-check-input:checked + .form-check-label:before {
  border-color: #007bff;
}
.form-check.custom-check .form-check-input:checked + .form-check-label:after {
  background-color: #007bff;
}
.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: -0.2rem;
  margin-right: 0.3125rem;
  margin-left: 0;
}
.form-check-inline.custom-check, .form-check-inline.custom-radio {
  padding-left: 1.25rem;
}
.form-error-message {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: red;
  font-weight: bold;
}
.form-error-list {
  padding: 0;
  margin: 0.25rem 0 0 1rem;
  font-size: 0.75rem;
  color: red;
  font-weight: bold;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
}
/*# sourceMappingURL=/typo3temp/mk_scss/forms.scss-c8e59ff4.css.map */