.ipti-filtrar {
	border: 1px solid #d5dde5;
	border-radius: 12px;
	padding: 20px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(24, 50, 74, 0.08);
}

.ipti-filtrar__header {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 16px;
}

.ipti-filtrar__title {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.2;
}

.ipti-filtrar__controls {
	display: flex;
	width: min(360px, 100%);
}

.ipti-filtrar__search-wrap {
	position: relative;
	width: 100%;
}

.ipti-filtrar__search-wrap::before {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 13px;
	height: 13px;
	border: 2px solid #6b7a88;
	border-radius: 50%;
	content: "";
	pointer-events: none;
	transform: translateY(-58%);
}

.ipti-filtrar__search-wrap::after {
	position: absolute;
	top: 50%;
	right: 12px;
	width: 8px;
	height: 2px;
	border-radius: 999px;
	background: #6b7a88;
	content: "";
	pointer-events: none;
	transform: translateY(5px) rotate(45deg);
	transform-origin: left center;
}

.ipti-filtrar__search {
	width: 100%;
	min-height: 48px;
	padding: 11px 44px 11px 16px;
	border: 1px solid #b8c4cf;
	border-radius: 8px;
	background: #fff;
	box-shadow: inset 0 1px 2px rgba(24, 50, 74, 0.05);
	color: #18324a;
	font: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ipti-filtrar__search::placeholder {
	color: #6b7a88;
	opacity: 1;
}

.ipti-filtrar__search:focus {
	border-color: #3c7aa3;
	box-shadow: 0 0 0 3px rgba(60, 122, 163, 0.16);
	outline: none;
}

.ipti-filtrar__status {
	margin-bottom: 12px;
	color: #51606f;
	font-size: 0.95rem;
}

.ipti-filtrar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.ipti-filtrar__item {
	margin: 0;
}

.ipti-filtrar__item--level-3 {
	padding-left: 16px;
}

.ipti-filtrar__item--level-4 {
	padding-left: 32px;
}

.ipti-filtrar__link {
	display: block;
	padding: 12px 14px;
	border-radius: 8px;
	background: #f2f6f9;
	color: #18324a;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.ipti-filtrar__link:hover,
.ipti-filtrar__link:focus {
	background: #dce9f3;
	transform: translateY(-1px);
}

@media (max-width: 640px) {
	.ipti-filtrar__controls,
	.ipti-filtrar__search {
		width: 100%;
	}
}
