/*==================================================
  RESUMEN DE RESULTADOS
==================================================*/

.rm-search-summary{

	display:grid;

	grid-template-columns:1fr auto;

	align-items:center;

	column-gap:20px;

	min-height:64px;

	margin:0 0 40px;

	padding:14px 22px;

	background:#ffffff;

	border:1px solid #eef2f7;

	border-radius:16px;

	box-shadow:0 8px 24px rgba(0,0,0,.05);

}

.rm-search-summary__text{

	display:flex;

	align-items:center;

	margin:0;

	padding:0;

	line-height:1;

	font-size:1rem;

	font-weight:600;

	color:#1f2756;

}

.rm-search-summary__button{

	display:inline-flex;

	align-items:center;

	justify-content:center;

	gap:6px;

	margin:0;

	padding:0;

	line-height:1;

	font-size:.95rem;

	font-weight:700;

	color:#514b9a;

	text-decoration:none;

	white-space:nowrap;

}

.rm-search-summary__button:hover{

	color:#312e81;

}

.rm-search-summary__arrow{

	display:inline-flex;

	align-items:center;

	font-size:1rem;

	line-height:1;

}

@media (max-width:768px){

	.rm-search-summary{

		grid-template-columns:1fr;

		row-gap:10px;

		padding:18px 20px;

	}

	.rm-search-summary__button{

		justify-self:start;

	}

}