/**
 * Fix margin issue with select2 4.1.0-rc.0
 */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  margin: 0;
}

/**
 * Override the width of select2 elements within the entity meta sidebar and
 * the off canvas dialog.
 */
.entity-meta .select2 {
  width: 100% !important;
}

/** 
 * Dialogs in modals have a z-index of 1260 
 */
.select2-container--open {
  z-index: 1500;
}
