/* leerer Warenkorb Anfang*/

.warenkorbEmpty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.warenkorbEmpty .imgWarenkorb svg {
	min-width: 200px;
	max-width: 80%;
	height: auto;
	margin-bottom: 2em;
	--svgColor: var(--primaryColor);
}

.warenkorbEmpty button {
	min-width: 300px;
	max-width: 80%;
}

.warenkorbEmpty #saveWK {
	width: 300px;
	max-width: 80%;
	text-align: center;
	margin: 5em 0;
}

.warenkorbEmpty #saveWK button {
	width: 100%;
	margin-top: 2em;
}

#inputWKSaveName {
	display: none;
}

@media (max-width: 800px) {
	.warenkorbEmpty .imgWarenkorb {
		min-width: 100px;
	}

	.warenkorbEmpty #saveWK button {
		margin-top: 0.5em;
	}
}

/* leerer Warenkorb Ende*/



/* Allgemeine Angaben Warenkorb Anfang */
.warenkorb {
	margin: 3em 2em;
	display: flex;
	flex-wrap: wrap;

}

.warenkorb h1 {
	margin: 0;
}

.wkListing {
	width: calc(60% - 2em);
}

.wkCheckout {
	width: 40%;
}

.formWk {
	width: 100%;
}

.wkMain {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.warenkorbInfoIcon svg,
.warenkorbFrageIcon svg {
	width: 1.5em;
	height: 1.5em;
	cursor: pointer;
	--svgColor: var(--primaryColor)
}

.wkLoeschenButton svg {
	--svgColor: var(--primaryColor);
	width: 1.2em;
	height: 1.2em;
}

.buttonWeiterShoppen svg {
	--svgColor: var(--primaryColor);
}

@media (max-width: 1100px) {
	.warenkorb {
		justify-content: space-between;
	}

	.wkListing,
	.wkCheckout {
		width: 100%;
	}

	.wkMain {
		margin: 0;
	}
}

@media (max-width: 500px) {
	.warenkorb {
		margin: 3em 0.5em;
	}

	.buttonWeiterShoppen {
		order: 9;
		/*soll im mobilen ganz unten stehen*/
		width: 100%;
		margin-bottom: 2em;
	}

}

/* Allgemeine Angaben Warenkorb Ende */




/* Warenkorb Head Anfang */
.warenkorbUeberschrift {
	margin-bottom: 1.5em;
	width: 40%;
}

.warenkorbUeberschrift h1 {
	text-align: left;
}

.warenkorbUeberschrift span {
	color: var(--primaryColor)
}

/* Warenkorb Head Ende */


/* Warenkorb Artikeluebersicht Anfang */
.wkListing .row {
	display: grid;
	grid-template-columns: 20% auto 6em;
	grid-template-rows: auto 1fr;
	grid-gap: 0 2em;
	padding: 2em;
	margin: 2em 0;
	background-color: var(--softWhite);
	border-radius: 14px;
}

.wkListing .row:first-child {
	margin-top: 0;
}

.wkListing .row .artikelbild {
	max-width: 100%;
}

.wkListing .row .wkRowButtons {
	grid-row: 2;
	grid-column: 1;
	font-size: 0.8em;
}

.wkListing .row .wkRowButtons svg {
	--svgColor: var(--primaryColor);
}

.wkListing .row .wkRowText {
	grid-row: 1 /3;
}

.wkListing .row .wkRowArtikelbez {
	font-weight: 700;
	margin-bottom: 2em;
}

.wkListing .row .wkRowArtikelbez .modellBez {
	margin-bottom: 1em;
}

.wkListing .row .attributbez {
	font-weight: 700;
}

.wkListing .row .wkRowMengeneingabe {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 4px;
	position: relative;
}

.wkListing .row .wkRowMengeneingabe .mengeneinheit {
	position: absolute;
	bottom: -11px;
	right: -14px;
	font-size: 0.7em;
	background: white;
	padding: 0.5em;
	border-radius: 6px;
	padding-top: 3px;
	padding-bottom: 3px;
}

.wkListing .row .wkRowMengeneingabeControl {
	padding: 0.3em;
	display: flex;
	align-items: center;
}

.wkListing .row .wkRowMengeneingabe input {
	border: none;
	text-align: center;
	flex-basis: 30%;
	padding: 0;
	margin: 0;
}

.wkListing .row .wkRowMengeneingabeControl {
	max-width: 100%;
	flex-basis: 30%;
	cursor: pointer;
}

.wkListing .row .wkRowMengeneingabeControl.down {
	transform: rotate(180deg);
}

.wkListing .row .wkRowMengeneingabeControl svg {
	--svgColor: var(--primaryColor);
	;
}

.wkListing .row .wkRowMengeFest {
	text-align: center;
}

.wkListing .row .gesamtsummePos {
	font-weight: 700;
	margin-bottom: 1.5em;
	text-align: right;
}

.wkListing .row .stoffInfo {
	font-weight: 700;
	display: flex;
	align-items: center;
	font-style: italic;
	margin: 0.5em 0;
	cursor: pointer;
}

.wkListing .row .stoffInfo img {
	margin-right: 0.5em;
}

@media (max-width: 700px) {
	.wkListing {
		padding: 0;
		grid-gap: 0;
	}

	.wkListing .row {
		grid-template-columns: 30% auto;
		grid-template-rows: auto 1fr auto;
		padding: 0;
		padding-top: 2em;
		grid-gap: 0;
	}

	.wkListing .row .wkRowWrapperPreis {
		grid-column: 1/3;
		grid-row: 3;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1em;
		background-color: var(--shadowLightgray);
		margin-top: 1em;
		border-radius: 0 0 14px 14px;
	}

	.wkRowArtikelbild,
	.wkRowButtons,
	.wkRowText {
		padding: 0 1em 0em 2em;
	}

	.wkListing .row .gesamtsummePos {
		margin: 0;
		order: 2;
	}
}

@media (max-width: 500px) {
	.wkListing .row {
		font-size: 0.75em;
	}

	.wkRowArtikelbild,
	.wkRowButtons,
	.wkRowText {
		padding: 0 0.5em 0em 0.5em;
	}

	.wkListing .row .wkRowButtons {
		margin-top: 2em;
	}

	.warenkorbUeberschrift {
		width: 100%;
	}
}

/* Warenkorb Artikeluebersicht Ende */


/* Warenkorb Bestelluebersicht Zusammenfassung Anfang */
.wkBestellzusammenfassungBox {
	border: 2px solid black;
	border-radius: 14px;
}

.wkBestellzusammenfassungBox .wkBestellzusammenfassung {
	padding: 1em;
}

.wkBestellzusammenfassungBox button {
	width: 100%;
	padding: 0.5em;
	border-radius: 0 0 11px 11px;
	font-size: 1.375em;
}

.wkBestellzusammenfassungBox .wkBestellzusammenfassungRow {
	display: flex;
	justify-content: space-between;
	padding: 1em 0;
}

.wkBestellzusammenfassungBox .wkBestellzusammenfassungRow .bez {
	font-weight: 500;
}

.wkBestellzusammenfassungBox .wkBestellzusammenfassungRow .highlightText {
	color: var(--primaryColor);
}

.wkBestellzusammenfassungBox .wkBestellzusammenfassungRow .zusammenfassungPreis {
	flex-basis: 5em;
	text-align: right;
	font-weight: 500;
}

.wkBestellzusammenfassungBox .wkBestellzusammenfassungRow .zusammenfassungErklaerung,
.wkBestellzusammenfassungBox .wkBestellzusammenfassungRow .hinweisMwst {
	font-size: 0.75em;
	margin-top: 0.3em;
}

.wkBestellzusammenfassungBox .wkBestellzusammenfassungGesamt {
	border-top: 2px solid var(--lightGray);
}

.wkBestellzusammenfassungBox .zusammenfassungBezSumme,
.wkBestellzusammenfassungBox .zusammenfassungBezService {
	font-weight: 500;
	text-transform: uppercase;
}

/* Warenkorb Bestelluebersicht Zusammenfassung Ende */


/*externe Zahlarten Start*/
.extZahlartOder {
	font-weight: 500;
	margin-right: 1em;
}

.amazonBoxPay,
.paypalExpressBox {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-template-rows: 1fr 1fr;
	align-items: center;
	justify-content: center;
	max-width: 70%;
	margin: 2em auto 1em auto;
}

.wrapperAmazonPayButton,
.amazonPayInfo,
#paypal-button {
	width: 300px;
}

