/*---------- TOAST ----------*/
/* FIXME : pendant le temps que le toast est affiché, tout ce qui est dans la div .toast (qui prend toute la largeur de la page et la hauteur de .toast-content) n'est pas clickable. */
.toast {
	position: fixed;
	top : 40px;
	left:0;
	right: 0;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
	z-index: 9999;
}
.toast-content {
	display: inline;
	background-color: rgb(237, 245, 143);
	padding: 2px 10px;
	border-radius: 3px;

}
.toast-on {
	opacity: 1;
}
