
section.payments article {
	max-width: calc( var(--micropayment_maxWidth) * 0.56 );
	margin: 0 auto;
}
section.payments div.flex {
	gap: 80px;
}
section.payments .flex .flexbox.text {
	max-width: 100%;
}
section.payments div.payments {
	display: flex;
	gap: 40px;
}
section.payments div.payments div.payment {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
section.payments div.payments div.payment:first-of-type,
section.payments div.payments div.payment:last-of-type {
	transform: translateY(-50%);
}
section.payments div.payments div.payment-text {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	min-width: 100%;
}
section.payments div.payments div.payment-text article {
	max-width: 600px;
	margin: 0 auto;
}
section.payments div.payments div.payment div.payment-inner {
	width: 100%;
	position: relative;
}
section.payments div.payments div.payment:not(.text) .subheadline {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateY(-50%) translateX(-50%);
	background: rgba( var(--micropayment_white), 1);
	padding: 0 8px;
	text-align: center;
	text-wrap: nowrap;
	margin-bottom: 24px;
}
section.payments.bg-color-light div.payments div.payment:not(.text) .subheadline {
	background: rgba(var(--micropayment_light), 1);
}
section.payments.bg-color-dark div.payments div.payment:not(.text) .subheadline {
	background: rgba( var(--micropayment_black), 1);
}
section.payments.bg-color-greeb div.payments div.payment:not(.text) .subheadline {
	background: rgba( var(--micropayment_green), 1);
}
section.payments div.payments div.payment ul {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
section.payments div.payments div.payment ul li {
	list-style: none;
}
section.payments div.payments div.payment ul li:focus-visible {
	border-radius: var(--micropayment_borderRadiusBigs);
}
section.payments div.payments div.payment ul li a {
	display: inline-flex;
}
section.payments div.payments div.payment ul li picture {
	--paymentPicture : 88px;
	height: var(--paymentPicture);
	width: var(--paymentPicture);
	box-shadow: var(--micropayment_cardShadow);
	border-radius: var(--micropayment_borderRadiusBigs);
	background: rgba( var(--micropayment_white), 1);
	overflow: hidden;
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
section.payments div.payments div.payment ul li picture.icon-darkmode {
	display: none;
}
.darkmode-active section.payments div.payments div.payment ul li picture.icon-darkmode {
	display: flex;
}
.darkmode-active section.payments div.payments div.payment ul li picture.icon-lightmode {
	display: none;
}
section.payments div.payments div.payment ul li a:hover picture {
	background: rgba( var(--micropayment_black), 1);
}
section.payments div.payments div.payment ul li picture img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0;
}
/*------------------*/
/* !PAYMENT SINGLE */
/*------------------*/
section.payments div.payments div.payment-block-type-single div.payment-inner {
	padding-top: 24px;
}
/*------------------*/
/* !PAYMENT CLUSTER */
/*------------------*/
section.payments div.payments div.payment-block-type-cluster div.payment-inner {
	border: 1px solid rgba( var(--micropayment_black), .1);
	border-radius: var(--micropayment_borderRadiusBigs);
	padding: 24px;
	display: inline-flex;
	width: initial;
}
section.payments div.payments div.payment-block-type-cluster div.payment-inner.cluster-link picture {
	cursor: pointer;
}
section.payments div.payments div.payment-block-type-cluster div.payment-inner a picture:hover,
section.payments div.payments div.payment-block-type-cluster div.payment-inner.cluster-link picture:hover {
	background: rgba( var(--micropayment_black), 1);
}
section.payments div.payments div.payment ul li a:hover picture img,
section.payments div.payments div.payment-block-type-cluster div.payment-inner.cluster-link picture:hover img {
	filter: brightness(0) invert(1);
}
@media ( max-width: 1200px ) {
	section.payments .flex .flexbox.text {
		max-width: 100%;
	}
	section.payments div.payments div.payment:first-of-type,
	section.payments div.payments div.payment:last-of-type {
		transform: initial;
	}
	section.payments div.payments {
		flex-direction: column;
		
	}
}
@media ( max-width: 768px ) {
	section.payments div.payments div.payment {
		justify-content: flex-start;
	}
	section.payments div.payments div.payment-block-type-cluster div.payment-inner {
		border-radius: 0;
		border-left: initial;
		border-right: initial;
		border-bottom: initial;
		padding: 24px 0;
		width: 100%;
		justify-self: flex-start;
	}
	section.payments div.payments div.payment:not(.text) .subheadline {
		transform: translateY(-50%);
		left: 0;
		padding: 0 8px 0 0;
	}
}
@media ( max-width: 768px ) {
	section.payments div.payments div.payment-block-type-cluster div.payment-inner {
		justify-self: center;
		display: flex;
		justify-content: center;
	}
	section.payments div.payments div.payment:not(.text) .subheadline {
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		padding: 0 8px;
	}
	section.payments div.payments div.payment ul {
		justify-content: center;
	}	
}