:root {
  --off-canvas-width: 300px;
}

html, body, .off-canvas-wrapper {
  width: 100%;
  height: 100%;
}

.off-canvas-wrapper {
  overflow-x: hidden;
}
.off-canvas-wrapper .off-canvas {
  width: calc(100% + var(--off-canvas-width));
  height: 100%;
  min-height: 100%;
  margin-left: calc(var(--off-canvas-width) * -1);
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  transition: margin-left 300ms ease-in-out;
}
.off-canvas-wrapper .off-canvas.active {
  margin-left: 0;
}
.off-canvas-wrapper .off-canvas .off-canvas-nav {
  width: var(--off-canvas-width);
  height: 100%;
  min-height: 100%;
  padding: 20px;
  flex-grow: 0;
  flex-shrink: 0;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: -10px 0 10px -5px rgba(0, 0, 0, 0.3) inset;
}
.off-canvas-wrapper .off-canvas .off-canvas-content {
  position: relative;
  overflow: auto;
  flex-grow: 1;
}
.off-canvas-wrapper .off-canvas .off-canvas-content:not(.off-canvas-no-close).overlay::after {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 300ms ease-in-out, width 0s 300ms, height 0s 300ms;
}
.off-canvas-wrapper .off-canvas .off-canvas-content:not(.off-canvas-no-close).overlay.active::after {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 300ms ease-in-out;
}
.off-canvas-wrapper .off-canvas .off-canvas-content:not(.off-canvas-no-close)::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
}
.off-canvas-wrapper .off-canvas .off-canvas-content.active:not(.off-canvas-no-close)::after {
  background-color: transparent;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=bootstrap-off-canvas.css.map */
