/* To fix DIVI css bug (overwriting the bootstrap classes) */
.modal {
  z-index: 999998;
}

.et_pb_column {
  z-index: unset !important;
}

/*
 * Divi's `.et_builder_inner_content` wrapper sets `position: relative` +
 * `z-index: 1`, which forms a local stacking context. WR modals rendered
 * inside that wrapper are then capped at the wrapper's stacking level no
 * matter how high `.modal` z-index is — Bootstrap's `.modal-backdrop`
 * attaches to <body> and beats the trapped modal even with all of WR's
 * push-to-999998 patches. Dropping the wrapper's z-index to auto removes
 * the stacking context entirely. Reproduced visibly on meine and psom
 * (both render their content tree inside `.et_builder_inner_content`);
 * kidsline / core / asas-crm don't use this wrapper and never hit it.
 */
.et_builder_inner_content {
  z-index: auto !important;
}


html {
  font-size: 16px !important;
}


.breadcrumb {
  padding: .75rem 1rem !important;
  list-style-type: none !important;
  font-size: 16px !important;
  background-color: #f4f4f4 !important;
  border-radius: 0 !important; /* QUICK AND DIRTY FIX */
}

.tooltip {
  z-index: 999999;
}
