/* Bootbox + Metronic: close button shows LineAwesome via ::before; Bootbox also outputs
   raw &times; (not in span), so Metronic’s .close span { display:none } does not remove it → double X. */
.bootbox.modal .modal-content .modal-header .bootbox-close-button.close {
  font-size: 0;
  line-height: 0;
}

/* Bootbox prepends the close control before .modal-title; Metronic expects title left, close right. */
.bootbox.modal .modal-content .modal-header {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
