.rapporti-giornalieri-portlet {
	padding: 8px 0 12px;
}

.rapporti-filters-row {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
}

.rapporti-col-year {
	flex: 0 0 25%;
	max-width: 25%;
}

.rapporti-col-province {
	flex: 0 0 25%;
	max-width: 25%;
}

.rapporti-col-month {
	flex: 0 0 25%;
	max-width: 25%;
}

.rapporti-col-actions {
	flex: 0 0 25%;
	max-width: 25%;
}

.rapporti-filters-row .form-group {
	margin-bottom: 0;
}

.rapporti-btn-wrapper .btn {
	margin-top: 2px;
	min-width: 120px;
}

.rapporti-btn-wrapper {
	padding-bottom: 22px;
}

.rapporti-filters-row .form-group:not(.rapporti-btn-wrapper) {
	position: relative;
	padding-bottom: 22px;
}

.rapporti-filters-row .form-group:not(.rapporti-btn-wrapper) .help-block,
.rapporti-filters-row .form-group:not(.rapporti-btn-wrapper) .form-feedback-item {
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0;
	line-height: 1.2;
}

.rapporti-links-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	grid-template-rows: repeat(var(--rapporti-grid-rows, 1), minmax(0, auto));
	grid-auto-flow: column;
	gap: 14px 26px;
	margin-top: 26px;
}

.rapporti-link-item a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0b5fcc;
	text-decoration: underline;
	font-size: 1rem;
	line-height: 1.5;
}

.rapporti-link-item a:hover,
.rapporti-link-item a:focus {
	color: #084b9f;
}

.rapporti-debug {
	white-space: pre-wrap;
	margin: 0;
}

@media (max-width: 992px) {
	.rapporti-links-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
		grid-auto-flow: row;
	}
}

@media (max-width: 640px) {
	.rapporti-links-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		grid-auto-flow: row;
	}

	.rapporti-link-item a {
		font-size: 1rem;
	}
}