/*
 * Style tweaks
 * --------------------------------------------------
 */
html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}
 

/*
 * Off Canvas
 * --------------------------------------------------
 */


	 @media screen and (max-width: 768px) {
		 
		 
  .row-offcanvas {
    /*position: relative;*/
	position:absolute;
	width: 276px;
	z-index:9999;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
  right: -261px;
  }

  .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 */
   right:25px;
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    margin-top: 51px;
    top: 0;
    width: 50%;
  }
}
