.success-payment-popup {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0;
  z-index: 11;
}

.success-payment-popup.hidden {
  display: none;
}

.success-payment-popup .screen {
  max-width: var(--max-screen-size);
  width: 90%;
  background-color: var(--color-white);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

.success-payment-popup img {
  margin-inline: auto;
}

.success-payment-popup .success-payment-btn {
  color: var(--color-white);
  width: 100%;
  border: none;
  border-radius: 8px;
  padding-block: 1rem;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  display: block;
}
