@import 'main';

.centered {
  position: fixed;
  top: 0;
  left: 0;
  @include flexbox();
}

.horizontal {
  right: 0;
  width: 100%;
  @include justify-content(center);
}

.vertical {
  bottom: 0;
  height: 100%;
  @include align-items(center);
}