

.pkg-base-empty-placeholder {
  --image-placeholder: 5rem;
  margin: 20px auto;
  max-width: 552px;
  padding: 50px;
  box-shadow: 0px 2px 4px #00000014;
  border: 1px solid #DBDBDB;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pkg-base-empty-placeholder .img-placeholder {
  width: var(--image-placeholder);
  height: var(--image-placeholder);
}

.pkg-base-empty-placeholder .img-placeholder * {
  background-size: contain;
}

.pkg-base-empty-placeholder .img-placeholder .img {
  width: 100%;
  height: 100%;
}

.pkg-base-empty-placeholder .img-placeholder .icon {
  font-size: var(--image-placeholder);
}

.pkg-base-empty-placeholder .primary-text {
  font-size: 1.5rem;
  color: var(--package-dark-primary-color);
}

.pkg-base-empty-placeholder .secondary-text {
  font-weight: normal;
  color: #5c6f7c;
  font-size: 0.875rem;
  padding: 0px 25px;
}

@media (max-width: 820px) {
  .pkg-base-empty-placeholder {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .pkg-base-empty-placeholder {
    padding: 10px;
  }
}