.pisell-pi-payment-result {
  min-height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 72px 24px 32px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 48%);
  display: flex;
  justify-content: center;
  color: var(--gray-900, #101828);
}

.pisell-pi-payment-result__card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pisell-pi-payment-result__icon {
  width: 120px;
  height: 120px;
  margin-bottom: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pisell-pi-payment-result__icon--querying {
  animation: pisell-pi-payment-result-spin 1s linear infinite;
}

.pisell-pi-payment-result__title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.pisell-pi-payment-result__description {
  margin: 12px 0 0;
  color: var(--gray-600, #475467);
  font-size: 15px;
  line-height: 24px;
}

@keyframes pisell-pi-payment-result-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
