/* Ninja Forms Geposit Suggest – autocomplete dropdown */

.nf-geposit-dd {
	display: none;
	position: fixed;
	z-index: 100000;
	margin: 0;
	padding: 4px 0;
	list-style: none;
	max-height: 280px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #c7ccd1;
	border-radius: 6px;
	box-shadow: 0 6px 18px rgba( 0, 0, 0, 0.12 );
	font-size: 14px;
	line-height: 1.3;
	-webkit-overflow-scrolling: touch;
}

.nf-geposit-dd.is-open {
	display: block;
}

.nf-geposit-item {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 8px 12px;
	cursor: pointer;
	color: #1d2327;
}

.nf-geposit-item.is-active,
.nf-geposit-item:hover {
	background: #2271b1;
	color: #fff;
}

.nf-geposit-item.is-active .nf-geposit-meta,
.nf-geposit-item:hover .nf-geposit-meta {
	color: rgba( 255, 255, 255, 0.85 );
}

.nf-geposit-street {
	font-weight: 600;
}

.nf-geposit-meta {
	font-size: 12px;
	color: #646970;
}

.nf-geposit-msg {
	padding: 8px 12px;
	color: #646970;
	font-style: italic;
}
