.rwz-search-form {
	width: 100%;
	position: relative;
	padding: 24px;
	margin: 0;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.rwz-search-inner {
	display: flex;
	align-items: stretch;
	gap: 12px;
	width: 100%;
}

.rwz-type-select,

.rwz-search-input {
	border-color: #dcdcdc;
	background-color: #fff;
}

.rwz-type-select,
.rwz-search-input,
.rwz-search-button {
	min-height: 48px;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	font-size: 15px;
}

.rwz-type-select {
	width: 180px;
	padding: 0 12px;
	background: #fff;
}

.rwz-type-select:focus,
.rwz-search-input:focus {
	border-color: #009FE3;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 159, 227, .12);
}

.rwz-input-wrap {
	position: relative;
	flex: 1;
}

.rwz-search-input {
	width: 100%;
	padding: 0 14px;
	background: #fff;
}

.rwz-search-button {
	padding: 0 24px;
	cursor: pointer;
	border: 0;
	background: #f58200;
	border-radius: 4px;
	transition: background .2s ease;
	color: #fff;
	font-weight: 600;
}

.rwz-search-button:hover {
	background: #e87500;
}

/* Suggestions */
.rwz-suggestions {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 6px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
	overflow: hidden;
}

.rwz-suggestion-item {
	display: flex !important;
	align-items: center;
	gap: 13px;
	width: 100%;
	padding: 13px 14px !important;
	border: 0 !important;
	border-radius: 6px;
	background: #fff !important;
	color: #222 !important;
	text-align: left;
	cursor: pointer;
	transition: background .2s ease;
}

.rwz-suggestion-item + .rwz-suggestion-item {
	margin-top: 2px;
}

.rwz-suggestion-item:hover,
.rwz-suggestion-item:focus {
	background: #f3f8fb !important;
	color: #222 !important;
}

.rwz-suggestion-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #eef7fc;
	color: #0096db;
}

.rwz-suggestion-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.rwz-suggestion-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.25;
}

.rwz-suggestion-label {
	color: #222 !important;
	font-size: 15px;
	font-weight: 700;
}

.rwz-suggestion-meta {
	margin-top: 3px;
	color: #666 !important;
	font-size: 13px;
	font-weight: 500;
}

.rwz-suggestion-item--object .rwz-suggestion-icon {
	background: #fff2e8;
	color: #f58220;
}

.rwz-suggestion-item--place .rwz-suggestion-icon {
	background: #eef7fc;
	color: #0096db;
}

.rwz-suggestion-item--province .rwz-suggestion-icon {
	background: #f3e8ff;
	color: #7c3aed;
}

.rwz-suggestion-item--street .rwz-suggestion-icon {
	background: #f1f5f9;
	color: #334155;
}

.rwz-suggestion-item--postcode .rwz-suggestion-icon {
	background: #eef9f2;
	color: #2f9e44;
}

.rwz-no-suggestions {
	padding: 14px 16px;
	color: #555;
	font-size: 14px;
	background: #fff;
}

/* Results heading */
.rwz-results-heading {
	display: flex;
	align-items: center;
	gap: 22px;

	margin: 0;
	padding: 24px 28px;

	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 8px;

	box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.rwz-results-heading__icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 64px;
	height: 64px;

	flex-shrink: 0;

	background: #eef8fd;
	border-radius: 50%;
	color: #009FE3;
}

.rwz-results-heading__icon svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.rwz-results-heading__content {
	flex: 1;
}

.rwz-results-heading__label {
	display: block;
	margin-bottom: 4px;

	color: #777;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.rwz-results-heading h1 {
	margin: 0;

	color: #009FE3;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 700;
}

.rwz-results-heading p {
	margin: 8px 0 0;

	color: #666;
	font-size: 16px;
}

.rwz-results-heading p strong {
	color: #009FE3;
	font-weight: 700;
}

/* Pagination */
nav.rwz-pagination {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 40px 0;
	flex-wrap: wrap;
}

nav.rwz-pagination a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	background: #fff;
	color: #333 !important;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: all .2s ease;
}

nav.rwz-pagination a:hover,
nav.rwz-pagination a.active {
	background: #0096db;
	border-color: #0096db;
	color: #fff !important;
}

nav.rwz-pagination .rwz-pagination-prev,
nav.rwz-pagination .rwz-pagination-next {
	padding: 0 18px;
	min-width: auto;
}

.rwz-pagination-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 42px;
	color: #999;
	font-weight: 700;
}

@media (max-width: 767px) {
	.rwz-search-inner {
		flex-direction: column;
	}

	.rwz-type-select,
	.rwz-search-button {
		width: 100%;
	}

	.rwz-suggestion-item {
		padding: 12px !important;
	}

	.rwz-suggestion-icon {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
	}

	.rwz-suggestion-icon svg {
		width: 16px;
		height: 16px;
	}
	
	nav.rwz-pagination {
	gap: 6px;
	margin: 30px 0;
}

nav.rwz-pagination a {
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	font-size: 13px;
}

	nav.rwz-pagination .rwz-pagination-prev,
	nav.rwz-pagination .rwz-pagination-next {
		font-size: 0;
		min-width: 34px;
		padding: 0;
	}
	nav.rwz-pagination .rwz-pagination-prev::before {
		content: "‹";
		font-size: 18px;
		font-weight: 700;
	}
	nav.rwz-pagination .rwz-pagination-next::before {
		content: "›";
		font-size: 18px;
		font-weight: 700;
	}
}

.rwz-search-home {
	padding: 28px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.rwz-search-home .rwz-search-form {
	padding: 0;
	margin: 0;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.rwz-search-title {
	margin: 0 0 18px;
	color: #009FE3;
	font-size: 30px;
	line-height: 1.15;
	font-weight: 700;
}

.rwz-popular-places {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.rwz-popular-places__label {
	color: #666;
	font-size: 14px;
	font-weight: 600;
}

.rwz-popular-places__links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.rwz-popular-places__links a {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background: #eef8fd;
	border-radius: 999px;
	color: #009FE3;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.rwz-popular-places__links a:hover {
	background: #009FE3;
	color: #fff;
}

.rwz-popular-count {
	display: inline-block;
	margin-left: 4px;
	font-weight: 500;
	font-size: .92em;
	opacity: .65;
}

@media (max-width: 767px) {
	.rwz-search-home {
		padding: 20px;
	}

	.rwz-search-title {
		font-size: 24px;
	}
}