.dropdown {
	position: relative;
	display: inline-block;    /* 👈 makes dropdowns sit next to each other */
	width: fit-content;
	margin-top: 0px; 
	margin-right: 0px;       /* space between dropdowns 2px */
	user-select: none;
}

#dropDownSize{
	width: 250px; /* dropdown size variation width*/ 
	margin-bottom: 10px;
}

#dropDownFilter{
	width: 200px; /* dropdown size variation width*/ 
	margin-bottom: 0px;
}

.dropdownCaption {
	position: relative;
	padding: 0.5rem;
	padding-right: 22px; /* 👈 add room for the arrow */ 
	border: 1px solid #ccc;
	cursor: pointer;
	background: #fff; 
	border-radius: 6px;
	/*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}


.dropdownCaption::after { /*insert content after the content of an HTML element*/
	content: "▼"; /* Unicode arrow */
	position: absolute;
	right: 10px; /* distance from right edge */
	top: 50%;
	transform: translateY(-50%); /* vertically center */
	font-size: 0.6em;
	pointer-events: none; /* lets clicks pass through */
}


.dropdownMenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	border: 1px solid #ccc;
	border-top: none;
	background: #fff;
	max-height: 300px;
	overflow-y: auto;
	border-radius: 0 0 6px 6px;
	/*box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
	z-index: 100;
	margin: 0px;
	padding: 0px;
	/*font-size: 1.0rem;*/
}

.dropdownMenu li {
	padding: 12px;
	cursor: pointer;
	list-style: none;
}

.dropdownMenu li:hover {
	background-color: #f0f0f0;
}

.dropdown.open .dropdownMenu {
	display: block;
}
