/**
 * @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
 */


/*
 * Field wrappers when the Fences module is enabled.
 */

.field .field-label { /* The optional label for a field. */
	background-color: #e1f1ff;
	width: 185px;
	text-align: right;
	font-weight: normal;
	padding-right: 1em;
	margin-right: 1em;
}

#node_forex_platform_full_group_using_brokers  .field .field-label {
	width: 230px;
	text-align: right;
	/*float:left;*/
}

/*#node_forex_platform_full_group_using_brokers  .field .field-items {
	float:left;
}*/

.view .field-label-inline .field-items {
	width: 370px;
}

.non-premium  .field  .field-label {
	background-color: #f9f9f9;
}

.page-forex-platforms  .field  .field-label {
	background-color: #0758A8;
	color: #fff;
}

.field-label-inline .field-items .field-item {
	display: inline-block;
	margin: 0 .25em 0 0;
}

.field-label-inline .field-items .field-item+.field-item:before {
	--border-left: 1px #aaa solid;
	content: "•";
	color: #6bb4f6;
	margin-right: 0.25em;
}

.field-name-field-languages .field-items {
	max-width: 700px;
}

.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:
 */

.field { /* Wrapper for any field. */
}

/*
 * Field types (Core)
 */

.field-type-text {
}

.field-type-text-long {
}

.field-type-text-with-summary {
}

.field-type-image {
}

.field-type-file {
}

.field-type-taxonomy-term-reference {
}

.field-type-number-integer {
}

.field-type-number-decimal {
}

.field-type-number-float {
}

.field-type-list-text {
}

.field-type-list-boolean {
}

.field-type-list-integer {
}

.field-type-list-float {
}

/*
 * Field types (Contrib)
 */

.field-type-datetime { /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */
}

.field-type-node-reference {
}

.field-type-user-reference {
}

/*
 * Named fields
 */

.field-name-body {
}

.field-name-field-image {
}

.field-name-field-tags {
}

.field-name-field-FIELDNAME { /* Underscores in field name are replaced with dashes. */
}
