.nou-buscador-propiedades {
	box-sizing: border-box;
	width: 100%;
	background: #fff;
	padding: 18px 32px 22px;
}

.nou-buscador-propiedades__grid {
	display: grid;
	grid-template-columns: 140px 190px 197px 120px 120px 120px 212px;
	gap: 13px;
	align-items: end;
}

.nou-buscador-propiedades *,
.nou-buscador-propiedades *::before,
.nou-buscador-propiedades *::after {
	box-sizing: border-box;
}

.nou-buscador-propiedades__field label {
	display: block;
	margin: 0 0 7px;
	color: #1e3855;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.nou-buscador-propiedades__field select,
.nou-buscador-propiedades__field input[type="text"],
.nou-buscador-propiedades__field input[type="number"] {
	width: 100%;
	height: 38px;
	padding: 0 13px;
	border: 1px solid #6d7f96;
	background-color: #fff;
	color: #65758a;
	font-size: 13px;
	font-weight: 500;
	border-radius: 0;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

.nou-buscador-propiedades__field select {
	background-image:
		linear-gradient(45deg, transparent 50%, #1e3855 50%),
		linear-gradient(135deg, #1e3855 50%, transparent 50%);
	background-position:
		calc(100% - 21px) 50%,
		calc(100% - 15px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 36px;
}

.nou-buscador-propiedades__field select option {
	color: #1e3855;
	background: #fff;
}

.nou-buscador-propiedades__field select:focus,
.nou-buscador-propiedades__field input[type="text"]:focus,
.nou-buscador-propiedades__field input[type="number"]:focus {
	outline: none;
	border-color: #1e3855;
}

.nou-buscador-propiedades__field input::placeholder {
	color: #65758a;
	opacity: 1;
}

.nou-buscador-propiedades__actions {
	display: flex;
	align-items: end;
	justify-content: flex-end;
}

.nou-buscador-propiedades__actions button {
	position: relative;
	width: 162px;
	height: 38px;
	padding: 0 24px 0 50px;
	border: 0;
	background: #dd9c20;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	cursor: pointer;
	box-shadow: none;
	border-radius: 0;
	line-height: 38px;
	text-align: left;
}

.nou-buscador-propiedades__actions button:hover,
.nou-buscador-propiedades__actions button:focus {
	opacity: .95;
}

.nou-buscador-propiedades__actions button::before {
	position: absolute;
	top: 50%;
	left: 36px;
	width: 12px;
	height: 12px;
	border: 2px solid #fff;
	border-radius: 50%;
	content: "";
	transform: translateY(-58%);
}

.nou-buscador-propiedades__actions button::after {
	position: absolute;
	top: 23px;
	left: 47px;
	width: 8px;
	height: 2px;
	background: #fff;
	content: "";
	transform: rotate(45deg);
	transform-origin: left center;
}

@media (max-width: 1200px) {
	.nou-buscador-propiedades__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.nou-buscador-propiedades__actions button {
		width: 100%;
	}

}

@media (max-width: 767px) {
	.nou-buscador-propiedades {
		padding: 18px 16px 20px;
	}

	.nou-buscador-propiedades__grid {
		grid-template-columns: 1fr;
	}

	.nou-buscador-propiedades__actions button {
		width: 100%;
	}
}
