/*==================================================
  BUSCADOR INTELIGENTE
==================================================*/

.rm-smart-search{

	margin:40px 0;

}

.rm-smart-search,
.rm-smart-search *{

	box-sizing:border-box;

}

.rm-smart-search__grid{

	display:grid;

	grid-template-columns:
		170px
		210px
		290px
		auto
		auto;

	gap:16px;

	align-items:center;

}

.rm-smart-search__field{

	width:100%;

}

.rm-smart-search__dynamic{

	display:flex;

	align-items:center;

	justify-content:flex-start;

	gap:12px;

	flex-wrap:nowrap;

}

.rm-smart-search__dynamic .rm-smart-search__field{

	flex:0 0 210px;

	width:210px;

	max-width:210px;

}

.rm-smart-search__dynamic input[type="number"]{

	text-align:left;

}

.rm-smart-search__dynamic select{

	padding-right:20px;

}

.rm-smart-search__control{

	display:flex;

	align-items:center;

	gap:10px;

	height:52px;

	padding:0 16px;

	border:1px solid #d6d9e3;

	border-radius:12px;

	background:#ffffff;
	
	transition:border-color .25s, box-shadow .25s;

}

.rm-smart-search__control:focus-within{

	border-color:#514b9a;

	box-shadow:0 0 0 3px rgba(81,75,154,.15);

}

.rm-smart-search__control i{

	color:#514b9a;

	font-size:1rem;

	flex:0 0 18px;

}

.rm-smart-search__control select,
.rm-smart-search__control input{

	display:block;

	flex:1;

	min-width:0;

	width:auto;

	height:100%;

	border:none;

	outline:none;

	background:transparent;

	font-size:.95rem;

	color:#374151;

}

.rm-smart-search__control select{

	cursor:pointer;

	appearance:none;

	-webkit-appearance:none;

	-moz-appearance:none;

}

.rm-smart-search__control input[type="number"]{

	appearance:textfield;

	-moz-appearance:textfield;

}

.rm-smart-search__control input[type="number"]::-webkit-outer-spin-button,
.rm-smart-search__control input[type="number"]::-webkit-inner-spin-button{

	-webkit-appearance:none;

	margin:0;

}

.rm-smart-search__actions{

	display:flex;

	align-items:center;

	gap:10px;

}

.rm-smart-search__button{

	width:52px;

	min-width:52px;

	height:52px;

	padding:0;

	display:flex;

	align-items:center;

	justify-content:center;

	border:none;

	border-radius:12px;

	background:#514b9a;

	color:#ffffff;

	font-size:1rem;

	cursor:pointer;

	transition:.25s;

	text-decoration:none;

}

.rm-smart-search__button:hover{

	background:#3f3a86;

}

/*==================================================
  TABLET
==================================================*/

@media (max-width:1024px){

	.rm-smart-search__grid{

		grid-template-columns:repeat(3,1fr);

	}

	.rm-smart-search__dynamic{

		grid-column:1 / -1;

	}

}

/*==================================================
  MOVIL
==================================================*/

@media (max-width:768px){

	.rm-smart-search__grid{

		grid-template-columns:1fr;

	}

	.rm-smart-search__dynamic{

		flex-direction:column;

		align-items:stretch;

	}

	.rm-smart-search__dynamic .rm-smart-search__field{

		flex:1 1 auto;

		width:100%;

		max-width:100%;

	}

}

/*==================================================
  BOTON LIMPIAR
==================================================*/

.rm-smart-search__button--secondary{

	background:#ffffff;

	color:#514b9a;

	border:1px solid #514b9a;

}

.rm-smart-search__button--secondary:hover{

	background:#514b9a;

	color:#ffffff;

}

/*==================================================
  BUSCADOR PROGRESIVO
==================================================*/

#rm_departamento_wrapper,
#rm_dynamic_filters,
#rm_actions_wrapper{

	display:none;

}

#rm_departamento_wrapper.is-visible{

	display:block;

}

#rm_dynamic_filters.is-visible{

	display:flex;

}

#rm_actions_wrapper.is-visible{

	display:flex;

}