.empty-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.empty-page__img {
  width: 300px;
  height: 300px;
  margin-bottom: 24px;
}

.empty-page.empty-page__no-auth .empty-page__img{
  background: url("../img/empty-page_user.svg") center no-repeat transparent;
}

.empty-page.empty-page__auth .empty-page__img{
  background: url("../img/empty-page_admin.svg") center no-repeat transparent;
}

.page-template-persons .empty-page__no-auth .empty-page__img{
  background-image: url("../img/new_uikit/empty-page/persons_auth.svg");
}

.page-template-persons .empty-page.empty-page__auth .empty-page__img{
  background-image: url("../img/new_uikit/empty-page/persons_auth.svg");
}

.empty-page__text {
  font-family: 'Source Serif Pro';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #444;
}

.empty-page__text span{
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: block;
  margin-top: 8px;
}

.posts-create-new {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #444;
  background: url("../icon/empty/plus_icon.svg") left center no-repeat transparent;
  display: block;
  padding: 3px 0 3px 34px;
}

@media only screen and (max-width: 650px) {
  .empty-page__img {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
  }

  .empty-page.empty-page__no-auth .empty-page__img,
  .empty-page.empty-page__auth .empty-page__img {
    background-size: cover;
  }

  .empty-page__text {
    font-size: 18px;
    line-height: 23px;
  }

  .empty-page__text span {
    font-size: 14px;
    line-height: 18px;
  }
}