
/***************************************************************/
/* 20240827 intervention du point 5/
   BOUTON DE TELECHARGEMENT DU PANIER AU FORMAT PDF            */
/***************************************************************/

h4.oz-panierpdf-bouton button{
	width: 100%;
	border: 1px solid #2a2a2a;
	font-size: 15px;
	font-weight: 600;
	padding: 0;
	letter-spacing: 1px;
	border-radius: 40px;
	height: 50px;
	line-height: 50px;
	background-color: #EEE !important;
	color: #222222 !important;
	transition: all 300ms;
  	-webkit-transition: all 300ms;
  	-moz-transition: all 300ms;
  	-o-transition: all 300ms;
}
h4.oz-panierpdf-bouton button:hover,
h4.oz-panierpdf-bouton button:focus{
	background-color: #FFF !important;
	color: #222222 !important;
	border: 1px solid #2a2a2a !important;
}

/***************************************************************/
/* 20241127 intervention du point 2/
   AJOUT D'UN ENTETE DYNAMIQUE SUR DEVIS PDF VIA BOITE MODALE  */
/***************************************************************/

#oz-panierpdf-header-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#oz-panierpdf-header-modal button{
	border: 1px solid #2a2a2a;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 40px;
	margin-right:20px;
	margin-top:20px;
	letter-spacing: 1px;
	border-radius: 40px;
	height: 50px;
	line-height: 50px;
}

/* Overlay noir légèrement transparent */
#oz-panierpdf-modal-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Noir avec transparence */
  z-index: 999; /* En dessous de la boîte modale */
}

/* Bouton de fermeture (croix) */
#oz-panierpdf-header-modal .close-button {
  position: absolute;
  top: 0px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  padding: 0px;
  margin-right:0px;
  margin-top:0px;
  border-radius: 0px;
}

#oz-panierpdf-header-modal .close-button:hover {
  color: #f00; /* Change la couleur au survol */
}