/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .sliding {
  position: fixed;
  transition: all cubic-bezier(.19, 1, .22, 1);
  transition-duration: .4s;
  z-index: 9999;
}

.sliding-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sliding-drawer.drawer-open {
	z-index: 30;
}
.sliding-drawer.drawer-close {
	z-index: 0;
}";