:root {
  --aunt-empty-padding: var(--aunt-padding-lg) 0;
  --aunt-empty-image-width: calc(160 * var(--aunt-hd));
  --aunt-empty-image-height: auto;
  --aunt-empty-description-color: var(--aunt-gray-6);
  --aunt-empty-description-font-size: var(--aunt-font-size-md);
  --aunt-empty-description-line-height: var(--aunt-line-height-md);
  --aunt-empty-description-padding: 0 calc(60 * var(--aunt-hd));
  --aunt-empty-description-margin-top: var(--aunt-padding-md);
  --aunt-empty-bottom-margin-top: var(--aunt-padding-md);
}
.aunt-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: var(--aunt-empty-padding);
}
.aunt-empty__image {
  width: var(--aunt-empty-image-width);
  height: var(--aunt-empty-image-height);
}
.aunt-empty__image img {
  width: 100%;
  height: 100%;
}
.aunt-empty__description {
  margin-top: var(--aunt-empty-description-margin-top);
  padding: var(--aunt-empty-description-padding);
  color: var(--aunt-empty-description-color);
  font-size: var(--aunt-empty-description-font-size);
  line-height: var(--aunt-empty-description-line-height);
}
.aunt-empty__bottom {
  margin-top: var(--aunt-empty-bottom-margin-top);
}
