@use '@funidata/fudis-core' as core;

.fudis-alert-group {
  @include core.z-index('alert');

  top: 0;
  left: 0;
  width: 100%;

  &__absolute {
    position: absolute;
  }

  &__fixed {
    position: fixed;
  }

  &__static {
    position: static;
  }

  @media (orientation: landscape) {
    width: 100%;
  }

  @media (orientation: portrait) {
    width: 100vw;
  }
}
