#ajax_listOfOptions {
	position:absolute;     /* Never change this one */
	max-width:300px;   /* Width of box */
	min-width:150px;
	width: auto;
	height:250px;  /* Height of box */
	overflow:auto; /* Scrolling features */
	border:1px solid var(--blue-dusty);      /* reddish border */
	background-color:#fff; /* White background color */
	text-align:left;
	z-index:100;
}

#ajax_listOfOptions div { /* General rule for both .optionDiv and .optionDivSelected */
	margin:6px;           
	padding:3px;
	cursor:pointer;
	font-size:1em;
}

#ajax_listOfOptions .optionDiv { /* Div for each item in list */
}

#ajax_listOfOptions .optionDivSelected { /* Selected item in the list */
	background-color:var(--blue-royal);
	color:#fff;
}

#ajax_listOfOptions_iframe {
	background-color:#F00;
	position:absolute;
	z-index:5;
}

@media (min-width: 576px) {
	#ajax_listOfOptions {
		max-width: 375px;
	}
	#ajax_listOfOptions div {
		margin: 3px;
	}
}