/*
 * This css is used (in conjucntion with offcanvas.js) to style a side menu bar that scrolls on and off of the main canvas at the click of a button
 * the style is applied to the side bar below a certain width so is useful for responsive pages viewed on devices with small windows 
 * Style tweaks
 * --------------------------------------------------
 */
html,
body {
  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;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

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

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

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -100%; /* 12 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -100%; /* 12 columns */
  }

  .row-offcanvas-right.active {
    right: 100%; /* 12 columns */
  }

  .row-offcanvas-left.active {
    left: 110%; /* 12 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 100%; /* 12 columns */
  }

    p.pull-left {
        clear: both;
        width: 100%;
        margin-bottom: 10px;
    }

}
