@use 'mixins/mixins' as *;
@use 'common/var' as *;
@use 'sass:map';

@include b(overlay) {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  // z-index: 2000 !important;
  height: 100%;
  background-color: #{map.get($colors, 'neutral', 'light-9')}cc;
  overflow: auto;
  backdrop-filter: blur(2.5px);

  #{& + '-root'} {
    height: 0;
  }
}
