/* ******
 * Global configuration for mobile
* ****** */

/* **
    * Bootstrap 5 breakpoints:
    * 
    * xs: 0,
    * sm: 576px,
    * md: 768px,
    * lg: 992px,
    * xl: 1200px,
    * xxl: 1400px
    * 
***** */



/* Anything under Small */
@media (max-width: 576px) {
    
}


/* Anything under Medium */
@media (max-width: 768px) {

}


/* Anything under Large */
@media (max-width: 991.98px) {
    .offcanvas-collapse {
      position: fixed;
      top: 56px; /* Height of navbar */
      bottom: 0;
      left: 100%;
      width: 100%;
      padding-right: 1rem;
      padding-left: 1rem;
      overflow-y: auto;
      visibility: hidden;
      background-color: #343a40;
      transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    }
    .offcanvas-collapse.open {
      visibility: visible;
      transform: translateX(-100%);
    }
}


/* Anything under Extra Large */
@media (max-width: 1200px) {

}