.paragraphs-subform .field--widget-paragraphs {
	margin-top: 3em;
	margin-bottom: 3em;
}
.filter-guidelines {
  display: none !important;
}
input[readonly], textarea[readonly] {
  background-color:rgb(235, 235, 235) !important;
}

/* CKeditor Adjustments */
.cke_combopanel { 
	width: 420px !important;
}

/* Bricks Custom */
/* bricks_inline.module
	line : 83
    ---- Replace ----
    $row_classes = ['ief-row-entity'];
    ---- With ----
    $entity_type = $entity->getEntityTypeId();
    $entity_bundle = $entity->bundle();
    $row_classes = [
      'tr-entity-type--'.$entity_type,
      'tr-entity-bundle--'.$entity_bundle,
      'ief-row-entity'
    ];*/
.ief-row-entity {
	background-color: #ffffff;
}
.tr-entity-type--page_parts.tr-entity-bundle--section_section {
	background-color: #d9d9d9;
}
.tr-entity-type--page_parts.tr-entity-bundle--section_column {
	background-color: #f7f7f7;
}