/* Minimal default Drupal form styling (adapted from core). */

/* Adapted from bartik */
:not(.dod-form) fieldset {
  margin: 1em 0;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}
:not(.dod-form) details .details-description {
  font-style: italic;
}
:not(.dod-form) label {
  display: table;
  font-weight: bold;
}
:not(.dod-form) label[for] {
  cursor: pointer;
}
:not(.dod-form) input {
  max-width: 100%;
}

:not(.dod-form) textarea.form-textarea {
  padding: 4px;
}
:not(.dod-form) .form-actions {
  padding-top: 10px;
}

/* Adapted from classy: */
:not(.dod-form) .field-multiple-table .field-multiple-drag {
  width: 30px;
  padding-right: 0;
}
:not(.dod-form) .form-item,
:not(.dod-form) .form-actions {
  margin-top: 1em;
  margin-bottom: 1em;
}
:not(.dod-form) .form-composite > .fieldset-wrapper > .description,
:not(.dod-form) .form-item .description {
  font-size: 0.85em;
}
:not(.dod-form) label.option {
  display: inline;
  margin-left: 0.5ex;
  font-weight: normal;
}
:not(.dod-form) .form-composite > legend,
:not(.dod-form) .label {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: bold;
}
:not(.dod-form) .form-checkboxes .form-item,
:not(.dod-form) .form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
:not(.dod-form) .form-type-radio .description,
:not(.dod-form) .form-type-checkbox .description {
  margin-left: 2.4em; /* LTR */
}
:not(.dod-form) .marker {
  color: #e00;
}
:not(.dod-form) .form-item input.error,
:not(.dod-form) .form-item textarea.error,
:not(.dod-form) .form-item select.error {
  border: 2px solid red;
}
:not(.dod-form) details {
  margin-top: 1em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  padding: 0.5em 1.5em;
}
