/* See2Buy Israeli Cities Autocomplete */

.s2b-city-wrap {
	position: relative;
	display: block;
	width: 100%;
}

.s2b-city-wrap input {
	width: 100%;
	box-sizing: border-box;
}

.s2b-city-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99999;
	max-height: 300px;
	overflow-y: auto;
	margin-top: 2px;
	background: #fff;
	border: 1px solid #d5d5d5;
	border-radius: 3px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	direction: rtl;
	text-align: right;
}

.s2b-city-list.s2b-open {
	display: block;
}

.s2b-city-item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	padding: 9px 12px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
	color: #333;
}

.s2b-city-item + .s2b-city-item {
	border-top: 1px solid #f0f0f0;
}

.s2b-city-item:hover,
.s2b-city-item.s2b-active {
	background: #f4f4f4;
}

.s2b-city-item mark {
	background: #ffe58f;
	color: inherit;
	padding: 0 1px;
	border-radius: 2px;
}

.s2b-city-item .s2b-city-latin {
	font-size: 11px;
	color: #999;
	white-space: nowrap;
	direction: ltr;
}

.s2b-city-empty {
	padding: 10px 12px;
	color: #999;
	font-size: 13px;
}

.s2b-city-error {
	display: block;
	margin-top: 4px;
	color: #d33;
	font-size: 12px;
}

.s2b-city-invalid input {
	border-color: #d33 !important;
	box-shadow: 0 0 0 1px rgba(221, 51, 51, 0.25) !important;
}
