/**
 * @file
 * Commerce BS ATC modal sizing.
 *
 * The ATC / quick-view modal is vertically centered (.modal-dialog-centered),
 * so a tall product modal overflows off the top of the viewport — where it is
 * hidden behind the admin toolbar. Cap the modal height and let the body
 * scroll internally so the whole dialog always stays within the viewport.
 */
#commerceBsAtcModal .modal-content {
  max-height: 80vh;
}

#commerceBsAtcModal .modal-body {
  overflow-y: auto;
}
