.home-relatorios-favoritos {
	overflow: hidden;
}

.home-relatorios-favoritos__acoes {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.home-relatorios-favoritos__contador {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(156, 39, 176, .12);
	color: var(--primary-medium);
	font-size: 12px;
	font-weight: 800;
}

.home-relatorios-favoritos__lista {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 10px;
}

.home-relatorio-favorito {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 58px;
	padding: 10px 12px;
	border: 1px solid rgba(76, 78, 100, .12);
	border-radius: 10px;
	background: #fff;
	text-align: left;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.home-relatorio-favorito:hover,
.home-relatorio-favorito:focus {
	border-color: rgba(156, 39, 176, .42);
	box-shadow: 0 10px 22px rgba(76, 78, 100, .12);
	outline: none;
	transform: translateY(-1px);
}

.home-relatorio-favorito__icone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin-right: 10px;
	border-radius: 10px;
	background: rgba(156, 39, 176, .1);
	color: var(--primary-medium);
}

.home-relatorio-favorito__texto {
	min-width: 0;
	flex: 1 1 auto;
}

.home-relatorio-favorito__texto strong {
	display: block;
	overflow: hidden;
	color: #2f2350;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-relatorio-favorito__texto small {
	display: block;
	margin-top: 4px;
	overflow: hidden;
	color: rgba(76, 78, 100, .64);
	font-size: 11px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-relatorio-favorito__abrir {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 10px;
	color: var(--primary-medium);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.home-relatorio-favorito.is-disabled {
	cursor: not-allowed;
	opacity: .56;
	transform: none;
}

.home-relatorios-favoritos__vazio {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	padding: 20px;
	border: 1px dashed rgba(156, 39, 176, .25);
	border-radius: 12px;
	background: rgba(156, 39, 176, .035);
	text-align: center;
}

.home-relatorios-favoritos__vazio span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 8px;
	border-radius: 12px;
	background: rgba(156, 39, 176, .1);
	color: var(--primary-medium);
}

.home-relatorios-favoritos__vazio strong {
	color: #2f2350;
	font-size: 13px;
}

.home-relatorios-favoritos__vazio p {
	margin: 4px 0 0;
	color: rgba(76, 78, 100, .64);
	font-size: 12px;
}

@media (max-width: 767px) {
	.home-relatorios-favoritos__acoes {
		width: 100%;
		justify-content: space-between;
	}
}