.amazonPayInfo,
.bestellvorgangInfo {
	grid-column: 2;
	display: flex;
	align-items: center;
}

.amazonAufpreis {
	font-size: 0.75em;
}

.amazonOder {
	grid-row: 1 /3;
}

@media (max-width: 500px) {

	.amazonBoxPay,
	.paypalExpressBox {
		grid-template-columns: auto;
		grid-template-rows: auto;
	}

	.amazonPayInfo,
	.bestellvorgangInfo {
		grid-column: auto;
	}

	.amazonOder {
		grid-row: auto;
	}

	.extZahlartOder {
		text-align: center;
		margin-right: 0;
		margin-bottom: 0.5em;
	}
}

/*externe Zahlarten Ende*/


/*Bestellvorgang Info Start*/

.bestellvorgangInfo {
	display: flex;
	align-items: center;
	margin: 0.5em 0;
	font-size: 0.9rem;
}

.bestellvorgangInfo:before {
	content: "!";
	border-radius: 100%;
	border: 1px solid #707070;
	color: #444444;
	box-shadow: 0px 3px 6px #00000029;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 1rem;
	display: flex;
	font-weight: 600;
	margin: 0 0.8em;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bestellvorgangInfo.hoverHinweis .hoverHinweisText {
	text-decoration: underline;
}

.bestellvorgangInfo.hoverHinweis:after {
	content: url(/bilder/pfeil-rechts.svg);
	margin-left: 1em;
}

/*Bestellvorgang Info Ende*/


/* WK speichern/laden Anfang */
.formWkSpeichernLaden {
	margin: 2em 0;
}

.wrapperInputWkSpeichernLaden {
	display: flex;
	align-items: center;
}

.wrapperInputWkSpeichernLaden input {
	max-width: 300px;
}

.wrapperInputWkSpeichernLaden button {
	margin: 0 1em;
}

.wrapperInputWkSpeichernLaden input,
.wrapperInputWkSpeichernLaden button {
	height: 3em;
}

.ueberschriftWkSpeicherLaden {
	display: flex;
	align-items: center;
}


.feedbackSaveWk {
	padding: 1em;
	margin: 1em 0;
	border: 1px solid black;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feedbackSaveWk.error-box {
	color: red;
	border: 1px solid red;
	font-weight: 500;
}

@media (max-width: 700px) {
	.wrapperInputWkSpeichernLaden {
		flex-direction: column;
	}

	.wrapperInputWkSpeichernLaden input,
	.wrapperInputWkSpeichernLaden button {
		max-width: 100%;
		width: 100%;
		margin: 0.5em 0;
	}



	.wkListing .row .wkRowMengeneingabe .mengeneinheit {
		position: static;
		font-size: 1em;
	}
}

/* WK speichern/laden Ende */