section.property-search {
	/* height: 150px; */
	position: relative;
	z-index: 3;
	background: #19202f;
	padding-bottom: 18px;
}
section.property-search .inner {
	color: white;
	text-align: center;
}
section.property-search .form {
	background: white;
	color: black;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	padding: 10px 20px 10px;
	border-radius: 8px;
	position: relative;
}
section.property-search .form .inputs {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr auto;
	grid-gap: 10px;
	z-index: 3;
	position: relative;
}
section.property-search .form .inputs > .error {
	color: var(--color-error);
}
section.property-search .form input,
section.property-search .form select {
	width: 100%;
}
section.property-search .form .error input,
section.property-search .form .error select {
	border-color: var(--color-error);
}
section.property-search .form label {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: block;
	font-size: 12px;
	font-weight: 500;
	line-height: 27px;
	cursor: pointer;
}
section.property-search .form label span {
	opacity: 0.25;
}
section.property-search .form label img {
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -1px;
	margin-right: 6px;
}
section.property-search .bullets {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	z-index: 2;
	text-align: center;
	margin: auto;
	width: 500px;
}
section.property-search .bullets li {
	width: 16px;
	height: 16px;
	background: white;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 2px;
	opacity: 0.5;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
section.property-search .bullets li:hover {
	opacity: 1;
}
section.property-search .bullets li.active {
	opacity: 1;
	background: var(--color);
}
section.property-search button {
	line-height: 36px;
	padding: 0 20px;
}
section.property-search button img {
	height: 15px;
	-webkit-filter: invert(1);
	filter: invert(1);
}
section.property-search button:hover {
	transform: unset;
	-webkit-box-shadow: unset;
	-moz-box-shadow: unset;
	box-shadow: unset;
}
section.property-search .advanced {
	top: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	padding: 8px 0 0;
	/* opacity: 0; */
	z-index: -1;
	/* border: 1px solid white; */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
section.property-search.advanced .advanced {
	top: 87px;
	/* opacity: 1; */
}
section.property-search .advanced .items {
}
section.property-search .advanced .item {
	cursor: pointer;
	border: 1px solid #fbfbfb;
	line-height: 22px;
	padding: 0 8px;
	display: inline-block;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 400;
	background: white;
	vertical-align: middle;
	-webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
	margin-bottom: 5px;
}
section.property-search .advanced .item img {
	height: 12px;
	width: 13px;
	object-fit: contain;
	position: relative;
	top: 1px;
	margin-right: 5px;
	opacity: 0.5;
}
section.property-search .advanced .item:hover {
	background-color: #fefef6;
}
section.property-search .advanced .item.active {
	background-color: var(--color);
	color: white;
	border-color: var(--color);
}
section.property-search .advanced .item input {
	display: none;
}
/* [l] */
@media all and (max-width: 1200px) {
	section.property-search .form .inputs {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 90px auto;
	}
}
/* [m] */
@media all and (max-width: 992px) {
	section.property-search .form .inputs {
		grid-template-columns: 1fr 1fr 90px 90px 1fr 68px auto;
	}
}
/* [s] */
@media all and (max-width: 768px) {
	section.property-search .form .inputs {
		grid-template-columns: 1fr 1fr;
		grid-gap: 5px;
	}
	section.property-search .form .inputs > div:nth-last-of-type(1) {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	section.property-search .form .inputs > div:nth-last-of-type(1) label {
		display: none;
	}
	section.property-search button {
		width: 100%;
	}
}
