.checkout-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 2rem;
  align-items: start;
}
.checkout-page-card {
  padding: 2rem;
}
.checkout-payment-step {
  margin-top: 1.5rem;
}
.checkout-actions {
  margin-top: 1.5rem;
}
.checkout-summary .booking-payment-step__summary {
  margin-top: 0;
}
@media (max-width: 900px) {
  .checkout-page-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-continue-form{margin-top:1rem;}

.registration-portal--verified .checkout-page-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
}

.registration-portal--verified .checkout-page-copy {
  display: none;
}

.registration-portal--verified .checkout-page-card {
  width: 100%;
  max-width: none;
}
