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

/*
 * 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: 0;
  }

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

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

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

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

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 85%; /* 6 columns */
  }
  
  .form-row-custom {
      padding: 0 !important;
  }
  .custom-sidebar-offcanvas {
      padding-left: 30px !important;
      border-radius: 5px;
  }
  
.custom-sidebar-offcanvas {
      background-color: #DCDCDC;
    background-image:-moz-linear-gradient(top, #c6ec5f 0%, #c6ec5f 100%);
    background-image:linear-gradient(top, #c6ec5f 0%, #c6ec5f 100%);
    background-image:-webkit-linear-gradient(top, #c6ec5f 0%, #c6ec5f 100%);
    background-image:-o-linear-gradient(top, #c6ec5f 0%, #c6ec5f 100%);
    background-image:-ms-linear-gradient(top, #c6ec5f 0%, #c6ec5f 100%);
    background-image:-webkit-gradient(linear, right top, right bottom, color-stop(0%,#c6ec5f), color-stop(100%,#c6ec5f));
  }
}