/* custom.css */
/* (c) Alain Rollmann */

.modal-title, .bootstrap-dialog-title {
	font-size: 1em;
}
/* Vérifier si ceci est vraiment utile : */
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Bootstrap 5 tweak: do not underline links unless hovered over */
/* Cf. https://stackoverflow.com/questions/65480036/bootstrap-5-underline-default-changed */
a:not([class*="btn"]) {
    text-decoration: none;
	color: inherit;
}
a:not([class*="btn"]):hover {
    text-decoration: underline;
	color: inherit;
}

.form-label {
	font-weight: bold;
	/* Voir aussi font-weight: $form-label-font-weight; dans _labels.scss */
}

@keyframes clignotement {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.texte-clignotant {
  animation: clignotement 8s infinite;
}