.footerNavigation {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 50px auto 30px auto;
	align-items: center;

	.reportGenerated {
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	a {
		display: flex;
		flex-direction: row;
		text-decoration: none;
		color: var(--primary-color);
		align-items: center;

		&:hover {
			color: var(--primary-color);
		}

		&.printResult {
			justify-content: end;
		}

		.printIcon {
			background-color: var(--primary-color);
			border-radius: 50%;
			padding: 8px;
			line-height: 1;
			margin-left: 10px;
		}
	}
}
