﻿.font-weight-normal {
  font-weight: normal;
}

h2 {
  font-size: 1.3em;
  /*font-weight: 100; */
  margin-top: 20px;
  margin-bottom: 0;
}

form h2 {
    margin-top: 20px;
}

.content-section {
    margin-bottom: 0;
}

/*.required must be added to label css class manually in form builder*/
label {
  margin-top: 15px;
}

form label[aria-required="true"]::before {
  content: "*";
  color: #a94442;
}

.input-validation-error,
.field-validation-error {
  color: #a94442;
}

.form-control.input-validation-error {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form-control.input-validation-error:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.field-validation-error {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 14px;
}

form input[type="checkbox"] {
  margin-right: 8px;
}

form input[type="submit"] {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  padding: 19px 30px;
  outline: 0;
  white-space: normal;
  transition: all 350ms;
  -webkit-transition: color 350ms, background 350ms;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: red;
  touch-action: manipulation;
  margin: 20px 0;
}

form input[type="submit"]:hover {
  outline: 0;
  cursor: pointer;
  color: #fff;
  background: #000;
  border-color: #e0e0e0;
}

form .checkbox-list input {
    width: auto;
    display: inline-block;
}

form .checkbox-list-item {
    clear: both;
    display: flex;
    font-weight: normal;
    margin: 0;
}
