.payment-options
{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	max-width: 520px;
	margin: 24px auto 72px;
	text-align: center;
}

.payment-option,
.payment-option#paypal_button
{
	box-sizing: border-box;
	width: 240px;
	min-height: 82px;
	margin: 0;
	padding: 0 24px;
	text-align: center;
}

.payment-option + .payment-option
{
	border-left: 1px solid #d7d7d7;
}

.payment-option-title
{
	min-height: 18px;
	margin-bottom: 12px;
	color: #222222;
	font: bold 14px Arial, Helvetica, sans-serif;
}

.payment-option form
{
	margin: 0;
}

.paypal-checkout input[type="image"]
{
	display: block;
	margin: 0 auto;
}

.stripe-checkout-button
{
	min-width: 190px;
	min-height: 44px;
	padding: 10px 20px;
	border: 1px solid #4f46c8;
	border-radius: 6px;
	background: #635bff;
	color: #ffffff;
	font: bold 15px Arial, Helvetica, sans-serif;
	cursor: pointer;
}

.stripe-checkout-button:hover,
.stripe-checkout-button:focus
{
	background: #5149e5;
}

.stripe-checkout-button:focus
{
	outline: 2px solid #171717;
	outline-offset: 2px;
}

@media (max-width: 560px)
{
	.payment-options
	{
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.payment-option + .payment-option
	{
		border-top: 1px solid #d7d7d7;
		border-left: 0;
		padding-top: 20px;
	}
}
