/* Australian postcode autocomplete dropdown (quote-funnel delivery field).
   Paired with assets/scripts/postcode-autocomplete.js. */

.rama-pc-container {
	position: relative;
}

.rama-pc-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 100010; /* above the .gqf quote-funnel overlay (z-index 100000) */
	margin: 2px 0 0;
	padding: 4px 0;
	list-style: none;
	max-height: 240px;
	overflow-y: auto;
	background: #ffffff;
	border: 1px solid #d7cdba;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(25, 25, 20, 0.18);
}

.rama-pc-item {
	margin: 0;
	padding: 9px 14px;
	font-size: 15px;
	line-height: 1.3;
	color: #191914;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rama-pc-item.is-active,
.rama-pc-item:hover {
	background: #EE8028; /* brand orange */
	color: #ffffff;
}
