.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.dropdown-button {
	float: left;
	width: 100%;
	background: #fff;
	margin: auto 0;
	padding: 9px 16px;
	cursor: pointer;
	font-size: 14px;
	max-width: 340px;
	border-radius: 4px;
	border: 1px solid #d9d9d9;
	box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.02);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.dropdown-button .dropdown-label {
	float: left;
	color: #000000d9;
	max-width: 80%;
}
.dropdown-button .dropdown-quantity {
	float: left;
	margin-left: 8px;
	color: #00000073;
	padding: 0 6px;
	border-radius: 50px;
	border: 1px solid #d9d9d9;
	background: #fff;
}
.dropdown-button .bi {
	margin-top: 3px;
	margin-left: 8px;
	float: right;
	font-size: 14px;
	color: #000000d9;
}

.dropdown-menu {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 20px;
	background: #fff;
	min-width: 240px;
	word-wrap: break-word;
}
.dropdown-menu input[type='search'] {
	padding: 5px 10px;
	width: 100%;
	border: none;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.05);
}
.dropdown-menu input[type='search']:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}
.dropdown-menu ul {
	margin: 20px 0 0 0;
	max-height: 200px;
	overflow-y: auto;
	padding: 0;
}
.dropdown-menu ul li {
	list-style: none;
}

.checkbox-wrap {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-wrap input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: '\F584';
	font-family: 'bootstrap-icons', system-ui;
	position: absolute;
	color: rgba(0, 0, 0, 0.1);
	font-size: 20px;
	margin-top: -4px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
	.checkmark:after {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

/* Show the checkmark when checked */
.checkbox-wrap input:checked ~ .checkmark:after {
	display: block;
	content: '\F26C';
	font-family: 'bootstrap-icons', system-ui;
	color: #6328b3;
	border: none;
}
