/*-------*/
/* OFFER */
/*-------*/
section.micropayment.offer div.content > div.flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0px;
}
section.micropayment.offer div.text article,
section.micropayment.offer div.assets.form {
	max-width: calc( var(--micropayment_maxWidth) * 0.4 );
	flex: 1 1 100%;
	display: block;
	width: 100%;
}
section.micropayment.offer div.text article {
	text-align: center;
}
section.micropayment.offer div.text article .buttons {
	justify-content: center;
}
section.micropayment.offer div.assets.form {
	max-width: 800px;
}
section.micropayment.offer div.steps {
	position: relative;
	padding: 24px;
}
section.micropayment.offer div.step {
	padding: 24px;
	background: rgba( var(--micropayment_white), 1);
	border-radius: var(--micropayment_borderRadius);
	box-shadow: var(--micropayment_boxShadow);
	display: none;
	border: 1px solid rgba( var(--micropayment_white), 1);
	position: relative;
	z-index: 9;
}
section.micropayment.offer div.step.active {
	display: block;
}
section.micropayment.offer div.step.success {
	border-color: var(--micropayment_success);
	color: var(--micropayment_success);
	background: var(--micropayment_successLight);
}
section.micropayment.offer div.step.success h2,
section.micropayment.offer div.step.success p {
	color: var(--micropayment_success);	
}
section.micropayment.offer div.step.error {
	border-color: var(--micropayment_error);
	color: var(--micropayment_error);
	background: var(--micropayment_errorLight);
}
section.micropayment.offer div.step.error h2,
section.micropayment.offer div.step.error p {
	color: var(--micropayment_error);	
}
section.micropayment.offer div.step.info {
	border-color: var(--micropayment_info);
	background: var(--micropayment_infoLight);
}
section.micropayment.offer div.step.info h2,
section.micropayment.offer div.step.info p {
	color: var(--micropayment_blue);	
}
section.micropayment.offer div.alert {
	display: none;
}
section.micropayment.offer div.step h3 {
	padding: 24px 0 8px;
	text-align: center;
	color: var(--micropayment_textColor);
}
section.micropayment.offer div.step p {
	text-align: center;
	color: rgba(var(--micropayment_black), 0.6);
}
section.micropayment.offer div.step div.card {
	padding: 0;
	margin-bottom: 24px;
}
section.micropayment.offer div.step div.flex{
	max-width: inherit;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 -12px;
}
section.micropayment.offer div.step div.flex.buttons {
	margin: 0;
}
section.micropayment.offer div.step div.flex div.flexbox.box {
	max-width: 33.3%;
	min-width: 33.3%;
}
section.micropayment.offer div.step div.flex.presets div.flexbox {
	max-width: 25%;
	min-width: 25%;
}
section.micropayment.offer div.step div.flex div.flexbox.row {
	padding: 0;
	max-width: 100%;
	min-width: 100%;
	position: relative;
	text-align: left;
	border: none;
}
section.micropayment.offer div.step div.card div.flexbox.text{
	display: flex;
	flex-direction: column;
	padding: 8px 12px;
	width: 100%;
}
section.micropayment.offer div.step div.card div.flexbox.box {
	width: 100%;
	margin: 0;
	padding: 12px;
	border: none;
	box-shadow: none;
}
section.micropayment.offer div.step div.card div.flexbox.box label {
	border-radius: var(--micropayment_borderRadius);
	border: 2px solid rgba( var(--micropayment_black), 0.1);
	width: 100%;
	height: 100%;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	cursor: pointer;
	text-align: left;
}
section.micropayment.offer div.step div.card div.flexbox.box label:hover {
	border-color:  rgba( var(--micropayment_black), 1);
}
section.micropayment.offer div.step div.card div.flexbox.box label .h3 {
	padding-bottom: 8px;
}
section.micropayment.offer div.step div.flex.presets div.flexbox label {
	padding: 8px;
}
section.micropayment.offer div.step div.card div.flexbox.box label.checked,
section.micropayment.offer div.step div.card div.flexbox.box label.checked .h3 {
	border-color: rgba( var(--micropayment_black), 1);
	background: rgba( var(--micropayment_black), 1);
	color: rgba( var(--micropayment_white), 1);

}
section.micropayment.offer div.step div.card div.flexbox.box .visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.flexbox.checkbox > input.visually-hidden:focus-visible + label {
	outline: 2px solid rgba( var(--micropayment_primary), 1);
	outline-offset: 2px; /* Etwas Abstand zum Rand */
	border-color: rgba( var(--micropayment_primary), 1);
}
.flexbox.checkbox > input.visually-hidden:checked + label {
	background-color: rgba( var(--micropayment_black), 1);
	border-color: rgba( var(--micropayment_primary), 1);
}
.flexbox.checkbox > input.visually-hidden:checked + label * {
	color: rgba( var(--micropayment_white), 1);
}
.flexbox.checkbox > label:hover {
	border-color: rgba( var(--micropayment_primary), 1);
}
section.micropayment.offer div.step div.card div.flexbox.error label {
	color: var(--micropayment_error);
	border-color: var(--micropayment_error);
}
section.micropayment.offer div.step div.card div.flexbox.checkbox.error label,
section.micropayment.offer div.step div.card div.flexbox.radiopl.error label {
	background: var(--micropayment_errorLight);
}
section.micropayment.offer div.step div.flex div.flexbox.row label {
	font-size: 12px;
	line-height: 16px;
	cursor: pointer;
	text-align: left;
	border: none;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 8px 12px 8px 32px;
	display: inline-block;
}
section.micropayment.offer div.step div.flex div.flexbox.box.row label input {
	position: absolute;
	left: 20px;
	top: 20px;
	display: block;
}
section.micropayment.offer div.step div.card div.flexbox.error input,
section.micropayment.offer div.step div.card div.flexbox.error select {
	border-color: var(--micropayment_error);
	background: var(--micropayment_errorLight);
}
section.micropayment.offer div.step div.card div.flexbox.headline {
	width: 100%;
	min-width: 100%;
	font-weight: 500;
	padding: 24px 12px 0 12px;
}
section.micropayment.offer div.step div.card div.flexbox.box label picture,
section.micropayment.offer div.step div.card div.flexbox.box label i {
	display: flex;
	justify-content: center;
	padding-bottom: 12px;
}
section.micropayment.offer div.step div.card div.flexbox.box label picture img,
section.micropayment.offer div.step div.card div.flexbox.box label i {
	height: 40px;
	width: auto;
}
section.micropayment.offer div.step div.card div.flexbox.box label i {
	height: auto;
	text-align: center;
	font-size: 40px;
	line-height: 40px;
}
section.micropayment.offer div.step div.card div.flexbox.text.top.center label {
	text-align: center;
	justify-content: center;
}
section.micropayment.offer div.step div.card div.flexbox.text.append,
section.micropayment.offer div.step div.card div.flexbox.text.prepend {
	flex-direction: row;
	justify-content: center;
}
section.micropayment.offer div.step div.card div.flexbox.text.append label {
	order: 999;
	background: rgba(var(--micropayment_light), 1);
	padding: 0 8px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: auto;
	border-radius: 0 var(--micropayment_borderRadius) var(--micropayment_borderRadius) 0;
}
section.micropayment.offer div.step div.card div.flexbox.text.append input {
	border-radius: var(--micropayment_borderRadius) 0 0 var(--micropayment_borderRadius);
}
section.micropayment.offer div.step div.card div.flexbox.text.prepend label {
	border-radius: var(--micropayment_borderRadius) 0 0 var(--micropayment_borderRadius);
}
section.micropayment.offer div.step div.card div.flexbox.text.prepend input {
	border-radius: 0 var(--micropayment_borderRadius) var(--micropayment_borderRadius) 0;
}
section.micropayment.offer div.step div.card div.flexbox.textarea {
	padding: 8px 12px;
}
section.micropayment.offer div.step div.card div.flexbox.textarea textarea {
	width: 100%;
	height: 124px;
}
section.micropayment.offer div.step div.card div.flexbox.textarea.error textarea {
	border-color: var(--micropayment_error); 
}
section.micropayment.offer .vali {
	color: var(--micropayment_error);
}
@media ( max-width: 768px ) {
	section.micropayment.offer div.step div.flex {
		flex-direction: row;
	}
	section.micropayment.offer div.step div.flex div.flexbox {
		max-width: 100%;
		text-align: left;
	}
	section.micropayment.offer div.step div.flex.buttons {
		justify-content: flex-end;
		width: 100%;
		padding: 0 12px;
	}
	section.micropayment.offer div.assets.form {
		order: 99;
	}
}
@media ( max-width: 589px ) {
	section.micropayment.offer div.step div.flex div.flexbox {
		max-width: inherit;
	}
	section.micropayment.offer div.step div.flex.buttons,
	section.micropayment.offer div.step div.flex {
		flex-direction: row;
	}
	section.micropayment.offer div.step div.flex.presets div.flexbox {
		max-width: 50%;
		min-width: 40%;
	}
	section.micropayment.offer div.step div.flex div.flexbox.box {
		max-width: 100% !important;
		min-width: 100% !important;
	}
	section.micropayment.offer div.step div.flex div.flexbox.box.checkbox.row {
		max-width: 100%;
		min-width: 100%;
	}
	section.micropayment.offer div.step div.flex.buttons {
		flex-wrap: nowrap;
	}
	section.micropayment.offer div.step div.flex.buttons .flexbox + .flexbox {
		padding: 0;
	}
	section.micropayment.offer div.step div.card div.flexbox.text {
		min-width: 100% !important;
		max-width: 100% !important;
	}
}
/*-------------*/
/* PROCESS BAR */
/*-------------*/
div.processBar {
	position: relative;
	margin: 0 0 24px 0;
}
div.processBar div.text {
	text-align: right;
	font-size: 12px;
	opacity: 0.6;
}
div.processBar div.processBarLine {
	width: 100%;
	position: relative;
	border-radius: var(--micropayment_borderRadius);
	height: 6px;
	background: rgba(var(--micropayment_light), 1);
	overflow: hidden;
}
.bg-color-light div.processBar div.processBarLine {
	background: rgba( var(--micropayment_white), 1);
}
div.processBar div.processBarLine div.fill {
	background: rgba( var(--micropayment_primary), 1);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	border-radius: var(--micropayment_borderRadius);
	transition: var(--micropayment_transition);
}
/*-------------------*/
/* !STEPS BACKGROUND */
/*-------------------*/
section.micropayment.offer div.steps picture.bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	border-radius: var(--micropayment_borderRadius);
}
section.micropayment.offer div.steps picture.bg img {
	width: 100%;
	height: 100%;
	border-radius: var(--micropayment_borderRadius);
	object-fit: cover;
}
/*----------*/
/* !CAPTCHA */
/*----------*/
section.micropayment.offer div.step .rd-captcha {
	border: 2px solid rgba( var(--micropayment_black), 0.1);
	border-radius: var(--micropayment_borderRadius);
}
@media ( max-width: 768px ) {
	section.micropayment.offer div.step .rd-captcha {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}	
}