/*** Checkout-Overview*/
#checkout_overview>.step>div {
	padding: 11px;
}

#checkout_overview .step {
	border: 1px solid #ccc;
}

#checkout_overview .step:not(:last-child) {
	border-bottom: none;
}

#checkout_overview .step-head {
	background-color: #eee;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#checkout_overview .step-head p {
	margin-bottom: 0;
}

/*** Adressen */
#adresse p {
	margin-bottom: 2px;
}


/*** Warenkorb */
.warenkorb-row {
	padding-bottom: 11px;
	border-bottom: 1px solid #f6f6f6;
	margin-bottom: 11px;
}
.warenkorb-row:last-of-type {
	border-bottom: none;
}
.warenkorb-row .img {
	background-size: cover;
	background-position: center;
	width: 100%;
	max-width: 60px;
	height: 60px;
} 
/*** Bestellung */

#warenkorb_table_items {
	max-height: 50vh;
	overflow-y: auto;
	overflow-x: hidden;
}

#warenkorb_table_items .warenkorb-row {
	border: 1px solid #f6f6f6;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.bestellung_item:first-of-type {
	border-radius: 8px 8px 0 0;
}

.bestellung_item:last-of-type {
	border-radius: 0 0 8px 8px;
}


.bestellung_item_img {
	width: 140px;
	padding-right: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bestellung_item_img img {
	max-height: 100%;
	max-width: 100%;
}

.bestellung_item_produkt {
	width: calc(100% - 440px);
}

.bestellung_item_produkt h4 {
	font-weight: 600;
}

.bestellung_item_options {
	width: 140px;
}

.bestellung_item_rabattstaffel {
	font-size: 12px;
	color: #333;
}

.bestellung_item_rabatt {
	width: 60px;
	text-align: right;
}

.bestellung_item_rabatt span {
	background-color: #273444;
	color: #fff;
	padding: 6px;
	border-radius: 3px;
}

.bestellung_item_options input {
	text-align: center;
	width: 40px;
}

.bestellung_item_preis {
	width: 100px;
	text-align: right;
}



@media (max-width:1250px) {
	.bestellung_item {
		gap: 11px;
	}

	.bestellung_item_produkt {
		width: calc(100% - 151px);
	}
}

@media (max-width: 575px) {
	.bestellung_item_img {
		width: 100px;
		padding-right: 10px;
	}

	.bestellung_item_produkt {
		width: calc(100% - 111px)
	}

	.bestellung_item_options {
		width: 90px;
	}

	.bestellung_item_options .form-control,
	.bestellung_item_options .btn {
		font-size: 14px;
		padding: 4px;
	}

	.bestellung_item_rabatt {
		font-size: 14px;
		width: 40px
	}

	.bestellung_item_preis {
		font-size: 14px;
		width: 80px
	}
}


/*** Bestell-Formular */

#total_amount {
	font-size: 80%;
	margin-bottom: 20px;
}

#checkout_agb {
	background-color: #fff;
	height: 100px;
	overflow-y: auto;
	padding: 9px;
}

#checkout_agb * {
	line-height: 1.4;
	font-size: 0.75rem;
}

#zahlungsoptionen label {
	display: block;
	font-size: 16px;
	line-height: 32px;
}

#checkout_overlay {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	background-color: rgba(255, 255, 255, 0.6);
	z-index: 999;
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 3rem;
}

#bestellung_abgeschlossen, #checkout_empty_warenkorb {
	margin-bottom: 100px;
}