html,
body {
  margin: 0;
  padding: 0;
}

.abs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.fix {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.flex {
  display: flex;
}
.flex.inline {
  display: inline-flex;
}
.flex.col, .flex.cols, .flex.column, .flex.columns {
  flex-direction: row;
}
.flex.rows {
  flex-direction: column;
}
.flex > .start {
  justify-self: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.05);
}
.flex > .center {
  flex: 1;
}
.flex > .end {
  justify-self: flex-end;
}

.bjs-powered-by {
  opacity: 0;
  pointer-events: none;
}/*# sourceMappingURL=styles.css.map */