form h4 {
  margin-top: 0;
  margin-bottom: 2rem;
}


.formsection {
  margin-bottom: 1.5rem;
}

select,
textarea,
input {

}

label.big {
  font-size: 1.2rem;
}

input[type=number].big,
input[type=text].big {
  display: block;
  width: 90%;
  font-size: 1.2rem;
  margin: 1rem 0;
  padding: 15px;
}

select,
textarea,
input[type=text] {
  display: block;
  width: 90%;
  font-size: .8rem;
  margin: 1rem 0;
  padding: 15px;
}

label {
  font-size: .8rem;
}

textarea {
  height: 4rem;
}

select {
  width: 96%;
}

a.cta,
.button,
button.cta,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  background-color: #940d74;
  border: 1px solid #940d74;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2.0rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

a.cta:hover,
.button:focus, .button:hover,
input[type='button']:focus,
input[type='button']:hover,
input[type='reset']:focus,
input[type='reset']:hover,
input[type='submit']:focus,
input[type='submit']:hover {
  background-color: #606c76;
  border-color: #606c76;
  color: #fff;
  outline: 0;
}

.form-control {
  font-size: .8rem;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 1rem;
}

.form-control + .form-control {
  margin-top: 1em;
}

.form-control--disabled {
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: #000;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: max(1px, 0.15em) solid currentColor;
  outline-offset: max(1px, 0.15em);
}

input[type=checkbox]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

/* DATATABLES */

#detailtable_filter {
  float: left;
}

#detailtable_filter input {
  margin-left: 10px;
}

#detailtable_wrapper {
  margin-top: 2rem;
}

.dataTable th.sorting {
  cursor: row-resize;
  border: 1px solid #c0c0c0;
  background-color: #f8f8f8;
  font-size: 1rem;
  padding: 15px 10px;
}

.dataTables_info {
  float: right;
  font-size: .7rem;
  padding: 10px 0;
}

.dataTable th {
  vertical-align: top;
}

.dataTable input.columnsearch {
  font-size: .8rem;
  width: auto;
  padding: 5px;
  margin: .5rem 0;
}

form.compare select {
  padding: 5px;
  margin: 5px;
}