@import "variables";

.modal {

  z-index: #{$flexi-z-target - 2};

  &
  , .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  // default modals are hidden
  display: none;
  overflow-x: hidden;
  overflow-y: auto;

  > * {
    position: relative;
    display: block;
  }

  .modal-body {
    z-index: $flexi-z-target;
  }

  .modal-overlay {
    background: $flexi-modal-overlay-bg;
    display: block;
    z-index: #{$flexi-z-target - 1};
  }
}
