.vito-fast-pay {
	clear: both;
	grid-column: 1 / -1;
	grid-row: 2;
	width: 100%;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba( 20, 38, 31, .14 );
}

.vito-fast-pay__label {
	margin: 0 0 .7rem;
	color: #17251f;
	font-size: .86rem;
	font-weight: 700;
	letter-spacing: .02em;
}

.vito-fast-pay__buttons {
	display: grid;
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	gap: .7rem;
}

.vito-fast-pay__button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	padding: .8rem 1rem;
	border: 0;
	border-radius: 12px;
	box-shadow: 0 7px 18px rgba( 20, 38, 31, .12 );
	font: inherit;
	font-size: .94rem;
	font-weight: 750;
	line-height: 1.15;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.vito-fast-pay__button:hover:not(:disabled),
.vito-fast-pay__button:focus-visible:not(:disabled) {
	transform: translateY( -2px );
	box-shadow: 0 11px 24px rgba( 20, 38, 31, .18 );
	filter: saturate( 1.08 );
}

.vito-fast-pay__button:focus-visible {
	outline: 3px solid rgba( 36, 123, 86, .28 );
	outline-offset: 3px;
}

.vito-fast-pay__button--crypto {
	background: linear-gradient( 135deg, #12271e 0%, #237655 100% );
	color: #fff;
}

.vito-fast-pay__button--paypal {
	background: #ffc439;
	color: #003087;
}

.vito-fast-pay__button:disabled {
	box-shadow: none;
	cursor: not-allowed;
	filter: grayscale( .25 );
	opacity: .58;
}

.vito-fast-pay__icon,
.vito-fast-pay__paypal-mark {
	display: inline-grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border-radius: 50%;
	font-size: .9rem;
	font-weight: 800;
}

.vito-fast-pay__icon {
	background: rgba( 255, 255, 255, .16 );
}

.vito-fast-pay__paypal-mark {
	background: #003087;
	color: #fff;
	font-style: italic;
}

.vito-fast-pay__note {
	margin: .7rem 0 0;
	color: #62736b;
	font-size: .76rem;
	line-height: 1.45;
}

@media ( max-width: 560px ) {
	.vito-fast-pay__buttons {
		grid-template-columns: 1fr;
	}

	.vito-fast-pay__button {
		width: 100%;
	}
}
