
div.cart > div.wrapper {
	padding: 1em;
}

/* select the first child from the bottom buttons except the last one button */
div.cart .bottomButtons > div:not(:last-child) :first-child {
	margin-right: .5rem;
}

/* this rule is only for DP ipad mini */
@media screen and (width: 768px) {
	div.cart {
		margin-left: 7em;
	}
}


@media screen and (max-width: 480px) {
	div.cart > div.wrapper {
		padding: .5em;
	}
	
	div.cart .bottomButtons > div:not(:last-child) :first-child {
		margin-right: 0;
	}
}

/* shopping cart */
.quantity {
	position: relative;
	overflow: hidden;
}

.quantity input {
	margin: 0;
	text-align: center;
	width: 15px;
	padding: 0;
	float: right;
	color: #000;
	font-size: 20px;
	border: 0;
	outline: 0;
	background-color: #F6F6F6;
}

.quantity input.plus, .quantity input.minus {
	background-color: #ececec;
}

.quantity input.plus {
	border-bottom: 1px solid transparent;
}

.quantity input.minus {
	padding-bottom: 4px;
}

.quantity input.qty {
	position: relative;
	border: 0;
	width: 100%;
	height: 40px;
	padding: 10px 25px 10px 10px;
	text-align: center;
	font-weight: 400;
	font-size: 15px;
	border-radius: 0;
	background-clip: padding-box
}

.quantity .minus, .quantity .plus {
	line-height: 0;
	background-clip: padding-box;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-background-size: 6px 30px;
	-moz-background-size: 6px 30px;
	color: #bbb;
	font-size: 20px;
	position: absolute;
	height: 50%;
	border: 0;
	right: 0;
	padding: 0;
	width: 25px;
	z-index: 3
}

.quantity .minus:hover, .quantity .plus:hover {
	background-color: #dad8da
}

.quantity .minus {
	bottom: 0
}

.shopping-cart {
	margin-top: 20px;
}

.card.shopping-cart .card-body hr:last-child {
	display: none !important;
}

.card.shopping-cart b {
	font-weight: bold !important;
}

.card.shopping-cart div.quantity {
	margin: 0 1rem 0 .5rem;
}

/* --- Basket styles for orderlines prices --- */
.basket-itemrow {
	min-height: 80px;
	padding-bottom: .5em;
	border-bottom: 1px solid #e3e3e3;
}

.basket-itemrow .right {
	gap: 0.3em;
	align-items: center;
	justify-content: end;
}

.basket-discont-baseprice {
	text-decoration: line-through;
	font-size: 0.9rem;
}

.basket-discount-badge {
	right: 0;
	margin-right: .5em;
	opacity: 0.8;
}

.btn svg.icon {
	fill: var(--main-button-primary-font-color);
}

.basket-row-connection {
	background-color: #eeeeee7a;
}
