@use 'mixins/mixins' as *;
@use 'mixins/var' as *;
@use 'common/var' as *;

@include b(empty) {
  // @include set-component-css-var('empty', $empty);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  padding: 24px;

  @include e(image) {
    width: 240px;

    img {
      user-select: none;
      width: 100%;
      height: 100%;
      vertical-align: top;
      object-fit: contain;
    }

    svg {
      color: getCssVar('color-neutral-6');
      fill: currentColor;
      width: 100%;
      height: 100%;
      vertical-align: top;
    }
  }

  @include e(description) {
    margin-top: 24px;
  }

  @include e(empty-message) {
    font-size: 14px;
    line-height: 18px;
    color: getCssVar('color-neutral-7');
  }

  @include e(bottom) {
    margin-top: 24px;
  }
}
