.tps_checkoutShared_2columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 8px;
	margin-bottom: 30px;
	margin-top: 30px;
}

.tps_checkoutShared_fullLine {
	grid-column: 1 / 3;
	position: relative;
}

.tps_checkoutShared_paymentButton {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	-moz-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
	background: #000;
	color: #fff;
	font-size: 15px;
	padding: 15px 0;
	text-transform: uppercase;
	outline: none;
	transition: 0.3s;
 }

.tps_checkoutShared_paymentButton:hover {
	background-color: #737373;
}

.tps_checkoutShared_paymentButtonTitle {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	font-size: 17px;
}
.tps_checkoutShared_paymentButtonTitle svg {
	transform: rotate(90deg);
	width: 12px;
	height: 12px;
	margin-left: 5px;
}

.tps_checkoutShared_paymentButtonDescription {
	display: block;
	font-size: 12px;
	margin-top: 5px;
	text-transform: initial;
}

.tps_checkoutShared_buttonLoader {
	display: none;
	border: 2px solid transparent;
	border-top: 2px solid #fff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	animation: tps_checkoutShared_buttonLoader_spin .5s linear infinite;
}

.tps_checkoutShared_buttonLoading .tps_checkoutShared_buttonLoader {
	display: block;
}

.tps_checkoutShared_buttonLoading .tps_checkoutShared_paymentButtonTitle,
.tps_checkoutShared_buttonLoading .tps_checkoutShared_paymentButtonDescription {
	display: none;
}

@keyframes tps_checkoutShared_buttonLoader_spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
