/*found in odoo/src/addons/web/static/lib/bootstrap/css/bootstrap.css*/
/*Those are the max width of different devices screen:*/
 /*- sm (small) : max width = 575.98px*/
 /*- md (medium) : max width = 767.98px*/
 /*- lg (large) : max width = 991.98px*/
 /*- xl (extra-large) : width over 991.98px*/


@media (max-width: 575.98px) {
  .hidden-sm {
      display: none;
      width: 0px;
  }
}

@media (max-width: 767.98px) {
  .hidden-md {
      display: none;
      width: 0px;
  }
}

@media (max-width: 991.98px) {
  .hidden-lg {
      display: none;
      width: 0px;
  }
}

