$component-identifier: '.overlay';

#{$component-identifier} {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparentize(#000000, .5);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;

  &__top-content {
    z-index: 10001;
    display: none;
    color: $color-light-text;
  }

  &-absolute {
    position: absolute;
  }

  &.active {
    display: flex;

    #{$component-identifier}__top-content {
      display: block;
    }
  }
}

$component-identifier: '';
