/*** off canvas ***/

.row-offcanvas {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-out;
     -moz-transition: all 0.25s ease-out;
       -o-transition: all 0.25s ease-out;
          transition: all 0.25s ease-out;
}

.row-offcanvas.active {
  overflow: visible;
}

.row-offcanvas-right .sidebar-offcanvas {
  right: -210px;
}

.row-offcanvas-left .sidebar-offcanvas {
  left: -210px;
}

.row-offcanvas-right.active {
  right: 210px;
}

.row-offcanvas-left.active {
  left: 210px;
}

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

@media screen and (max-width: 319px) {
  .sidebar-offcanvas {
    width: 210px;
  }
}

@media screen and (min-width: 320px) and (max-width: 767px) {
  .row-offcanvas-right .sidebar-offcanvas {
    right: -270px;
  }
  .row-offcanvas-left .sidebar-offcanvas {
    left: -270px;
  }
  .row-offcanvas-right.active {
    right: 270px;
  }
  .row-offcanvas-left.active {
    left: 270px;
  }
  .sidebar-offcanvas {
    width: 270px;
  }
}

@media screen and (min-width: 768px) {
  .row-offcanvas {
    position: static;
    overflow: visible;
  }
  .sidebar-offcanvas {
    position: static;
  }
}

/*** end offcanvas ***/
