.happy-reports {
	.description {
		margin-bottom: 16px;
	}
}

.happy-reports-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 12px 16px;
	background: #fff;
	border: 1px solid #c3c4c7;
	border-left: 4px solid #2271b1;
	padding: 14px 16px;
	margin: 0 0 20px;

	label {
		display: flex;
		flex-direction: column;
		gap: 4px;
		font-weight: 600;

		span {
			font-size: 12px;
			color: #50575e;
		}
	}

	input[type="date"],
	select {
		min-width: 150px;
		min-height: 30px;
	}
}

.happy-reports-status {
	margin-left: 4px;
	color: #646970;
	line-height: 30px;

	&.is-error {
		color: #d63638;
	}
}

.happy-reports-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(140px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.happy-reports-card {
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 2px;
	padding: 14px 16px;
}

.happy-reports-card-label {
	display: block;
	font-size: 12px;
	color: #646970;
	margin-bottom: 6px;
}

.happy-reports-card-value {
	font-size: 22px;
	line-height: 1.2;
	color: #1d2327;
}

.happy-reports-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.happy-reports-panel {
	background: #fff;
	border: 1px solid #c3c4c7;
	padding: 14px 16px 18px;

	&--wide {
		grid-column: 1 / -1;
	}

	h2 {
		margin: 0 0 12px;
		font-size: 15px;
	}
}

.happy-reports-chart-wrap {
	position: relative;
	width: 100%;
	min-height: 280px;

	&--square {
		min-height: 320px;
	}
}

@media (max-width: 782px) {
	.happy-reports-summary,
	.happy-reports-grid {
		grid-template-columns: 1fr;
	}
}
