.checkout-stack {
  display: grid;
  gap: 12px;
  width: 100%;
}

.stripe-checkout-button {
  width: 100%;
  min-height: 62px;
  padding: 11px 18px;
  border: 1px solid rgba(16, 17, 22, 0.16);
  border-radius: 11px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: #fff;
  background: #111217;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 17, 22, 0.14);
  transition: transform .16s ease, background .16s ease, opacity .16s ease;
}

.stripe-checkout-button:hover {
  transform: translateY(-2px);
  background: #252733;
}

.stripe-checkout-button:disabled {
  opacity: .62;
  cursor: wait;
  transform: none;
}

.stripe-checkout-button strong {
  font-size: .98rem;
  letter-spacing: -.015em;
}

.stripe-checkout-button span {
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  font-weight: 560;
}

.paypal-method {
  width: 100%;
  min-height: 0;
}

@media (max-width: 700px) {
  .stripe-checkout-button {
    min-height: 58px;
  }
}
