.basket-summary {
	display: flex;
	flex-direction: column;
	margin: 20px 0;
	gap: 2px;
	font-size: 0.85em;
}

.basket-line {
	display: grid;
	grid-template-columns: 28px 85px 1fr 5em 140px 6em;
	grid-template-rows: repeat(3, auto);
	grid-column-gap: 2px;
	grid-row-gap: 2px;
	align-items: center;
	justify-items: stretch;
	background-color: #e9e9e9;
	border-radius: 5px;
	padding: 5px;
}

.basket-line.totals {
	background-color: white;
}

.bkln-remove {
	grid-area: 2 / 1 / 3 / 2;
}

.bkln-thumb {
	grid-area: 2 / 2 / 3 / 3;
	text-align: center;
}

.bkln-main {
	grid-area: 2 / 3 / 3 / 4;
}
.bkln-main a {
	display: inline-block;
	margin-left: -2px;
	margin-bottom: 4px;
}

.bkln-uc {
	grid-area: 2 / 4 / 3 / 5;
	font-family: sans-serif;
}

.bkln-qty {
	grid-area: 2 / 5 / 3 / 6;
}
.bkln-qty .qty-control-minus,
.bkln-qty .qty-control-plus {
	background-color: #e9e9e9;
}
.bkln-qty .qty-control-minus:hover,
.bkln-qty .qty-control-plus:hover {
	background-color: #465f56;
}

.bkln-tt {
	grid-area: 1 / 3 / 4 / 6;
	text-align: right;
	margin-right: 20px;
}
.bkln-tv {
	grid-area: 1 / 6 / 4 / 7;
	font-weight: 600;
	font-family: sans-serif;
	font-size: 1.1em;
}

.bkln-lc {
	grid-area: 2 / 6 / 3 / 7;
	font-weight: 600;
	font-family: sans-serif;
	font-size: 1.1em;
}

.bkln-notices {
	grid-area: 1 / 1 / 2 / 7;
}

.bkln-footer {
	grid-area: 3 / 3 / 4 / 5;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 10px;
}


.qty-box {
	width: 4em;
}
.qty-control {
	display: inline-flex;
	gap: 5px;
}


.buttonBar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: flex-start;
}


.proceed {
	font-size: 0.9em;
	background-color: #e3e8e3;
	padding: 5px;
	border-radius: 10px;
	font-weight: 500;
}






@media (max-width: 1030px) {

	.basket-line {
		grid-template-rows: repeat(4, auto);
		grid-template-columns: 28px 1fr 5em 140px 5em;
	}

	.bkln-notices {
		grid-area: 1 / 1 / 2 / 6;
	}

	.bkln-remove {
		grid-area: 2 / 1 / 3 / 2;
		justify-self: self-end;
	}

	.bkln-thumb {
		grid-area: 0 / 0 / 0 / 0;
		display: none;
	}

	.bkln-main {
		grid-area: 2 / 2 / 3 / 6;
	}

	.bkln-uc {
		grid-area: 3 / 3 / 4 / 4;
	}

	.bkln-qty {
		grid-area: 3 / 4 / 4 / 5;
	}

	.bkln-lc {
		grid-area: 3 / 5 / 4 / 6;
	}

	.bkln-footer {
		grid-area: 4 / 2 / 5 / 6;
	}

	.bkln-tt {
		grid-area: 1 / 1 / 4 / 5;
	}

	.bkln-tv {
		grid-area: 1 / 5 / 4 / 6;
	}

	.buttonBar {
		flex-direction: column;
		row-gap: 2px;
		align-items: stretch;
	}

	.proceed {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}
