/* Hide local file upload fields (input type=”file”) for selected content types */

input[type="file"] {
   display:none;
}

/* Make Banner labels non-clickable */

label[for^="edit-field-banner"] {
  cursor: default;
  pointer-events: none;     
  background: #ffffff;
}

/* Make Document labels non-clickable */

label[for^="edit-field-documents"] {
    cursor: default;
    pointer-events: none;
    background: #ffffff;
}

/* Make Teaser labels non-clickable */

label[for^="edit-field-teaser"] {
  cursor: default;
  pointer-events: none;     
  background: #ffffff;
}

/* Make Location labels non-clickable */

label[for^="edit-field-location"] {
  cursor: default;
  pointer-events: none;     
  background: #ffffff;
}

/* Style DFM file field widget */

div[class^="dfm-filefield-widget"] {
  margin-top: 7px;
  margin-bottom: 7px;
}