Modal

A modal is a popup window that is displayed on top of the current page.

<div class="modal">
  <div class="head-modal">
    <header class="title-modal">
      Do you want to delete this item ?
    </header>
    <button class="close">X</button>
  </div>
  <div class="body-modal">
    <p>Write here something</p>
  </div>
  <div class="footer-modal">
    <button class="btn btn-primary">Cancel</button>
    <button class="btn btn-danger">Delete</button>
  </div>
</div>