/**
 * @file
 * Field Styling
 *
 * The Fences module allows site builders to pick the semeantic HTML5 element
 * for each field while editing the field's settings. There's no way a theme
 * can ever know which element to use for the fields on your site, so Zen
 * just uses lets Drupal core or Fences decide. Since you DO NOT want 3 wrapping
 * divs around every field (do you?), we highly recommend Fences.
 *
 * http://drupal.org/project/fences
 */
/*=VARIABLES - GRID
------------------------------------------------*/
/*=VARIABLES - FONTS
------------------------------------------------*/
/*=VARIABLES - COLOR
------------------------------------------------*/
/*=VARIABLES - BUTTONS
------------------------------------------------*/
/*MIXINS
------------------------------------------------*/
/*FUNCTIONS
------------------------------------------------*/
/*
 * Field wrappers when the Fences module is enabled.
 */
/* line 23, ../sass/fields.scss */
.field-FIELDNAME {
  /* Underscores in field name are replaced with dashes. */
}

/*
 * If you don't use the Fences module, that's fine. Really. I think. Just use
 * these selectors instead:
 */
/* line 32, ../sass/fields.scss */
.field {
  /* Wrapper for any field. */
}
/* line 33, ../sass/fields.scss */
.field .field-label {
  /* The optional label for a field. */
  font-family: 'SourceSansProBold', arial, sans-serif;
}
/* line 39, ../sass/fields.scss */
.field.field-label-inline {
  background-color: #e0f2f0;
  margin: 4px 0;
}
/* line 42, ../sass/fields.scss */
.field.field-label-inline .field-label {
  padding: 3px 1em;
}
/* line 45, ../sass/fields.scss */
.field.field-label-inline .field-items {
  padding: 3px 1em;
}

/* line 56, ../sass/fields.scss */
.field-name-field-address-line-2 .field-label {
  visibility: hidden;
}

/*
 * Field types (Core)
 */
/*
 * Field types (Contrib)
 */
/* line 107, ../sass/fields.scss */
.field-type-datetime {
  /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */
}

/*
 * Named fields
 */
/* line 120, ../sass/fields.scss */
.field-name-body {
  padding-bottom: 2em;
}

/* line 130, ../sass/fields.scss */
.field-name-field-FIELDNAME {
  /* Underscores in field name are replaced with dashes. */
}
