.pdl-lookup-wrap {
	max-width: 760px;
	margin: 0 auto 24px;
}

.pdl-lookup-inner {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.pdl-autocomplete-wrap {
	position: relative;
	flex: 1;
}

.pdl-address {
	width: 100%;
	min-height: 50px;
	padding: 0 14px;
	font-size: 16px;
	border: 1px solid #ccd0d4;
	border-radius: 6px;
}

.pdl-submit {
	min-height: 50px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: #D5172A !important;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.pdl-submit:hover {
	background: #b81222 !important;
}

.pdl-suggestions {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	z-index: 50;
	overflow: hidden;
}

.pdl-suggestion-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 12px 14px;
	border: 0;
	background-color: #fff !important;
	text-align: left;
	cursor: pointer;
	border-radius: 0px !important;
}

.pdl-suggestion-item:hover {
	background: #fff7f8 !important;
	outline: 1px solid #D5172A;
	border-radius: 0px !important;
}

.pdl-suggestion-main {
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
}

.pdl-suggestion-secondary {
	font-size: 13px;
	color: #646970;
	margin-top: 2px;
}

.pdl-result {
	margin-top: 14px;
	padding: 14px 16px;
	border-radius: 6px;
	display: none;
	font-size: 16px;
}

.pdl-result.is-success,
.pdl-result.is-error {
	display: block;
}

.pdl-result.is-success {
	background: #edf7ed;
	color: #1f5130;
	border: 1px solid #b7dfb9;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.pdl-result.is-error {
	background: #fcf0f1;
	color: #8a2424;
	border: 1px solid #efc2c8;
}

.pdl-result-map {
	height: 320px;
	margin-top: 16px;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	overflow: hidden;
}

@media (max-width: 700px) {
	.pdl-lookup-inner {
		flex-direction: column;
	}
}