.nut-empty {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: $empty-padding;
  background-color: $empty-background-color;

  &-base {
    width: $empty-image-size;
    height: $empty-image-size;

    img,
    image {
      width: 100%;
      height: 100%;
    }
  }

  &-small {
    width: $empty-image-small-size;
    height: $empty-image-small-size;

    img,
    image {
      width: 100%;
      height: 100%;
    }
  }

  &-title {
    margin-top: $empty-title-margin-top;
    font-weight: $font-weight-bold;
    margin-bottom: $empty-title-margin-bottom;
    color: $color-title;
    font-size: $font-size-l;
    line-height: $empty-title-line-height;
  }

  &-description {
    color: $color-text;
    font-size: $font-size-s;
    line-height: $empty-description-line-height;
  }
  &-actions-base {
    display: flex;
    flex-direction: row;
    margin-top: 24px;
  }
  &-actions-small {
    display: flex;
    flex-direction: row;
    margin-top: 16px;
  }

  &-action {
    margin-right: 6px;
    margin-left: 6px;
  }
}
