body#module-quickorder-quickorder #main,
body#module-quickorder-quickorder #content,
body#module-quickorder-quickorder #content-wrapper,
body#module-quickorder-quickorder #wrapper {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}
body#module-quickorder-quickorder #content {
	place-items: center;
}
body#module-quickorder-quickorder .quickorder-main {
	margin-top: 60px;
	width: 1340px;
}

body#module-quickorder-quickorder .quickorder-main h1 {
	text-align: center;
	font-size: 40px;
	color: #000;
	margin: 15px 0;
	margin-bottom: 40px;
	line-height: 1.4;

}

form#quickorder-form {
	border: 1px solid #D9DCDE;
	padding: 40px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	background: #F8F8F8;
}

form#quickorder-form label {
	font-size: 18px;
	font-weight: 400;
}
form#quickorder-form input {
	min-height: 50px;
	outline: none;
	border: 2px solid #D9DCDE;
	padding: 0 15px;
	font-size: 20px;
	font-weight: 500;
	color: #000;
}

form#quickorder-form button[type="submit"] {
	min-height: 50px;
	padding: 0 25px;
	background: #FAC902;
	color: #D9DCDE;
	border: 1px solid #D9DCDE;
	font-size: 20px;
	font-weight: 500;
	color: #000;
}

div.quickorder-product-card {
	border: 1px solid #D9DCDE;
	background: #F8F8F8;
	margin:10px 0;
	padding:15px 20px;
	display:flex;
	align-items:center;
	justify-content: space-between;
}
div#quickorder-result  div.quickorder-product-card {
	box-shadow: 0px 0px 3px 0px #00000052;
}
div.quickorder-product-card img {
	max-width: 150px;
	height: auto;
	/*mix-blend-mode: multiply;*/
}
div.quickorder-product-card div.mycol:first-child {
	display: flex;
	gap: 20px;
	max-width: 70% !important;
	width: 100% !important;
}
div.quickorder-product-card div.mycol:last-child {
	max-width: 30% !important;
	width: 100% !important;
}

div.quickorder-product-card div.mycol p {
	padding: 0;
	margin: 0;
	color: #000;
}
div.quickorder-product-card div.mycol:last-child {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
}
div.quickorder-product-card div.mycol:last-child p.total {
	color: #000 !important;
	font-size: 20px;
	font-weight: 700;
}
div.quickorder-product-card div.mycol:last-child div.quantity{ display:flex; gap:5px; align-items:center; }
div.quickorder-product-card div.mycol:last-child div.quantity p {
	color: #000 !important;
}
div.quickorder-product-card div.mycol:last-child div.quantitydiv {
	width: fit-content;
	background: #D9DCDE;
}
div.quickorder-product-card div.mycol:last-child div.quantitydiv button {
	background: none;
	border: none;
	padding: 8px;
	outline: none;
	color: #000;
}

div.quickorder-product-card div.mycol:last-child div.quantitydiv span {
	background: #fff !important;
	padding: 5px 12px;
}
div.quickorder-product-card div.mycol:last-child button[type='button'] {
	width: fit-content;
	background: red;
	border: none;
	color: #fff;
	padding: 5px;
}

@media (max-width: 992px) {
	body#module-quickorder-quickorder .quickorder-main h1 {
		font-size: 30px;
	}
	form#quickorder-form {
		flex-wrap: wrap;
		gap: 10px;
	}
	#quickorder-selected-list {
		margin-bottom: 30px;
	}
	body#module-quickorder-quickorder .quickorder-main {
		width: 90%;
	}

	form#quickorder-form input {
		width:100%;
	}
	form#quickorder-form input[type="number"] {
		width: calc(100% - 140px);
	}
	form#quickorder-form label:last-child {
		display: none;
	}
	form#quickorder-form label {
		text-align: left;
		width: 100%;
	}

	div.quickorder-product-card {
		flex-direction: column;
	}
	div.quickorder-product-card div.mycol:last-child,
	div.quickorder-product-card div.mycol:first-child {
		max-width: 100% !important;
	}
	div.quickorder-product-card div.mycol:last-child {
		display: flex;
		flex-direction: column;
		justify-content: end;
		align-items: end;
	}
	.qorder-remove-btn,
	.mycol {
		text-align: right;
	}

}