/* Style de base du popup */
.popup {
  display: none; /* Caché par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  pointer-events: auto; /* S'assure que le fond n'est pas cliquable */
}
/* Contenu du popup */
.popup-content {
  pointer-events: auto; /* Permet les interactions avec le contenu */
  animation: fadeIn 0.3s;
  position: relative;
  width: 80%;
  max-width: 500px;
}
/* Ensemble des boutons */
.btn {
  height: 36px;
  padding: 0 1.475rem 2px 1.475rem;
  font-size: 1rem;
  line-height: 2;
  border-radius: 0.375rem;
}
.btn-grp {
  margin-right: 50px;
}
.btn-grp button {
  margin-left: 1.0rem;
}
/* Text des popup */
.popup-text {
  font-size: 1rem;
}
/* Bouton de fermeture */
.close-btn {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 24px;
  padding-top: 5px;
  cursor: pointer;
}
.close-btn:hover {
  color: #ff0000;
}
/* Pied de page du popup */
.popup-footer {
  margin-top: 20px;
  text-align: right;
}
.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
	border-bottom: 1px solid #e6e6f2;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}
.wait {
	width:380px;
	padding:10px 0;
}
.wait-loader {
	float:left;
	padding:3px 15px;
}
.wait-infos {
	float:left;
	padding:7px 0 5px 0;
	font:16px Arial, Helvetica, sans-serif;
	color:#5B6A6B;
}