/*
 * Style tweaks
 * --------------------------------------------------
 */
html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}
body {
  padding-top: 70px;
}
footer {
  padding: 30px 0;
}

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

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

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

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -15%; 
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -15%; 
  }

  .row-offcanvas-right.active {
    right: 15%; 
  }

  .row-offcanvas-left.active {
    left: 15%; 
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;

    vertical-align:middle;
  
  }
}
@media screen and (max-width: 1500px) {
  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -20%; 
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -20%; 
  }
  .row-offcanvas-right.active {
    right: 20%; 
  }

  .row-offcanvas-left.active {
    left: 20%; 
  }
  
}

@media screen and (max-width: 1000px) {
  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -25%; 
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -25%; 
  }
  .row-offcanvas-right.active {
    right: 25%; 
  }

  .row-offcanvas-left.active {
    left: 25%; 
  }
  
}