/**
 * @file
 * Visual styles for form components.
 */

form .field-multiple-table {
  margin: 0;
}
form .field-multiple-table .field-multiple-drag {
  width: 30px;
  padding-right: 0; /* LTR */
}
[dir="rtl"] form .field-multiple-table .field-multiple-drag {
  padding-left: 0;
}
form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: 0.5em; /* LTR */
}
[dir="rtl"] form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: 0;
  padding-left: 0.5em;
}
form .field-add-more-submit {
  margin: 0.5em 0 0;
}

/**
 * Markup generated by Form API.
 */
.form-item,
.form-actions {}

tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
}
.form-composite > .fieldset-wrapper > .description,
.form-item .description {
  font-size: 0.85em;
}
label.option {
  display: inline;
  font-weight: normal;
}
label,
.form-composite > legend,
.label {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: bold;


  color: var(--site--body--text-color--02);
  font-weight: 500;
  letter-spacing: 0.075rem;
  text-transform: uppercase;

}
.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em; /* LTR */
}
[dir="rtl"] .form-type-radio .description,
[dir="rtl"] .form-type-checkbox .description {
  margin-right: 2.4em;
  margin-left: 0;
}
.marker {
  color: #e00;
}
.form-required:after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
  content: "";
  vertical-align: super;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(../../images/icons/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
}
abbr.tabledrag-changed,
abbr.ajax-changed {
  border-bottom: none;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid red;
}

/* Inline error messages. */
.form-item--error-message:before {
  display: inline-block;
  width: 14px;
  height: 14px;
  content: "";
  vertical-align: sub;
  background: url(../../images/icons/error.svg) no-repeat;
  background-size: contain;
}




/**
 * ===== FORM - LABEL =====
 */

label.form-required::after {
  content: " *";
}




/**
 * ===== FORM - FIELDS =====
 */


/**
 * form-date
 */
input.form-date {
    -moz-appearance: none;
    -webkit-appearance: none;
}


/**
 * form-email
 */
input.form-email {
    -moz-appearance: none;
    -webkit-appearance: none;
  width: 100%;
}


/**
 * form-number
 */
input.form-number {
    -moz-appearance: none;
    -webkit-appearance: none;
  width: 100%;
}


/**
 * form-search
 */
input.form-search {
    -moz-appearance: none;
    -webkit-appearance: none;
}


/**
 * form-tel 
 */
input.form-tel {
    -moz-appearance: none;
    -webkit-appearance: none;
  width: 100%;
}


/**
 * form-text 
 */
input.form-text {
    -moz-appearance: none;
    -webkit-appearance: none;
  width: 100%;
}
input.form-text::placeholder {}


/**
 * form-checkbox
 */
input.form-checkbox {}
.js-form-type-checkbox {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}


/**
 * form-checkbox
 */
input.form-file {
    -moz-appearance: none;
    -webkit-appearance: none;
  width: 100%;
}


/**
 * form-submit
 */
input.form-submit {
    -moz-appearance: none;
    -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  padding: 11px 14px;
  text-transform: uppercase;
  width: auto;
}
input.form-submit:hover {}


/**
 * form-select
 */
select.form-select {
  width: 100%;
}


/**
 * form-textarea 
 */
textarea.form-textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
}




/**
 * ===== FORM LAYOUT =====
 */


/**
 * form-item
 */
.form-item {
  margin: 1.0rem 0;
}


/**
 * form-actions
 */
.form-actions {}




/**
 * ===== FORM - DESCRIPTION =====
 */

.form-composite > .fieldset-wrapper > .description,
.form-item .description {
  color: #888888;
  font-size: 0.8rem;
  font-style: italic;
  padding: 5px 3px;
}
