// Absolute Position Fill
.abs-fill {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

// Absolute Position Fill with display flex
.abs-flex {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
}

// Container Flush
.container-flush {
  @include make-container(0);
}

html.overlay{
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba($color: #000000, $alpha: .5);
  z-index: 999999;
  @include transition(
    background-color 300ms linear
  );
}
