#checkout-success-show {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  h1 {
    margin: 1rem 0;
  }

  svg path {
    stroke: var(--color-success);
  }

  .actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
  }
}