/* General Styles - FRENCH */

/* QUIZ */

/* Replace "Correct/Incorrect" labels with French versions. These pieces of text for some reason are not customizable. */
.quiz-answer-container.selected.correct > span,
.quiz-answer-container.selected.incorrect > span {
	visibility: hidden;
}

.quiz-answer-container.selected.correct > span:before {
	visibility: visible;
	content: 'Bonne réponse';
}

.quiz-answer-container.selected.incorrect > span:before {
 visibility: visible;
 content: 'Mauvaise réponse';
}


/* ************* */
/* Footer Styles */
/* ************* */
@media (max-width:767px) {
	footer .footer-column ul {
		width: 100%;
	}

	.footer .footer__copyright {
		margin-bottom: 20px;
	}
}

@media(min-width: 768px) {
	footer {
		padding: 20px 0;
	}

	footer .footer-column.copyright,
	.footer__list .footer__copyright {
		flex-basis: 100%;
		text-align: center;
	}

	.footer__list .footer__copyright {
		padding-bottom: 30px;
	}

	footer .footer-column.links ul,
	.footer__list {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		margin: 0 -10px;		
		width: 100%;
	}

	footer .footer-column.links ul {
		padding-top: 15px;
	}

	footer .footer-column.links ul li,
	.footer__list li {
		padding: 10px;
	}
}

/* French Styles Updated by Alex D - May 28 2020 */