@import 'main';

$overlay_dark_color: rgba(#000, .75);
$overlay_light_color: rgba(#fff, .85);

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: $overlay_dark_color;
  @include flexbox();
  @include align-items(center);
  @include justify-content(center);
  @include transition();
}

.light {
  background-color: $overlay_light_color;
}
