/* * Off Canvas * -------------------------------------------------- */
@media screen and (max-width: 768px) {
  body{
	height: 100%;
	background-color: #fff !important;
  	background-image:none !important;
  }
  .row-offcanvas {
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
	height:100%;
  }
  .row-offcanvas-left  .sidebar-offcanvas-left {
    left: -50%;
  }
  .row-offcanvas-left.active {
    left: 50%;
  }

  .row-offcanvas-right  .sidebar-offcanvas-right {
    right: -80%;
    display:none;
  }
  .row-offcanvas-right.active {
    right: 100%;
   /* height: 100%;*/
    /*transform: translate3d(-80%,0,0);*/
  }

  .row-offcanvas-right.active  .sidebar-offcanvas-right {
	display:inline-block;
	height:100%;
  }
  .sidebar-offcanvas-left {
    position: absolute;
    top: 0;
    width: 50%;
    margin-left: 12px;
  }

  .sidebar-offcanvas-right {
    position: absolute;
    top: 0;
    width: 80%;
    height: 100%;
    margin-right: 12px;
  }
}
