#bulk-order-wrapper {
	margin: 20px auto;
}

#bulk-order-wrapper input[type=text],
#bulk-order-wrapper input[type=number] {
	padding: 5px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--color-blue-2);
}

#bulk-order-wrapper input.kommissionsnummer {
	margin-top: 10px;
	margin-bottom : 10px;
}

#bulk-order-table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}

#bulk-order-table th, #bulk-order-table td {
	padding: 10px;
	text-align: left;
}

#bulk-order-table td:first-child {
	padding-left: 0;
}

#bulk-order-table td, #bulk-order-table th {
	width: 10%;
}
#bulk-order-table td:first-child, #bulk-order-table th:first-child {
	width: 70%;
}

#bulk-order-table th {
	background-color: #f4f4f4;
}

#bulk-order-table button {
	padding: 4px 8px;
	cursor: pointer;
}

body #add-to-cart-all {
	width: fit-content;
	margin: 1rem 0 0 auto;
	display: block;
}

#bulk-order-wrapper input[type=text].product-search-btn {
	width: 33.33%;
}


.ui-autocomplete {
	background: #fff;
	border: 1px solid #ccc;
	max-height: 200px;
	overflow-y: auto;
	font-family: Arial, sans-serif;
	font-size: 14px;
	z-index: 9999;
	border-radius: 4px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
	max-width: 33.33%;
}

.ui-autocomplete li {
	padding: 8px 12px;
	list-style: none;
	transition: 350ms ease;
}

.ui-autocomplete li.ui-state-focus, .ui-autocomplete li:hover {
	background-color: #008bcb;
	color: #fff;
}



#bulk-order-table tfoot th {
	background-color : #ffffff;
	border: 0;
}

#bulk-order-table tfoot tr:last-child th {
	background-color : #E0E0E0;
}




#bulk-order-table thead th {
	background-color: #ffffff;
	border: 0;
	padding-left: 0;
	padding-right: 0;
}

#bulk-order-table thead tr:first-child th {
	border-bottom: 1px solid #E0E0E0;

}

#bulk-order-table tr {
	vertical-align: bottom;
}

#bulk-order-table tbody td {
	border-bottom: 1px solid #E0E0E0;

}

#bulk-order-wrapper input[type=number] {
	margin-bottom: 10px;
}

#bulk-order-wrapper td.row-total p {
	padding-bottom: 17px;
}

#bulk-order-table button.remove {
	background-color: #E0E0E0;
	border-radius: 5px;
	color: #000;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	transition: 350ms ease;
}

#bulk-order-table button.remove:hover {
	background-color: #00305b;
	color: #ffffff;
}