/* Center the successful order confirmation in a modal instead of scrolling the page. */
.order-confirmation-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10000;
  width: min(calc(100vw - 2rem), 30rem);
  max-height: calc(100dvh - 2rem);
  margin: 0;
  overflow: auto;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 100vmax rgb(15 23 42 / 58%), 0 24px 64px rgb(0 0 0 / 30%);
}

.order-confirmation-modal .form-success {
  font-size: 1.05rem;
}

.order-confirmation-modal .form-actions {
  margin-top: 1.25rem;
}

@media (max-width: 480px) {
  .order-confirmation-modal {
    width: calc(100vw - 1.5rem);
    padding: 1.25rem;
  }
}
