/*
 * Style tweaks
 * --------------------------------------------------
 */
#wrap {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

/*
 * Off Canvas
 * --------------------------------------------------
 */
@media screen and (max-width: 767px) {
  .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -50%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -50%; /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 50%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 50%; /* 6 columns */
  }
  
  /* Full width off-canvas */
  .row-offcanvas-right.full
  .sidebar-offcanvas.full {
    right: -100%;
  }

  .row-offcanvas-left.full
  .sidebar-offcanvas.full {
    left: -100%;
  }

  .row-offcanvas-right.active.full {
    right: 100%;
  }

  .row-offcanvas-left.active.full {
    left: 100%;
  }

  .sidebar-offcanvas.full {
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  /* 75% width off-canvas */
  .row-offcanvas-right.most
  .sidebar-offcanvas.most {
    right: -75%;
  }

  .row-offcanvas-left.most
  .sidebar-offcanvas.most {
    left: -75%;
  }

  .row-offcanvas-right.active.most {
    right: 80%;
  }

  .row-offcanvas-left.active.most {
    left: 80%;
  }

  .sidebar-offcanvas.most {
    position: absolute;
    top: 0;
    width: 75%;
  }
  
}