body {
  margin: 0;
}
.bugless-panel {
  display: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  overflow-scrolling: touch;
  will-change: transform;
  position: fixed;
  background: #bcbcbc;
  height: 100%;
  width: 100%;
  z-index: 1000;
}
.bugless-panel.left {
  transform: translateX(-100%);
  left: 0;
  top: 0;
}
.bugless-panel.right {
  transform: translateX(100%);
  right: 0;
  top: 0;
}
.bugless-panel.bottom {
  transform: translateY(100%);
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}
.bugless-panel.top {
  transform: translateY(-100%);
  top: 0;
  margin: auto;
  left: 0;
  right: 0;
}
.inner:before,
.inner:after {
  display: table;
  content: "";
  line-height: 0;
}
.inner:after {
  clear: both;
}
.inner {
  min-height: calc(100% + 1px);
}
.animate {
  transition: transform 0.2s linear;
}
.bugless-backdrop {
  background: #000;
  opacity: 0;
  transition: opacity 0.5s linear;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
}
.bugless-backdrop.in {
  opacity: 0.5;
}
.iosfix {
  height: 101%;
  overflow: hidden;
}
